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
# Initialize variables | |
alphabet = 1 | |
word = 1 | |
direction = 'down' | |
ignore = false | |
chars = [] | |
# 0..20 is just a soft limit so the machine doesn't crash. Switch the hashtag | |
# in front of the following two lines for endless mode: |
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
# Initialize variables | |
alphabet = 1 | |
word = 1 | |
direction = 'down' | |
ignore = false | |
chars = [] | |
all_words = [] | |
# 0..20 is just a soft limit so the machine doesn't crash. Switch the hashtag | |
# in front of the following two lines for endless mode: |
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
<?php | |
// Feed URL und Name der Überschrift hier eingeben: | |
$feed_url = 'http://www.lrr.in.tum.de/public/VorlesungERAWS13'; | |
$headline = 'Aktuelles'; | |
// Feed-interne Einstellungen | |
$config = array( | |
'name' => 'Vorlesung ERA WS 13/14', | |
'desc' => 'RSS-Feed zur Vorlesung', | |
'url' => 'http://www.lrr.in.tum.de/public/VorlesungERAWS13', |
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
<?php | |
// Feed URL und Name der Überschrift hier eingeben: | |
$feed_url = 'http://www7.in.tum.de/um/courses/ds/ws1314/'; | |
$config = array( | |
'name' => 'Vorlesung DS WS 13/14', | |
'desc' => 'RSS-Feed zur Vorlesung', | |
'url' => $feed_url, | |
); |
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
// Register our actions here | |
actions_setup = function( $el, query_children ) { | |
// Initialize our apply_to_selector function | |
var apply = apply_to_selector( $el, query_children ); | |
// The action to insert the links | |
apply( '.links-insert', function( $node ) { | |
// Add the event, don't forget to use jQuery.offon | |
// to avoid duplicate events! | |
$node.offon( 'click.links-insert', function() { |
OlderNewer