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
************************************ A *************************** | |
****************************************************************** | |
About a Mile | |
Action Action | |
Action Bronson & Dan Auerbach | |
Adam Clayton and Larry Mullen | |
Adam Ant | |
Adam & The Ants | |
Adam and Andrew | |
Afrojack and Eva Simons |
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 global general_log = 1; | |
SET global log_output = 'table'; | |
select * from mysql.general_log order by event_time desc; |
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
this.el.click(function (e) { | |
var elem, evt = e ? e:event; | |
if (evt.srcElement){elem = evt.srcElement;} | |
else if (evt.target){elem = evt.target;} | |
if (elem.tagName.toUpperCase() == 'A'){ | |
return; | |
} | |
var url = $(this).find("a" + (linkSelector||':first')).attr('href'); |
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
ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' |
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
import static groovy.io.FileType.* | |
import static groovy.io.FileVisitResult.* | |
def currentFolder = new File(".") | |
def handleBuildFile = {File it -> | |
def folderName = it.parentFile.getName() | |
if (folderName != '.'){ | |
it.renameTo(new File(it.getParentFile(), "${folderName}.gradle")) | |
} |
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
*.zargo~ | |
*.db | |
*.iml | |
*.iws | |
*.ipr | |
.classpath | |
build/ | |
target/ | |
out/ | |
.idea/ |
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
[alias] | |
current-branch =rev-parse --abbrev-ref HEAD | |
[alias] | |
rebase-onto-master = !CURRENT=$(git rev-parse --abbrev-ref HEAD) && git checkout master && git pull && git checkout $CURRENT && git rebase -i master | |
[alias] | |
merge-into-master = !CURRENT=$(git rev-parse --abbrev-ref HEAD) && git checkout master && git merge $CURRENT |
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
ntpdate -s -b -p 8 -u pool.ntp.org |
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
git config http.postBuffer 524288000 |
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
-Xbootclasspath/a:E:\repository\org\apache\rampart\rampart\1.4\rampart-1.4.mar |