
willcode4beer.com
willCode4Beer.comPragmatic tips and tricks for Java and J2EE Developers
http://www.willcode4beer.com/
Pragmatic tips and tricks for Java and J2EE Developers
http://www.willcode4beer.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.4 seconds
16x16
PAUL DAVIS
POB●●●387
SE●●LE , WA, 98121
US
View this contact
PAUL DAVIS
POB●●●387
SE●●LE , WA, 98121
US
View this contact
PAUL DAVIS
POB●●●387
SE●●LE , WA, 98121
US
View this contact
23
YEARS
1
MONTHS
9
DAYS
ENOM, INC.
WHOIS : whois.enom.com
REFERRED : http://www.enom.com
PAGES IN
THIS WEBSITE
7
SSL
EXTERNAL LINKS
27
SITE IP
67.23.27.22
LOAD TIME
0.406 sec
SCORE
6.2
willCode4Beer.com | willcode4beer.com Reviews
https://willcode4beer.com
Pragmatic tips and tricks for Java and J2EE Developers
Software projects
http://willcode4beer.com/ware.jsp
Just little things to help in development (like Dojo) or ideas for new Software. The most visited things in this area are the tutorials for the dojo tree widget. Introducing the Dojo Tree Widget. An introduction to creating a tree with tags, and progressing into programmatic creation. Dojo Tree Widget with AJAX. Using RPC via AJAX to populate a tree node with children when it is expanded. Customizing the Dojo Tree Widget. Creating custom look and feel for the tree widget. Java/J2EE Developers Reading List.
My Rants
http://willcode4beer.com/opinion.jsp
Just My Opinions and Rants. This stuff will get moved once I merge my blog into the site. Review of Eclipse 3.6. Review of Eclipse 3.5. Unix Philosophy in Application Architecture. Have a Code Watch Dog? Preventing Daily WTF's. State of Bug Trackers. In Favor of RDD. 9 in 10 Bridges Are Failures. Review of Eclipse 3.4.
Java Developers Guide to Parsing
http://willcode4beer.com/parsing.jsp
This whole section is draft) ). Java Developer's Guide to Parsing. This little series about parsing is a result of the programming exercises. That I implemented at work. The one in particular was a result of Dave Thomas'. Code Kata on Data Munging. When I assembled the exercise, I threw out a handful of. In the old days, we would have just used a StringTokenizer. Covers it pretty well. The biggest overlooked issue with parsing is internationalization (I18N). Often the use of operations like. Reversibilit...
Tips and tricks
http://willcode4beer.com/tips.jsp
Random tips, tricks, and notes. This section is like a set of random things from one of my notebooks. Only slightly. The latest additions are the bash script. For saving MP3 streams and a script. For automating FTP opertions. The stream saver should work for any site serving so called Winamp. Streams with the ubiquitous PLS wrapper. My specific sites are Shoutcast. The FTP bash script. Was written to save backup files to an FTP server on a cron job. It should be simple enough to modify to any needs.
Extracting Images from MS Word Documents
http://willcode4beer.com/ware/wordimg.jsp
Extracting Images from MS Word Documents. The following is a quick demonstration about how to extract images (and other binary embeded objects) from a Microsoft Word document using java. Microsoft started supporting the ability to save a document as XML in Office 2003. Images are embeded in the XML document as binary data using Base 64 encoding. Word stores embeded binary data using the. Tag A name attribute will be created using the psuedo protocol. W:binData w:name="wordml:/ 01000002.gif". InputStream ...
TOTAL PAGES IN THIS WEBSITE
7
willCode4Beer: March 2006
http://willcode4beer.blogspot.com/2006_03_01_archive.html
Thursday, March 23, 2006. Today, I was playing with a bit of DHTML with both Firefox and IE6. At some point I added an XHTML doctype to make IE observe CSS a little better. Suddenly, the script dies in Firefox. Error in parsing value for property 'left'. Declaration dropped. This occures in the javascript that was reading and writing the left style property of an element. The solution was multipronged. Elemstyle.left = foo;. Elemstyle.left = foo "px";. Var items = elem.getElementsByTagName("LI");. I noti...
willCode4Beer: February 2006
http://willcode4beer.blogspot.com/2006_02_01_archive.html
Tuesday, February 07, 2006. Making CVS listen on two ports. Because of firewalls, multiple networks, and slow to respond admins, my team has been running CVS on a wierd port (the only way we could get data through). We have finally convinced them to open up port 2401 so we could run it over the standard port. In the meantime, the CVS server has been shared with several other groups. To smooth the transition, I've proposed that we just run both ports for a week to give everybody time to switch. Seems bizz...
Envy Code R preview #7 (scalable coding font) » DamienG
https://damieng.com/blog/2008/05/26/envy-code-r-preview-7-coding-font-released
It’s been a struggle but finally after countless hours here it is, the next release of my Envy Code R monospaced (fixed-width) font designed for programmers. Many glyphs have been redrawn since preview #6 including braces, lower-case y, 6 and 9, ampersand, dollar-sign, hash etc. One pixel was removed vertically height to make the box [&hellip. Table per hierarchy in Azure Table Storage. 8 things you didn't know about C#. Debug like a boss in Visual Studio. Ten commandments for developers. LINQ to SQL T4.
willCode4Beer: Oracle Calendar 10g on Linux
http://willcode4beer.blogspot.com/2008/02/oracle-calendar-10g-on-linux.html
Thursday, February 14, 2008. Oracle Calendar 10g on Linux. We got the new Oracle Calendar clients today. And, the joy of a broken "Install Anywhere" installer for Linux (or maybe Oracle just doesn't know how to use it). Get lots of errors like:. Nawk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory. Dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory. Cp cal linux cal linux.bak.
willCode4Beer: April 2006
http://willcode4beer.blogspot.com/2006_04_01_archive.html
Friday, April 21, 2006. Ever since playing with the. Some years ago, I've been looking for good uses. I often write documents (design docs, API docs, etc) in HTML and usually add a glosary section at the end of the document. The definition lists have been used there but, with no styling or presentational flair. The other day and thought it was pretty amazing in its simplicity. I've also liked the sites where certain terms show a. Tags, and with some event binding magic, the corresponding. Anyway, thats t...
willCode4Beer: July 2005
http://willcode4beer.blogspot.com/2005_07_01_archive.html
Wednesday, July 06, 2005. Just assembling thoughts on ways to build a system for configuring applications using code instead of text files (ini, xml, properties, etc.). The simplest immaginable would be to specify the class name in a property set at startup. Java -Dconfig.class=com.willcode4beer.conf.MyConfig . This is quick and simple but, it could get complicated when multiple configurations need to be used. It does make it easy to swap test and real configurations. Why am I doing this? The idea of non...
willCode4Beer: January 2005
http://willcode4beer.blogspot.com/2005_01_01_archive.html
Monday, January 31, 2005. Variation on Double-checked locking. The problems with the double checked locking idom are documented here. I propose the following as a variation when it can't be refactored in other ways. I still need to investigate if this variation actually protects from pipeline optimization. Public class HeavySingleton {. Private static HeavySingleton instance;. Private static Object lock = new Object();. Only permit instance access via factory method(s). If (instance = null) {. So, in pla...
willCode4Beer: December 2004
http://willcode4beer.blogspot.com/2004_12_01_archive.html
Thursday, December 09, 2004. FTP from a bash script. I've moved this entry to my site. Here is how to ftp from a bash script. Posted by willCode4Beer @ 10:39 AM. Links to this post. 10 500 Worlds, 7 Dimensions, and I landed here. Great Developer Blog by Sidu. Smith for President 2008. Oracle Calendar 10g on Linux. Refactoring Even Faster …. with method draging in . Eclipse Restart on Update / Install. 17 Thousand Reasons Im not a Ruby on Rails Develo. OSGi Groups and News.
willCode4Beer: 17 Thousand Reasons I'm not a Ruby on Rails Developer
http://willcode4beer.blogspot.com/2008/01/17-thousand-reasons-im-not-ruby-on.html
Monday, January 07, 2008. 17 Thousand Reasons I'm not a Ruby on Rails Developer. I'll admit, this post is a bit tongue in cheek. It's mostly inspired by the numerous Rails Community anti-Java posts. For the record, I don't see J2EE and RoR as competing. They each have different strengths and weaknesses and excel in different areas. Anyway (images from payscale.com. Median Salary by City - Skill: Ruby on Rails (United States). Median Salary by City - Skill: J2EE (United States). Dicecom shows 636 Ruby Jobs.
willCode4Beer: What's really wrong
http://willcode4beer.blogspot.com/2008/02/whats-really-wrong.html
Monday, February 18, 2008. When you wonder what's wrong with the world,. Just remember one thing:. By definition, 50% of the population has an IQ of less than 100. Give 'em a break every once and a while. Posted by willCode4Beer @ 3:46 PM. Links to this post. Subscribe to Post Comments [ Atom. Links to this post on:. Google Blog Search -. Create link here by posting on Blogger. 10 500 Worlds, 7 Dimensions, and I landed here. Great Developer Blog by Sidu. Smith for President 2008. OSGi Groups and News.
TOTAL LINKS TO THIS WEBSITE
27
Home
Providing software and platform consulting services. Optimization for target architecture/operating system/platform. Proprietary and Open Source. Large or small source codes. Updating to 64-bit build and execution. Linux, Solaris, Mac OS X, Windows Server 2008, Windows 7, SunOS, IRIX, Dynix/ptx, DG/UX, AOS/VS. X86 64, mips64, mips32, x86, m88k, m68k, vax, pdp. Info @ willcode.com.
LunarPages Webhosting Placeholder Page
Welcome to Lunarpages web hosting. And your website's holding page. Please refer to your welcome email to start building your site. This welcome page is named index.html and is located in your public html folder. If you require assistance email support@lunarpages.com. Or visit the Lunarpages Forums Community. You may also be interested in our LunarPages Webbuilder. Service. Thank you for choosing Lunarpages. Over the last 6 years we have paid out approximately 3 million dollars in commissions!
willCode4Beer
Tuesday, October 07, 2008. I was over on that site that directs people to here . You know the one . will something for beer dot com and I clicked on the advertiser for the beer of the month club and was reading the faqs. Let me tell you #13 really put me on the floor . Do members of the Beer of the Month Club have to be 21? Membership in the Beer-of-the-Month club is restricted to those 21 years of age or older. Please be prepared to show I.D. upon delivery.". Don't forget to tip your bartender! Basename...
willCode4Beer.com
Stuff I end up reading. List of Fabricators (3D Printers). I find the whole topic of homemade and micro-enterprise 3D Printers to be very facinating. Here's a list of the ones inspiring everyone else. Basically a reprap variant). Just built a Yahoo Pipe. To merge a bunch of developer podcasts into one. Used bit.ly because the Yahoo URLs are huge). Here's are the main reasons people come here:. Balloon / Bubble Tooltips. How to make fading balloon/bubble tooltips. Dojo Tree Widget Tutorial. Like that desc...
Shiny Object Driven Development – Tim Tyrrell is a Web Developer living in Austin, TX
Shiny Object Driven Development. Tim Tyrrell is a Web Developer living in Austin, TX. Writing Maintainable SPA’s (i.e., the React.js/Flux story). Here is a talk that I gave interally at WellMatch during an Architectual Forum meeting. Explaining how Flux with React.js makes for a much more maintainable and supportable client-side pattern:. A Gentle Introduction to Outside-In Development. A talk that I gave in 2013:. A talk that I gave in 2013:. Intro to Backbone.js with Rails. A talk that I gave in 2012:.
Bill Herman
Bill Herman
willcode4food | A programmer trying to survive.
A programmer trying to survive. Novo endereço do blog / New blog location. Em novembro 11, 2011. Migrei o blog para um hospedado nos meus próprios servidores, ao invés deste que é hospedado no WordPress.com. O novo endereço é: http:/ fbatista.com.br/blog/. Compartilhe no Google (abre em nova janela). Clique para compartilhar no Twitter(abre em nova janela). Compartilhar no Facebook(abre em nova janela). Clique para compartilhar no LinkedIn(abre em nova janela). Clique para imprimir(abre em nova janela).
willcode4foodblog.wordpress.com
willcode4foodblog « Just another WordPress.com site
Just another WordPress.com site. SCORCH HTML Documentation Tool Part 2: The Script. Recap of Part 1. To recap Part 1. We basically walked through the example runbook used in this guide. Now that we have a basic understanding of what our Example Runbook does( Creates a folder, creates a file, writes data to file and also logs event log messages. We will now walk through the process of prepping this runbook to be documented with the script. Export the Runbook – then Create the Images. For our purposes thou...