User contributions for Brianegge
Appearance
3 July 2014
- 15:0115:01, 3 July 2014 diff hist +247 m Sybase Tips No edit summary current
18 March 2014
- 14:1714:17, 18 March 2014 diff hist +132 m Quotes No edit summary current
8 October 2013
- 13:1613:16, 8 October 2013 diff hist +169 m Linux Tips No edit summary current
26 June 2013
- 11:1811:18, 26 June 2013 diff hist −1 m Send to email and stdout No edit summary current
- 11:1811:18, 26 June 2013 diff hist +241 N Send to email and stdout Created page with "From a shell script I often want to send an email and also echo the message to stdout. Here's a simple way of getting this done: <geshi lang="bash"> #!/bin/bash tee >(mail -..."
13 June 2013
- 18:1018:10, 13 June 2013 diff hist +178 N Sum Matching Group in Perl Created page with "Perl script to find a number in matching lines and report the sum. <geshi lang="perl"> perl -ne '$sum += $1 if /in (.*) seconds/; END { print $sum }' </geshi> Category:Perl" current
17 April 2013
- 19:4419:44, 17 April 2013 diff hist +3,065 m My vimrc No edit summary current
5 March 2013
- 00:4600:46, 5 March 2013 diff hist +886 N Semicolon separated list of States Created page with "For use in [http://wordpress.org/extend/plugins/si-contact-form/ Fast Secure Contact Form]: <pre> State,Select State; AK; AL; AR; AZ; CA; CO; CT; DC; DE; FL; GA; HI; IA; ID; I..." current
30 January 2013
- 13:4113:41, 30 January 2013 diff hist +44 m Ternary Operator in C No edit summary current
12 December 2012
- 03:3703:37, 12 December 2012 diff hist +50 Letter combinations No edit summary current
- 03:3503:35, 12 December 2012 diff hist +50 Letter combinations No edit summary
- 03:3303:33, 12 December 2012 diff hist +50 Letter combinations No edit summary
- 03:3203:32, 12 December 2012 diff hist +1,194 N Letter combinations Created page with "It's useful to order the letters on your rack, putting the most common combinations together. The 50 most common letter combinations are: {| class="wikitable" !Percentage !Co..."
- 02:1902:19, 12 December 2012 diff hist +511 m I Dumps No edit summary current
- 02:1802:18, 12 December 2012 diff hist +28,881 N U Dumps Created page with "Here are words you can play when you only have only U vowels: {| class="wikitable" !Word !Enable 1 !TWL06 !SOWPODS |- |MU||Y||Y||Y |- |NU|| ||Y||Y |- |UH||Y||Y||Y |- |UM||Y||..." current
- 02:1502:15, 12 December 2012 diff hist +48,812 N I Dumps Created page with "Here's words you can play when your only vowel is I: {| class="wikitable" !Word !Enable 1 !TWL06 !SOWPODS |- |IWI|| || ||Y |- |BIDI||Y||Y||Y |- |HILI||Y||Y||Y |- |IBIS||Y||Y|..."
- 02:1002:10, 12 December 2012 diff hist +1,833 N Q without U Created page with "Here's words you can play when you only have vowels: {| class="wikitable" !Word !Enable 1 !TWL06 !SOWPODS |- |QI||Y||Y||Y |- |QAT||Y||Y||Y |- |QIS||Y||Y||Y |- |SUQ||Y||Y||Y |..." current
- 02:0802:08, 12 December 2012 diff hist +1 m Words with only Vowels No edit summary current
- 02:0502:05, 12 December 2012 diff hist +118 N Category:Word Dojo Created page with "Pages relating to my iphone app [https://itunes.apple.com/us/app/word-dojo/id580722301?mt=8&ign-mpt=uo%3D4 Word Dojo]]" current
- 02:0502:05, 12 December 2012 diff hist +1 m Main Page No edit summary
- 02:0502:05, 12 December 2012 diff hist +9 m Main Page No edit summary
- 02:0402:04, 12 December 2012 diff hist +118 N Word Dojo Created page with "Pages relating to my iphone app [https://itunes.apple.com/us/app/word-dojo/id580722301?mt=8&ign-mpt=uo%3D4 Word Dojo]]" current
- 02:0202:02, 12 December 2012 diff hist +17 m Main Page No edit summary
11 December 2012
- 03:1003:10, 11 December 2012 diff hist +3 m Words with only Vowels No edit summary
- 03:0803:08, 11 December 2012 diff hist +254 m Words with only Vowels No edit summary
- 03:0603:06, 11 December 2012 diff hist +770 N Words with only Vowels Created page with "Here's words you can play when you only have vowels: {| class="wikitable" !Word !Enable 1 !TWL06 !SOWPODS |- |AA||Y||Y||Y |- |AE||Y||Y||Y |- |AI||Y||Y||Y |- |AY||Y||Y||Y |- |..."
14 November 2012
- 00:4900:49, 14 November 2012 diff hist +7 m Print Multiple Emails to PDF No edit summary current
- 00:4800:48, 14 November 2012 diff hist +3,713 N Print Multiple Emails to PDF Created page with "I needed to print a large number of emails, with each going into their own pdf file. I could not simply select the emails and forward them. They needed to be printed individua..."
- 00:4600:46, 14 November 2012 diff hist +40 m OS X Tips No edit summary current
13 August 2012
- 17:4617:46, 13 August 2012 diff hist +1,341 m SQL2216N No edit summary current
- 00:0100:01, 13 August 2012 diff hist +281 N SQL2216N Created page with "Q: I'm getting this error on DB2 9.7: <pre> Reorg command failed: SQL2216N SQL error "-291" occurred while reorganizing a database table or its indexes. SQLSTATE=01H52 </pre..."
17 July 2012
- 13:5713:57, 17 July 2012 diff hist −8 m Schemagen error No edit summary current
- 13:5613:56, 17 July 2012 diff hist +9,264 N Schemagen error Created page with "I spent about a half a day tracking down the cause of my schemagen task failing. I was getting this error: <verbose> [schemagen] [loading java/util/Map.class(java/util:Map.cl..."
3 July 2012
- 12:1312:13, 3 July 2012 diff hist +1,332 N WEXITSTATUS Example Created page with "Example of how to use WEXITSTATUS <geshi lang="c"> #include <iostream> void run(const char * cmd) { printf("Executing command %s\n", cmd); int status = std::system(..." current
17 May 2012
- 17:2317:23, 17 May 2012 diff hist +67 m Solaris binary files quick reference No edit summary current
20 April 2012
- 12:2412:24, 20 April 2012 diff hist +281 m Quotes No edit summary
12 April 2012
- 15:3715:37, 12 April 2012 diff hist +202 m Quotes No edit summary
4 April 2012
- 12:0912:09, 4 April 2012 diff hist +431 N Korn Shell Created page with "=== Enable tracing a function in ksh === Tracing can be enabled for a KornShell script by using "set -x", but this will have no effect on functions within the script. The fol..." current
21 March 2012
- 01:3801:38, 21 March 2012 diff hist +318 m Linux Tips No edit summary
3 March 2012
- 16:1016:10, 3 March 2012 diff hist +189 m Linux Tips No edit summary
13 February 2012
- 15:4315:43, 13 February 2012 diff hist +12 m Ruby Proxy URL No edit summary current
11 February 2012
- 20:1420:14, 11 February 2012 diff hist +699 N IOS Tips Created page with "==== Tile a background image in a UIViewController ==== <geshi lang="C"> // tile background UIImage *wave = [UIImage imageNamed:@"background-dots.png"]; CGSize imageVie..." current
4 February 2012
- 02:3302:33, 4 February 2012 diff hist +1,123 m Python Tips No edit summary current
14 December 2011
- 13:5513:55, 14 December 2011 diff hist +79 m Quotes No edit summary
10 December 2011
- 23:1223:12, 10 December 2011 diff hist +20 m Ruby Tips No edit summary current
- 23:0923:09, 10 December 2011 diff hist +100 m Sybase Tips No edit summary
- 23:0323:03, 10 December 2011 diff hist +40 m CUSIP Source Code No edit summary current
- 22:5922:59, 10 December 2011 diff hist −4 m What is NLWP on Solaris? No edit summary current
- 22:5922:59, 10 December 2011 diff hist +12 m Solaris binary files quick reference No edit summary
- 22:5822:58, 10 December 2011 diff hist +124 m Solaris binary files quick reference No edit summary