This file contains 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
# tracking protection | |
privacy.trackingprotection.enabled=true | |
# default search engine | |
browser.search.defaultenginename=DuckDuckGo | |
# no delay when installing plugins | |
security.dialog_enable_delay=0 | |
# increase weight of bookmarks in awesomebar |
This file contains 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
package net.riastar.components { | |
import flash.events.Event; | |
import flashx.textLayout.elements.ParagraphElement; | |
import flashx.textLayout.elements.SpanElement; | |
import flashx.textLayout.elements.TextFlow; | |
import flashx.textLayout.operations.DeleteTextOperation; | |
import flashx.textLayout.operations.FlowOperation; | |
import flashx.textLayout.operations.InsertTextOperation; |
This file contains 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
#oneliner | |
ruby -r webrick -e "s = WEBrick::HTTPServer.new(:Port => 80, :DocumentRoot => Dir.pwd); trap('INT') { s.shutdown }; s.start" | |
#alias | |
alias http="ruby -r webrick -e \"s = WEBrick::HTTPServer.new(:Port => 80, :DocumentRoot => Dir.pwd); trap('INT') { s.shutdown }; s.start\"" |
This file contains 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
#with confirmation | |
find . -type f -name "*.tmp" -exec rm -i {} \; | |
#without confirmation | |
find . -type f -name "*.tmp" -exec rm -f {} \; |
This file contains 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
#delete remote branch | |
git push origin :feature-branch |
This file contains 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
#merge 'file' from branch 'develop' into branch 'feature' | |
git checkout feature | |
git checkout develop file |
This file contains 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
#enhanced history search | |
#put in .inputrc | |
"\e[A": history-search-backward | |
"\e[B": history-search-forward | |
set show-all-if-ambiguous on | |
set completion-ignore-case on |
This file contains 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
#turn off systray balloon tips | |
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced | |
EnableBalloonTips:DWORD = 0 |
This file contains 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
find . -type f -exec dos2unix {} {} ';' |
This file contains 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
\version "2.14.1" | |
\header { | |
title = "songtitle" | |
composer = "composer" | |
arranger = "arranger" | |
instrument = "Guitar" | |
} | |
guitar = { |
NewerOlder