19:21, 12 March 2011 Capellini Pomodoro (hist) [690 bytes] Reassembler(Talk | contribs)(Created page with ' * 3 cloves garlic, minced * 2 cans (14.5 ounces each) italian tomatoes, or about 2 pounds fresh peeled and diced tomatoes * 1/4 teaspoon freshly ground black pepper…')
21:01, 16 November 2010 Tcpdump (hist) [290 bytes] Reassembler(Talk | contribs)(Created page with '<source lang="bash"> /usr/sbin/tcpdump -s 0 -w /home/wrangler/elo host somehostnamorIP </source> Learned this all over again today, so thought I'd log it. The "-s 0" is what al…')
14:53, 21 October 2010 Javascript Closures (hist) [655 bytes] Reassembler(Talk | contribs)(Created page with 'Today I learned that all of those anonymous functions that I have been creating in JavaScript code have closures. I can't claim to have mastered any part of this new information,…')
13:56, 15 October 2010 BeanShell (hist) [356 bytes] Reassembler(Talk | contribs)(Created page with 'Getting BeanShell to show the results of the last statement. You can put this in your .bshrc or enter it into the bsh console. <pre> show(); </pre> Example of before and after…')
14:42, 13 October 2010 Apache rewrite rule (hist) [240 bytes] Reassembler(Talk | contribs)(Created page with 'I learned how to rewrite a url to a tomcat webapp The following RewriteRule sends any requests to apachae that start with /jespa, to the tomcat app jespa. <pre> RewriteRule ^/j…')
21:41, 7 October 2010 EL Function Tags (hist) [2,401 bytes] Reassembler(Talk | contribs)(Created page with 'Defining a Tag function in a web app == The TLD File == <source lang="xml"> <!-- WEB-INF/tld/escape.tld --> <?xml version="1.0" encoding="UTF-8" ?> <taglib xmlns="http://java.su…')
17:34, 1 October 2010 IE does not allow trailing commas in array definitions (hist) [3,133 bytes] Reassembler(Talk | contribs)(Created page with 'I had this exact problem and found the answer http://www.dynamicdrive.com/forums/showthread.php?t=48035 <pre> Old 08-30-2009, 06:32 PM undone undone is offline Junior Coders …')
20:59, 30 September 2010 Java class file versions (hist) [303 bytes] Reassembler(Talk | contribs)(Created page with 'http://en.wikipedia.org/wiki/Class_%28file_format%29#Magic_Number major version number of the class file format being used. J2SE 6.0 = 50 (0x32 hex), J2SE 5.0 = 49 (0x31 hex), J…')
20:26, 28 September 2010 Oracle Regex (hist) [257 bytes] Reassembler(Talk | contribs)(Created page with 'Oracle Regular expressions <pre>select regexp_replace('CN=Masher 'o Swindon Project Team,OU=Recipients,OU=Exchange,OU=Enterprise,DC=reassembler,DC=org', 'CN=(.+?),(.*)', '\1') f…')
14:50, 28 September 2010 Modest Proposal (hist) [531 bytes] Reassembler(Talk | contribs)(Created page with '== Use a scratch pad == post its, paper, whatever I take pictures of the notes and upload them to my smugmug account and then throw away the paper. Or if i'm done with it, I just…')
14:39, 23 September 2010 My Default Eclipse Plugins (hist) [297 bytes] Reassembler(Talk | contribs)(Created page with '* vrapper, A vim plugin for Eclipse - http://vrapper.sourceforge.net/update-site/stable * m2eclipse, A Maven plugin for Eclipse - http://m2eclipse.sonatype.org/sites/m2e * Subcli…')
16:29, 22 September 2010 Loading Preferences in an Android Application (hist) [813 bytes] Reassembler(Talk | contribs)(Created page with '<source lang="java5"> public void loadPreferences() { t("loading preferences"); SharedPreferences settings = main.getSharedPreferences(TAG, Context.MODE_PRIV…')
15:26, 22 September 2010 Generate JSON with Jackson (hist) [721 bytes] Reassembler(Talk | contribs)(Created page with '== Generate JSON in Java with the Jackson Library == http://wiki.fasterxml.com/JacksonHome <source lang="java"> Map<String, Object> result = new HashMap<String, Object>(); Str…')
15:25, 22 September 2010 How To Handle errors in a spring-mvc app (hist) [610 bytes] Reassembler(Talk | contribs)(Created page with '== Handle errors in a spring-mvc app == In the your servlet's context.xml you need to create a exception resolver bean <source lang="xml"> <bean id="exceptionResolver" class="o…')
15:24, 22 September 2010 Adding new Activities to an Android application (hist) [950 bytes] Reassembler(Talk | contribs)(Created page with '== Adding new Activities in and Android application == The first activity is added for you when you generate your application using the sdk tools. That's why you have no idea how…')
15:23, 22 September 2010 How to Use AsyncTask (hist) [3,473 bytes] Reassembler(Talk | contribs)(Created page with 'I learned you really don't want to call GUI thread code from a non-UI thread. Here's the code. <source lang="java5"> private class Uploader extends AsyncTask<Void, String…')
15:14, 22 September 2010 Using lftp to sync directories (hist) [627 bytes] Reassembler(Talk | contribs)(Created page with 'Wanted to sync folders between a linux and windows machine. FTP was the only available protocol. Found info http://serverfault.com/questions/24622/how-to-use-rsync-over-ftp and …')
04:53, 14 September 2010 Android Spinner (hist) [526 bytes] Reassembler(Talk | contribs)(Created page with '== How to get the right type of drop down for the spinner == <source lang="java5"> Spinner barSpinner = (Spinner) findViewById(R.id.barSpinner); ArrayAdapter<Bar> adapter = n…')
03:16, 12 September 2010 Android Notes (hist) [332 bytes] Reassembler(Talk | contribs)(Created page with '* If you don't configure your app to require INTERNET, then you get unknown hosts each time you try to connect ot something. * e.prinStackTrace() goes into the void somewhere if…')