Skip to content

Instantly share code, notes, and snippets.

View schafeld's full-sized avatar
🏪
Doing Shopware...

Oliver Schafeld schafeld

🏪
Doing Shopware...
View GitHub Profile
@schafeld
schafeld / List all SVN-URLs
Created March 24, 2015 15:04
List all SVN-URLs of folders in current directory
for dirname in `ls -d */`; do svn info ${dirname} | grep "URL:" -m 1; done;
@schafeld
schafeld / quizscript
Created October 12, 2013 14:13
A simple script describing a quiz. Meant to be loaded by remote quiz software.
var quiz = [
{
ques: "Silver", //question
ans: "Ag", // answer
ansInfo : "<br/>More info <a href='http://www.periodictable.com/Elements/079/index.html'>here</a>" // answer information.
},
{
ques: "Gold.",
ans: "Au",
ansInfo : "Gold-Au <br/>More info <a href='http://www.periodictable.com/Elements/079/index.html'>here</a>"