This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ mysqldump --opt --where="1 limit 1000" -u root -p yourdatabase > dump.sql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Create a diagram for a mysql db | |
| MySQL Workbench | |
| Menu Database > Reverse Engineer... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use databse; | |
| SELECT | |
| n.id as noticia_id, | |
| n.titulo as post_title, | |
| n.categoria_noticia_id as categoria_noticia_id, | |
| c.nome as tag_name | |
| FROM noticia as n | |
| LEFT JOIN categoria_noticia as c ON c.id = n.categoria_noticia_id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| top -b | |
| ps -aux | |
| # partition | |
| gpart show | |
| # ten largest directories / files | |
| du -a /var | sort -n -r | head -n 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ERROR 1840 (HY000): @@GLOBAL.GTID_PURGED can only be set when @@GLOBAL.GTID_EXECUTED is empty. | |
| delete command from import dump | |
| SET @@GLOBAL.GTID_PURGED='d23dceda-08a4-11e5-85e4-005056a2431f:1-10073'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Swap file | |
| dd if=/dev/zero of=/usr/swap0 bs=1m count=4096 | |
| chmod 0600 /usr/swap0 | |
| echo "md99 none swap sw,file=/usr/swap0,late 0 0" >> /etc/fstab | |
| swapon -aL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Create superuser | |
| $ createuser -P -s -e username | |
| psswd: | |
| $ psql -U username | |
| List databases | |
| postgres=# \l | |
| \q: Quit/Exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Neo4j install OS X | |
| $ brew install neo4j | |
| To have launchd start neo4j now and restart at login: | |
| brew services start neo4j | |
| Or, if you don't want/need a background service you can just run: | |
| neo4j start | |
| DB Folder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "bold_folder_labels": false, | |
| // color scheme | |
| // "color_scheme": "Treble Light.sublime-color-scheme", | |
| "dark_color_scheme": "Bass Green.sublime-color-scheme", | |
| "light_color_scheme": "Treble Light.sublime-color-scheme", | |
| "enable_tab_scrolling": true, | |
| "font_size": 11, | |
| "highlight_line": true, | |
| "highlight_modified_tabs": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:mapleader=' ' | |
| syntax on | |
| set clipboard=unnamed | |
| set cursorline | |
| set encoding=utf-8 | |
| set guifont= "Menlo:12" | |
| set history=1000 "Store :cmdline history | |
| set laststatus=2 | |
| set mouse=a | |
| set number " line numbering |