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
public String htmlRemoveTagAttributes(String input, String attribute) { | |
return input.replaceAll(" ((?!("+attribute+")).)*=\"[^\"]*\"*", ""); | |
} |
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
var myautotask = setInterval(function(){$("#wordBlock-10").trigger("click");},30000); |
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
#!/bin/sh | |
# | |
# Auto-merge script for git repo | |
# You must use auth 'ssh' and a cron task :-) | |
# Conf: | |
REPO_PATH=/home/user/yourgitrepo | |
TAG_PATTERN=prod* | |
# Conf End | |
cd $REPO_PATH | |
git fetch --tags |
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
jQuery(".mg_grade_5.mg_survey_box").each(function(s){$(this).trigger("click")}) |
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
http://www.vogella.com/articles/EGit/article.html |
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 remote set-url origin [email protected]:user/repo.git | |
https://help.github.com/articles/why-is-git-always-asking-for-my-password |
NewerOlder