This file contains 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/perl | |
use strict; | |
use warnings; | |
use Chart::Pie; | |
use IO::File; | |
my $pie = Chart::Pie->new(640, 480); | |
my $score; |
This file contains 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/perl | |
use strict; | |
use warnings; | |
use XML::LibXML; | |
if (@ARGV != 2) { | |
print "$0 <xml file> <schema file>\n"; | |
exit 1; |
This file contains 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
Set<MyInterface> set = new HashSet<MyInterface>(); | |
MyInterface list[] = {}; | |
MyInterface[] array = set.toArray(list); |
This file contains 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
Beim Beenden der Anwendung bekomme ich nun immer solche setsamen Fehlermeldungen. Ist hier vielleicht das DESTROY (falsch / nicht) überschieben? | |
(in cleanup) ...Kraft::SFKlasseBasis::...::Kraft::SFKlasse0911::DESTROY nicht definiert! :'( at ./script/web_server.pl line 0 | |
(in cleanup) ...Kraft::SFKlasseBasis::...::Kraft::SFKlasse::DESTROY nicht definiert! :'( at ./script/web_server.pl line 0 | |
(in cleanup) ...Kraft::SFKlasseBasis::...::Kraft::SFKlasseBasis::DESTROY nicht definiert! :'( at ./script/web_server.pl line 0 |
This file contains 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
-- Zum durchgeführten Dojo | |
Gute Slideshare Präsentation zu Coding Dojo http://www.slideshare.net/vietnt84/coding-dojo-8752038 | |
Youtube Video zum Ablauf des coding Dojo "How do you put on a coding dojo event? ": http://www.youtube.com/watch?v=gav9fLVkZQc | |
Kata: FizzBuzz: http://codingdojo.org/cgi-bin/wiki.pl?KataFizzBuzz | |
This file contains 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 i in *.sqlite ; do echo $i ; echo ".dump" | sqlite3 $i > $i.sql && rm $i && sqlite3 $i < $i.sql ; done |
This file contains 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
Only wimps use tape backup: real men just upload their important stuff on ftp, and let the rest of the world mirror it ;) - Torvalds, Linus |
This file contains 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 getmultiple; | |
import java.io.IOException; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.client.HttpClient; | |
import org.apache.http.client.methods.HttpGet; | |
import org.apache.http.client.params.ClientPNames; | |
import org.apache.http.conn.scheme.PlainSocketFactory; | |
import org.apache.http.conn.scheme.Scheme; |
This file contains 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
$ cat tests/TestSequenceFunctions.py | |
import random | |
import unittest | |
class TestSequenceFunctions(unittest.TestCase): | |
def setUp(self): | |
self.seq = range(10) | |
def test_shuffle(self): |
This file contains 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
Martin Fowler hat es sehr weise Formuliert wie ich finde: | |
Feature Flags: | |
http://martinfowler.com/bliki/FeatureToggle.html | |
http://code.flickr.net/2009/12/02/flipping-out/ | |
Feature Branch: | |
http://martinfowler.com/bliki/FeatureBranch.html |
OlderNewer