User contributions for Brianegge
30 November 2009
- 03:1703:17, 30 November 2009 diff hist +650 m DaCapo No edit summary current
- 02:4402:44, 30 November 2009 diff hist +172 m Visibroker No edit summary current
29 November 2009
- 21:5721:57, 29 November 2009 diff hist +2,431 Nm Ternary Operator in C Created page with 'In writing C, I've often liked the ternary operator. It allows expressions to be computed in line, and shortens the amount of code one has to write. I've also believed that any…'
26 November 2009
- 07:1207:12, 26 November 2009 diff hist +26 m Solaris binary files quick reference No edit summary
- 04:5404:54, 26 November 2009 diff hist 0 N File:Eclipse-error.png No edit summary current
- 04:5004:50, 26 November 2009 diff hist +26 Nm Eclipse Error Correction Created page with 'File:eclipse-error.png' current
25 November 2009
- 01:3601:36, 25 November 2009 diff hist +97 m Rxvt →Install current
- 01:3201:32, 25 November 2009 diff hist 0 N File:Rxvt-native.png No edit summary current
- 01:3201:32, 25 November 2009 diff hist 0 N File:Rxvt-install.png No edit summary current
- 01:3101:31, 25 November 2009 diff hist +217 m Rxvt No edit summary
23 November 2009
- 07:2307:23, 23 November 2009 diff hist +1,269 Nm MQException 2195 Created page with ' <geshi> Caused by: com.ibm.mq.MQException: MQJE001: An MQException occurred: Completion Code 2, Reason 2195 MQJE018: Protocol error - unexpected segment type received at…' current
18 November 2009
17 November 2009
- 23:5723:57, 17 November 2009 diff hist +341 Nm Reformat XML Created page with 'Using the [http://xmlstar.sourceforge.net/ XMLStarlet] command line tool, one can easily reformat xml. A shortcut for this is to reformat the xml on your clipboard. This little…' current
- 06:0706:07, 17 November 2009 diff hist +216 Nm Ruby Proxy URL Created page with 'If you need to install gems behind a proxy which accepts basic authentication, you can use this syntax. <geshi> gem install term-ansicolor --http-proxy http://username:password@…'
12 November 2009
- 02:2302:23, 12 November 2009 diff hist +309 m DaCapo No edit summary
- 01:4801:48, 12 November 2009 diff hist +409 m DaCapo No edit summary
5 November 2009
- 02:5702:57, 5 November 2009 diff hist +602 Nm Java.lang.String.isEmpty Created page with 'I was getting the following error when I deployed a component into a JBoss container. <geshi> java.lang.NoSuchMethodError: java.lang.String.isEmpty()Z </geshi> Initially, I th…' current
4 November 2009
- 07:0807:08, 4 November 2009 diff hist +809 Nm What exceptions can ejbCreate throw? Created page with 'One of the wonders of ejb2 is the methods you implement are not defined in an interface. I recently wanted to know exceptions can be thrown from an ejbCreate method. The answer…' current
- 03:0803:08, 4 November 2009 diff hist +2,770 Nm Daemonizing Unix processes Created page with 'Have you ever attempted to log out from a Unix host, only to have your terminal session hang? This is often the result of an improperly started background process. Many of our …' current
2 November 2009
- 03:2803:28, 2 November 2009 diff hist +3,538 Nm InstanceOf Performance Created page with 'The following is a microbenchmark to test the performance of the Java instanceOf operation. The four dispatch methods tested are: # InstanceOf operator # Comparing class object…' current
27 October 2009
- 22:0722:07, 27 October 2009 diff hist +869 Nm TLS Handshake Example Created page with 'Following are the bytes transfered during a [http://en.wikipedia.org/wiki/Transport_Layer_Security#TLS_handshake_in_detail TLS Handshake] when requesting the resource https://www…' current
21 October 2009
- 00:4700:47, 21 October 2009 diff hist +838 Nm Java Hostname Lookup Created page with 'The following snippet shows how to get the hostname and IP address. <geshi lang="java"> public static void main(String[] args) throws UnknownHostException { java.net.InetAddr…'
20 October 2009
- 07:2207:22, 20 October 2009 diff hist +1,137 Nm Stddev Created page with 'This handy script calcs the standard deviation of a list of numbers from the standard input. Example: <geshi lang="bash"> ping google.com | ruby -ne 'if $_ =~ /time(\d+)ms/ the…' current
- 05:3605:36, 20 October 2009 diff hist −21 m Cygwin Tips No edit summary
- 05:3405:34, 20 October 2009 diff hist 0 File:Windows-threads.PNG uploaded a new version of "File:Windows-threads.PNG" current
- 05:3305:33, 20 October 2009 diff hist 0 N File:Windows-threads.PNG No edit summary
- 05:3305:33, 20 October 2009 diff hist +1,959 Nm What is NLWP on Solaris? Created page with 'If one does a prstat on Solaris (top), one will see the column NLWP. <geshi> PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/NLWP 19185 fruity 1348M…'
17 October 2009
- 05:2405:24, 17 October 2009 diff hist +1,432 Nm URL Converters Created page with 'This weekend I created two new websites: [http://011010.com http://011010.com/banner.png] and [http://iliil.com http://iliil.com/banner.png] The first lets you turn an ordina…' current
10 October 2009
- 11:5411:54, 10 October 2009 diff hist −24 m Log4j file rotation No edit summary
- 11:5411:54, 10 October 2009 diff hist −24 m Main Page No edit summary
9 October 2009
- 03:4703:47, 9 October 2009 diff hist −2 m Category:Bash No edit summary current
- 03:4603:46, 9 October 2009 diff hist +177 Nm Category:Cygwin Created page with 'Cygwin is a unix-like environment for Windows. Many programs written for Unix can be compiled for the Cygwin environment. Cygwin can be downloaded from http://www.cygwin.com/.' current
- 03:3803:38, 9 October 2009 diff hist +1,235 Nm Getclip and putclip Created page with ''''getclip''' and '''putclip''' are two tools used by power Cygwin users. For years I went about not knowing about these two very useful commands. Quite simply, they either cop…'
- 03:1803:18, 9 October 2009 diff hist +459 Nm Sorting by multiple columns in Ruby Created page with 'In Ruby, it's quite easy to sort an array by a single column. For example: <geshi lang="ruby> people.sort_by { |p| p.lastname } </geshi> However, it's not clear how to easily …' current
- 03:0803:08, 9 October 2009 diff hist +453 m EqualityTestCase No edit summary
- 02:4102:41, 9 October 2009 diff hist −2,531 Java Tips No edit summary current
- 02:4002:40, 9 October 2009 diff hist +650 Nm ReplaceAll with Backreferences Created page with 'Regex functions can give you fast replacements in Java, along with the readability of Perl. Here's an example of using a replaceAll to mask out certain digits in a credit card n…' current
- 02:3802:38, 9 October 2009 diff hist +614 Nm Replacement for StringBufferInputStream Created page with '[http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4217782 Bug ID: 4217782] States that StringBufferInputStream is depreciated and should be replaced with StringReader, but Stri…' current
- 02:3702:37, 9 October 2009 diff hist +732 Nm Xml-rpc and Weblogic 9.2 Created page with 'xml-rpc with Basic Authentication works fine in Resin, but not Weblogic. This turned out to be a new feature in 9.2 which forces authentication checks when you specifically don'…' current
- 02:3502:35, 9 October 2009 diff hist +559 Nm Cannot run this command because Java services are not enabled Created page with 'When connecting to Sybase via jconn3 and Spring 2.0, you receive the error: <geshi> Cannot run this command because Java services are not enabled </geshi> This can be caused by…' current
- 02:3302:33, 9 October 2009 diff hist −2 m Top 10 ways to increase traffic to your wiki No edit summary current
- 02:3202:32, 9 October 2009 diff hist −14 m Top 10 ways to increase traffic to your wiki No edit summary
- 02:2602:26, 9 October 2009 diff hist +647 m Top 10 ways to increase traffic to your wiki No edit summary
- 02:1402:14, 9 October 2009 diff hist +24 m Javax.net.debug No edit summary
- 02:1402:14, 9 October 2009 diff hist −27 m Main Page No edit summary
- 02:1002:10, 9 October 2009 diff hist −14 m Main Page No edit summary
21 September 2009
- 05:5505:55, 21 September 2009 diff hist +192 m DaCapo No edit summary
- 00:0500:05, 21 September 2009 diff hist +703 m Rxvt No edit summary
17 September 2009
- 01:0501:05, 17 September 2009 diff hist +163 m Java Proper Case No edit summary
15 September 2009
- 04:0404:04, 15 September 2009 diff hist +584 m Encrypt a file No edit summary current