Open the same 26 tabs in all browsers with different urls
Browser | Version | Processes | Threads | Memory Usage | Memory Compressed by OSX |
---|
function arrayDiff(a1, a2) { | |
var diff = {}; | |
for (var i = 0; i < a1.length; i++) { | |
diff[a1[i]] = true; | |
} | |
for (var i = 0; i < a2.length; i++) { | |
if (diff[a2[i]]) { | |
delete diff[a2[i]]; |
------------------------------------------------------------------------------ | |
2.3. NERD tree Mappings *NERDTreeMappings* | |
Default Description~ help-tag~ | |
Key~ | |
o.......Open files, directories and bookmarks....................|NERDTree-o| | |
go......Open selected file, but leave cursor in the NERDTree.....|NERDTree-go| | |
t.......Open selected node/bookmark in a new tab.................|NERDTree-t| | |
T.......Same as 't' but keep the focus on the current tab........|NERDTree-T| |
Vimtutor:
Tips & Tricks
:source $MYVIMRC Reload .vimrc without restart vim, after reload run :e
:e Reload buffer and trigger FileType event
Modes:
-- Get Max ID from table | |
SELECT MAX(id) FROM table; | |
-- Get Next ID from table | |
SELECT nextval('table_id_seq'); | |
-- Set Next ID Value to MAX ID | |
SELECT setval('table_id_seq', (SELECT MAX(id) FROM table)); |
gw = `ip route show`[/default.*/][/\d+\.\d+\.\d+\.\d+/] |
# Dump all postgres database without specific scheme (-N topology) | |
pg_dump -N topology -U $DATABASE_USERNAME -h $DATABASE_HOST -f /path/to/output.sql $DATABASE_NAME |
Configuring your application for release
Log
calls and remove the android:debuggable
attribute from your manifest file.android:versionCode
and android:versionName
attributes, which are located in the <manifest>
element.