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
[thunfisch@localhorst ~]$ nc irc.freenode.net 6667 | |
:gibson.freenode.net NOTICE * :*** Looking up your hostname... | |
:gibson.freenode.net NOTICE * :*** Checking Ident | |
:gibson.freenode.net NOTICE * :*** Found your hostname | |
:gibson.freenode.net NOTICE * :*** No Ident response | |
NICK foobarbaz | |
USER x y z :r | |
:gibson.freenode.net 001 foobarbaz :Welcome to the freenode Internet Relay Chat Network foobarbaz | |
:gibson.freenode.net 002 foobarbaz :Your host is gibson.freenode.net[213.179.58.83/6667], running version ircd-seven-1.0.0 | |
:gibson.freenode.net 003 foobarbaz :This server was created Sat Jan 30 2010 at 01:13:47 CET |
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
Index: src/fe-common/core/hilight-text.c | |
=================================================================== | |
--- src/fe-common/core/hilight-text.c (revision 5186) | |
+++ src/fe-common/core/hilight-text.c (working copy) | |
@@ -78,6 +78,7 @@ | |
if (rec->nickmask) iconfig_node_set_bool(node, "mask", TRUE); | |
if (rec->fullword) iconfig_node_set_bool(node, "fullword", TRUE); | |
if (rec->regexp) iconfig_node_set_bool(node, "regexp", TRUE); | |
+ if (rec->except) iconfig_node_set_bool(node, "except", TRUE); | |
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 | |
interval=5 | |
intervalLong=300 | |
function getSensors { | |
sensors | awk 'BEGIN {FS=":? +"} /^Core|^fan[12]|^temp/ {printf "%9s %9s\n", $1, $2}' | |
} | |
function getDiskfree { |
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
http://www.benjoffe.com/code/games/torus/ | |
##### HIGHSCORES ##### | |
### Traditional | |
niemand [12930] | |
tuxlover [10349] | |
PyroPeter [10224] | |
PyroPeter [9450] |
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 | |
thumbpath="thumbs/" | |
size="300" # ufraw needs width and heigth to equal | |
fileext="jpg" | |
convertopts="-strip" | |
ufrawopts="--create-id=no --out-type=jpeg --compression=95 --size=$size" | |
ufrawopts="$ufrawopts --rotate=camera --wb=camera --grayscale=none --noexif" |
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
NoMethodError in Posts#new | |
Showing app/views/posts/new.html.erb where line #3 raised: | |
undefined method `^' for "4":String | |
Extracted source (around line #3): | |
1: <h1>New post</h1> | |
2: |
NewerOlder