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
| fastboot flash product product.img | |
| fastboot flash abl abl.img | |
| fastboot flash aop aop.img | |
| fastboot flash bluetooth bluetooth.img | |
| fastboot flash boot boot.img | |
| fastboot flash cmnlib cmnlib.img | |
| fastboot flash cmnlib64 cmnlib64.img | |
| fastboot flash devcfg devcfg.img | |
| fastboot flash dsp dsp.img | |
| fastboot flash dtbo dtbo.img |
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
| # Remove all the packages with residual configuration. | |
| # http://stuzhao.blogspot.com/2012/07/removing-all-residual-config-packages.html | |
| sudo apt-get remove --purge `dpkg -l | grep '^rc' | awk '{print $2}'` |
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
| # You can pass these to `render` | |
| formats: [ | |
| :atom, | |
| :bmp, | |
| :css, | |
| :csv, | |
| :doc, | |
| :doc, | |
| :docx, | |
| :docx, |
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 git branch -D to remove branches even if they are not fully merged | |
| git fetch -p ; git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d |
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
| def file_exists?(path) | |
| capture(:ls, path) | |
| true | |
| rescue SSHKit::Command::Failed | |
| false | |
| end | |
| def state_page | |
| stage = fetch(:stage) | |
| parts = stage.to_s.split('_') |
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
| def foo(a, *b, **c) | |
| [a, b, c] | |
| end | |
| > foo 10 | |
| => [10, [], {}] | |
| > foo 10, 20, 30 | |
| => [10, [20, 30], {}] | |
| > foo 10, 20, 30, d: 40, e: 50 | |
| => [10, [20, 30], {:d=>40, :e=>50}] |
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
| set username [lindex $argv 0]; | |
| set password [lindex $argv 1]; | |
| send_user "$username $password" |
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
| # Example file is `.env` | |
| # Remove the file from the disk | |
| # Add the file path to .gitignore | |
| echo ".env" >> .gitignore | |
| # Permanently remove it from the git history | |
| git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch .env" HEAD | |
| # Force push | |
| git push --force |
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
| ### TUNE for indexing vs. searching | |
| # Increase index buffer size | |
| indices.memory.index_buffer_size: 20% | |
| # Index refresh interval | |
| # Don't refresh/write so often | |
| curl -XPUT 'http://il-prod-es01:9200/_all/_settings?preserve_existing=true' \ | |
| -H 'Content-Type: application/json; charset=utf-8' \ | |
| -d '{ |
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
| # Prevent minimize on loss of focus | |
| export $SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS=0 | |
| # Prevent random crashes, edit game preferences | |
| taskset --cpu-list 0-7 %command% |