Skip to content

Instantly share code, notes, and snippets.

View AlexMasterov's full-sized avatar
☘️

Alex Masterov AlexMasterov

☘️
View GitHub Profile
@AlexMasterov
AlexMasterov / v8gen.py.txt
Last active December 1, 2021 13:52
gn args {V8}/out.gn/x64.release/ --list (V8 v7.1.163)
action_pool_depth
Current value (from the default) = -1
From //build/toolchain/BUILD.gn:10
Pool for non goma tasks.
android_full_debug
Current value (from the default) = false
From //build/config/compiler/BUILD.gn:48
@AlexMasterov
AlexMasterov / Dockerfile
Last active January 12, 2017 14:24
How to install PHP-JS on Alpine
# Template example
# [1] V8 libs (snapshot=on)
# https://github.com/AlexMasterov/dockerfiles/blob/master/alpine-v8-lib/Dockerfile
# -> https://www.dropbox.com/s/1hn1ak0iebuv9m4/alpine-v8-lib_5.5-lkgr.tar.gz
# [2] PHP
# https://github.com/AlexMasterov/dockerfiles/blob/master/alpine-php/Dockerfile
# php-js
@AlexMasterov
AlexMasterov / hiddenBuffersLimit.vim
Last active May 2, 2016 13:42
Vim: clean up hidden buffers
" Clean up hidden buffers
command! -bar -bang -nargs=? CleanBuffers call CleanBuffers("<bang>")
function! CleanBuffers(...) abort
let force = a:0 >= 1 && a:1 ==# '!'
redir => bufs
silent! buffers
redir END
let hidden = []