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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>GeoJSON</title> | |
<link rel="stylesheet" href="https://openlayers.org/en/v4.6.5/css/ol.css" type="text/css"> | |
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x --> | |
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script> | |
<script src="https://openlayers.org/en/v4.6.5/build/ol.js"></script> | |
</head> | |
<body> |
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
From 7b0532958a8d862cc5139a11bba58001f2c5945a Mon Sep 17 00:00:00 2001 | |
From: Georg Ehrke <[email protected]> | |
Date: Sat, 13 Feb 2016 00:07:30 +0100 | |
Subject: [PATCH] add repeating events to editor | |
--- | |
css/eventdialog.css | 43 +- | |
js/.jshintrc | 1 + | |
js/app/controllers/calcontroller.js | 33 +- | |
.../controllers/eventspopovereditorcontroller.js | 2 + |
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
for x in `lynx http://cdn.media.ccc.de/congress/2015/h264-hd/ --dump | grep "http" | grep "32c3" | cut -c 7-`; do | |
wget -nc "$x.torrent"; | |
done |
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
From bb82c0ca889f0f75544d1cb1089f1c1af3ee15fc Mon Sep 17 00:00:00 2001 | |
From: Georg Ehrke <[email protected]> | |
Date: Mon, 23 Mar 2015 01:05:33 +0100 | |
Subject: [PATCH] delete cached preview when rolling back file's version | |
add random number using OC.parseQueryString and _.extend() | |
version rollback: add missing prefix to OC\Preview::post_delete | |
add test to assure that the rollback hook is called |
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
for x in `lynx http://cdn.media.ccc.de/events/camp2015/h264-hd/ --dump | grep "http" | grep "cccamp15" | cut -c 7-`; do | |
wget -nc $x; | |
done |
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
BEGIN:VCALENDAR | |
PRODID:QIS-LSF HIS GmbH | |
VERSION:2.0 | |
BEGIN:VTIMEZONE | |
TZID:Europe/Berlin | |
X-LIC-LOCATION:Europe/Berlin | |
BEGIN:DAYLIGHT | |
TZOFFSETFROM:+0100 | |
TZOFFSETTO:+0200 | |
TZNAME:CEST |
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
for x in `lynx http://cdn.media.ccc.de/congress/31C3/h264-hd/ --dump | grep "http" | grep "31c3" | cut -c 7-`; do | |
wget -nc $x; | |
done |
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/zsh | |
num=$(sqlite3 timezones.sqlite "select COUNT(*) from tz_data where component is not null"); | |
for i in {1..$num} | |
do | |
NAME=$(sqlite3 timezones.sqlite "select tzid from tz_data where component is not null limit 1 offset $(($i-1))"); | |
DATA=$(sqlite3 timezones.sqlite "select component from tz_data where component is not null limit 1 offset $(($i-1))"); | |
NAME=$(echo $NAME | tr / - | tr '[:lower:]' '[:upper:]'); | |
NAME="timezones/$NAME.ics"; | |
touch $NAME; |
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 | |
EFFECTS=('1' '2' '4' '8' '16' '32' '64' '128'); | |
while true; do | |
RED=$[ ( $RANDOM % 256 )]; | |
GREEN=$[ ( $RANDOM % 256 )]; | |
BLUE=$[ ( $RANDOM % 256 )]; | |
EFFECT=${EFFECTS[$RANDOM % ${#EFFECTS[@]} ]}; |
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
parameter=""; | |
for x in `lynx http://cdn.media.ccc.de/congress/2013/mp4/ --dump | grep "http" | grep "30c3" | cut -c 7-`; do | |
parameter="$parameter -O $x.torrent"; | |
done | |
curl $parameter; |
NewerOlder