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
/// pgnString returns an NSString representing the entire game as PGN. | |
- (NSString *)pgnString { | |
NSMutableString *string = [NSMutableString stringWithCapacity: 2000]; | |
[string appendFormat: @"[Event \"%@\"]\n", event]; | |
[string appendFormat: @"[Site \"%@\"]\n", site]; | |
[string appendFormat: @"[Date \"%@\"]\n", date]; | |
[string appendFormat: @"[Round \"%@\"]\n", round]; | |
[string appendFormat: @"[White \"%@\"]\n", whitePlayer]; | |
[string appendFormat: @"[Black \"%@\"]\n", blackPlayer]; |
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 PGP SIGNED MESSAGE----- | |
Hash: SHA512 | |
In the header of the mailing list you have this line: | |
List | |
Unsubscribe:<mailto:[email protected]?subject=unsubscribe%20cacert> | |
Then just click on the link or create a new message from your email | |
address to [email protected] with in the subject:unsubscribe cacert |
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
amadeus-137-226-248-182.nn.RWTH-Aachen.DE (137.226.248.182) at 00:23:8B:4C:64:DD [ether] on BRIDGE00 | |
amadeus-137-226-248-169.nn.RWTH-Aachen.DE (137.226.248.169) at 00:26:22:34:44:0A [ether] on BRIDGE00 | |
248-095.amadeus.RWTH-Aachen.DE (137.226.248.95) at 00:50:8D:B2:99:25 [ether] on BRIDGE00 | |
amadeus-137-226-248-69.nn.RWTH-Aachen.DE (137.226.248.69) at 54:42:49:08:55:F1 [ether] on BRIDGE00 | |
amadeus-137-226-248-177.nn.RWTH-Aachen.DE (137.226.248.177) at 00:16:41:58:BE:48 [ether] on BRIDGE00 | |
amadeus-137-226-248-149.nn.RWTH-Aachen.DE (137.226.248.149) at 00:1B:FC:E0:38:9E [ether] on BRIDGE00 | |
amadeus-137-226-248-158.nn.RWTH-Aachen.DE (137.226.248.158) at 00:1B:38:EE:F8:68 [ether] on BRIDGE00 | |
amadeus-137-226-248-234.nn.RWTH-Aachen.DE (137.226.248.234) at 00:23:8B:C1:82:9B [ether] on BRIDGE00 | |
amadeus-137-226-248-114.nn.RWTH-Aachen.DE (137.226.248.114) at 00:14:6C:A5:B3:F6 [ether] on BRIDGE00 | |
amadeus-137-226-248-127.nn.RWTH-Aachen.DE (137.226.248.127) at 00:1F:16:04:B2:42 [ether] on BRIDGE00 |
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
javascript:(function(){var k,x,t,w,h;for(k=0; x=document.images[k]; k++){if (x.src.indexOf("cht=tx") != -1){w = x.width;h = x.height;x.src = x.src.replace("cht=tx", "chs=" + w*3 + "x" + h*3 + "&cht=tx");x.width = w;x.height = h;}} })(); |
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
#Source from http://snippets.dzone.com/posts/show/4713 | |
require 'rss/1.0' | |
require 'rss/2.0' | |
require 'open-uri' | |
require 'open-uri' | |
class Rssreader | |
def initialize(url) | |
source = url # url or local file |
NewerOlder