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
define apt-update-single($repofile=$title,$source){ | |
file{"/etc/apt/sources.list.d/${repofile}.list": | |
ensure=>'present', | |
content=>$source, | |
} | |
exec{"apt-get-update-$repofile": | |
command=>"/usr/bin/apt-get update -o Dir::Etc::sourcelist=\"sources.list.d/${repofile}.list\" -o Dir::Etc::sourceparts=\"-\" -o APT::Get::List-Cleanup=\"0\"", | |
require=>File["/etc/apt/sources.list.d/${repofile}.list"], | |
unless=>"/bin/ls /var/lib/apt/lists/|grep $repofile 2>/dev/null" |
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
package{'curl': | |
ensure => 'present' | |
} | |
define remote-package($packagename=$title,$url,$creates){ | |
exec{"download-$packagename": | |
command=>"/usr/bin/curl -o /tmp/$packagename.deb $url", | |
creates=>$creates, | |
require=>Package['curl'] | |
} |
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
brew install p7zip | |
7z x file.7z |
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 com.petebevin.markdown.MarkdownProcessor | |
import org.xhtmlrenderer.pdf.ITextRenderer | |
import org.ccil.cowan.tagsoup.Parser | |
import org.apache.xalan.xsltc.trax.SAX2DOM | |
import org.xml.sax.InputSource | |
buildscript{ | |
repositories { | |
mavenCentral() | |
mavenRepo urls: "http://scala-tools.org/repo-releases" |
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
#Created a github repository called trashhalo.github.com | |
mkdir trashhalo.github.com | |
cd trashhalo.github.com | |
git init | |
git remote add octopress git://github.com/imathis/octopress.git | |
git symbolic-ref HEAD refs/heads/source | |
#Pulling all of octopress into source branch | |
git pull octopress | |
git merge octopress/master | |
git remote add origin [email protected]:trashhalo/trashhalo.github.com.git |
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 --add svn-remote.BRANCHNAME.url https://svn/path_to_newbranch/ | |
git config --add svn-remote.BRANCHNAME.fetch :refs/remotes/BRANCHNAME | |
git svn fetch BRANCHNAME |
NewerOlder