New pages
From Null-pointer
Showing below up to 23 results starting with #1.
View (previous 50) (next 50) (20 | 50 | 100 | 250 | 500)
- 11:15, 6 February 2012 JSR330 (hist) [1,551 bytes] Paulkane (Talk | contribs) (New page: ==Inject and Qualifier== If we have more than one bean that implements a particular bean type, the injection point can specify exactly which bean should be injected using a qualifier anno...)
- 10:51, 4 November 2011 Scripting (hist) [180 bytes] Paulkane (Talk | contribs) (New page: ==Reading the contents of a file and looping through them== <source lang="bash"> #!/bin/bash cat $1/my_file.txt | while read file do echo $file done </source>)
- 09:29, 20 July 2011 Log4j (hist) [3,827 bytes] Paulkane (Talk | contribs) (New page: ==Properties file== <source lang="properties"> log4j.rootLogger=TRACE,out log4j.logger.org.apache.camel=TRACE,out,LOG log4j.appender.out=org.apache.log4j.ConsoleAppender log4j.appender.o...)
- 10:10, 23 June 2011 JMX (hist) [365 bytes] Paulkane (Talk | contribs) (New page: <source lang="xml"> <bean id="mybean" class="MyBean"/> <bean id="exporter" class="org.springframework.jmx.export.MBeanExporter"> <property name="beans"> ...)
- 10:02, 15 June 2011 Spring integration (hist) [3,469 bytes] Paulkane (Talk | contribs) (New page: ==inbound jms== <source lang="xml"> <bean id="inboundCachingConnectionFactory" class="org.springframework.jms.connection.CachingConnectionFactory"> <property name="targetConnec...)
- 09:29, 15 June 2011 HttpClient (hist) [1,494 bytes] Paulkane (Talk | contribs) (New page: Setting up the timeout params <source lang="java5"> private ClientExecutor getSSLClientExecutor(String baseUri) { URL url = null; try { url = new URL(baseU...)
- 09:27, 15 June 2011 HttpsSchemeFactory (hist) [2,310 bytes] Paulkane (Talk | contribs) (New page: <source lang="java5" import org.apache.http.conn.scheme.Scheme; import org.apache.http.conn.ssl.SSLSocketFactory; import org.springframework.stereotype.Component; import org.springframewor...)
- 09:23, 15 June 2011 RESTEasy (hist) [1,132 bytes] Paulkane (Talk | contribs) (New page: ==RESTEasy== ===Release a connection=== * Register a client error interceptor <ref>{{cite web|url=http://docs.jboss.org/resteasy/docs/2.2.0.GA/userguide/html/RESTEasy_Client_Framework.ht...)
- 11:39, 2 June 2011 IPad (hist) [848 bytes] Paulkane (Talk | contribs) (New page: Recommended apps: * BBC IPlayer ;) * 4OD * Garage Band * Penultimate (for drawing pics) * Tap the Frog (nice free game but don't play it on the tube!) * Speedball 2 (apparently it's free ...)
- 09:12, 18 May 2011 MAC Commands (hist) [1,591 bytes] Paulkane (Talk | contribs) (New page: ==Print screen== ===How to Print Screen to a file on the desktop in Mac OS X=== The basic functionality of taking a screen capture of a window or desktop in Mac OS X takes an image and du...)
- 16:35, 23 March 2011 Converting string bytes sizes to other ordinals (hist) [2,495 bytes] Paulkane (Talk | contribs) (New page: <source lang="java5"> package gamesys.cognos.camel; import java.text.NumberFormat; import java.text.ParseException; import java.util.EnumSet; public enum ByteSize { BYTE("b"), KI...)
- 14:43, 10 March 2011 Human readable numbers (hist) [711 bytes] Paulkane (Talk | contribs) (New page: human readable numbers <ref>{{cite web|url=http://stackoverflow.com/questions/3758606/how-to-convert-byte-size-into-human-readable-format-in-java|accessdate=10 Mar 2011|date=10 Sept 2010|a...)
- 10:47, 7 March 2011 ActiveMQ (hist) [9,248 bytes] Paulkane (Talk | contribs) (New page: ==Performance Tuning== consumer.dispatchAsync=true <ref>{{cite web|url=http://activemq.apache.org/consumer-dispatch-async.html|accessdate=7 Mar 2011}}</ref> jms.useAsyncSend=true <ref>{...)
- 14:43, 18 February 2011 Inputstream to String (hist) [571 bytes] Paulkane (Talk | contribs) (New page: This is the fastest way for reading an inputstream and converting it to a string I've found <source lang="java5"> private static String getStringFromInputStream(InputStream is) throws Exc...)
- 10:48, 13 January 2011 Virtualbox (hist) [1,287 bytes] Paulkane (Talk | contribs) (New page: ==Networking== By default the virtual machine is connected to a private network internal to VirtualBox and invisible to the host, network services on the guest are not accessible to the ho...)
- 16:50, 5 January 2011 Bash history (hist) [933 bytes] Paulkane (Talk | contribs) (New page: ==history-search-backward== Put this in your .inputrc <ref>http://mike-austin.com/blog/2007/03/history-search-backward.html</ref><ref>http://hints.macworld.com/article.php?story=2002011418...)
- 10:16, 16 December 2010 Db2 (hist) [6,358 bytes] Paulkane (Talk | contribs) (New page: ==Running sql files== db2 -tvf mySql.sql ==REORG== needs to be performed after an '''ALTER''' ==Error codes== db2 ? [error code] db2 ? SQL[int]N ==References== <references/> [[Categ...)
- 11:22, 10 December 2010 Unix prompts (hist) [446 bytes] Paulkane (Talk | contribs) (New page: ==Prompts== simple prompt export PS1="[\u@\h \w]" [sites_es@vagrant-centos-64 ~] ==See Also== * http://www.ibm.com/developerworks/linux/library/l-tip-prompt/ ==References== <referenc...)
- 11:07, 17 November 2010 GIT (hist) [681 bytes] Paulkane (Talk | contribs) (New page: ==clone== {{CL|git clone --progress -v "git@git.jet.bbc.co.uk:ace/ace.git" "D:\_projects\_branch\ace" Initialized empty Git repository in D:/_projects/_branch/ace/.git/ Server supports m...)
- 17:55, 16 November 2010 String padding (hist) [798 bytes] Paulkane (Talk | contribs) (New page: ==Pad numbers== Left padding integer <ref>http://stackoverflow.com/questions/473282/left-padding-integers-with-zeros-in-java</ref> <source lang="java5"> String value = String.format("%05...)
- 14:43, 16 November 2010 BaseObjectClass (hist) [796 bytes] Paulkane (Talk | contribs) (New page: <source lang="java5"> package null-pointer.domain; import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; import org.apache.commons....)
- 19:42, 14 November 2010 Telnet (hist) [608 bytes] Paulkane (Talk | contribs) (New page: ==Windows 7== ===To install Telnet Client=== # Click the '''Start''' button , click '''Control Panel''', click '''Programs''', and then click '''Turn Windows features on or off'''. If you...)
- 19:37, 14 November 2010 Bebox (hist) [249 bytes] Paulkane (Talk | contribs) (New page: For old bebox {{CL|telnet bebox}} ==Fix IE7 authentication issues== {{CL|system config digestauth disabled<ref>http://beusergroup.co.uk/technotes/index.php?title=BEBox_Commands</ref>}}...)

