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
| # Default Server List for podget | |
| # FORMAT: <url> <category> <name> | |
| # NOTES: | |
| # 1. The Category must be one word without spaces. You may use underscores. | |
| # 2. Any spaces in the urls needs to be converted to %20 | |
| # 3. Disable the downloading of any feed by commenting it out with a #. | |
| # 4. If you are creating ASX playlists, make sure the feed name does not | |
| # have any spaces in it. | |
| # Find more servers at: http://www.ipodder.org/directory/4/podcasts | |
| http://chaosradio.ccc.de/chaosradio_express-latest.rss tech CRE |
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
| #!/usr/bin/ruby | |
| # -*- encoding: utf-8 -*- | |
| def pascal(depth) | |
| ret = [] | |
| prev = nil | |
| (0..depth-1).each{|zeile| | |
| current = [1] | |
| if !prev.nil?then |
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
| @function str-replace($source, $substring, $replacement) { | |
| $start: str-index($source, $substring); | |
| @if $start { | |
| @return | |
| str-slice($source, 1, $start - 1) | |
| + $replacement | |
| + str-slice( | |
| $source, | |
| $start + str-length($substring) | |
| ); |
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
| +++ | |
| title="Hallo Hugo" | |
| author="Dr. Azrael Tod" | |
| draft=true | |
| issoid="blog/1636" | |
| date = "2016-02-22T11:00:00" | |
| aliases = "blog/1636" | |
| tags = ["Quählkot", "Softwareschrott", "Technik", "g33ky.de", "Open-Source"] | |
| +++ | |
| Früher™ hatte ich mal ein tag "G33KY.de wird eingestellt/stirbt"... |
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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import sys,re,codecs | |
| from bs4 import BeautifulSoup | |
| from datetime import datetime | |
| fn = sys.argv[1] | |
| print('converting file: '+fn) |
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
| <dict> | |
| <key>SchemeUserState</key> | |
| <dict> | |
| - <key>UnitTests.xcscheme</key> | |
| + <key>UnitTests.xcscheme_^#shared#^_</key> | |
| <dict> | |
| <key>orderHint</key> | |
| <integer>0</integer> | |
| </dict> |
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
| // This file controls server side variables which control the operation of the server. | |
| // To change a setting, remove the "// " in front of it and change the value. | |
| // | |
| // serverpass "nope" // server password required to successfully connect | |
| adminpass "nope" // server password for administrators (/setmaster password) | |
| if (= $rehashing 0) [ | |
| ircfilter 1 // defines the way the colour-to-irc filter works; 0 = off, 1 = convert, 2 = strip | |
| ircaddrelay name chat.freenode.net 6667 g33ky-re | |
| ircaddchan name "#g33ky" | |
| ircrelaychan name "#g33ky" 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 (BArray a: a_array) { | |
| C find_me = null; | |
| b_loop: | |
| for (CArray b : a) { | |
| for (C c: b) { | |
| if (c.is_searched_result) { | |
| find_me = c; | |
| continue b_loop; |
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
| !!(""&&0) | |
| > false | |
| !!(""+0) | |
| > true | |
| !!(""-0) | |
| > false | |
| !!(""||0) | |
| > false | |
| !!(0+0) | |
| > false |
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/bash | |
| touchpad_id=`xinput list | grep -i "Synaptics TouchPad" | cut -f2 | grep -oE "[0-9]+"`; | |
| xinput set-prop $touchpad_id "Device Enabled" 0 |