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
" remove ctrl+M at linebreaks | |
:1,$s/^M//g | |
" type :1,$s/ CTRL-Q CTRL-M //g for entering the ^M character | |
" backslash to forward slash | |
:%s/\\/\//g |
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
<cfset service = createObject("webservice", serviceUrl) /> | |
<cfset service._setProperty("javax.xml.rpc.service.endpoint.address", endpoint) /> | |
<cfinvoke webservice="#service#" method="remoteMethodName" someArgument="hello" returnvariable="result" /> | |
or | |
<cfscript> | |
service = createObject("webservice", serviceUrl); | |
service._setProperty("javax.xml.rpc.service.endpoint.address", endpoint); | |
result = service.remoteMethodName(someArgument="hello"); |
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
#fix Flash debugging timeout | |
#default: 45 | |
dom.ipc.plugins.timeoutSecs = -1 | |
#disable "Firefox Updated" page | |
#default: current version number | |
browser.startup.homepage_override.mstone = ignore | |
#ctrl+tab cycles through previews instead of actual tabs | |
browser.ctrlTab.previews = true |
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
#copy folder to another repo | |
svnadmin dump /svn/old_repo > repo.dump | |
svndumpfilter include path/to/folder --drop-empty-revs --renumber-revs --preserve-revprops < repo.dump > filtered.dump | |
svnadmin load /svn/new_repo < filtered.dump |
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
%breaks | |
\break \pageBreak | |
%decorations (on a note) | |
\fermata \segno \coda | |
%as text | |
\mark \markup { \musicglyph #"scripts.segno" } | |
%bars | |
\bar "|." |
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 = { |
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
#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
#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
#merge 'file' from branch 'develop' into branch 'feature' | |
git checkout feature | |
git checkout develop file |
OlderNewer