August, 2006


Paste and Go: New Tab

Wed Aug 16, 2006 6:54:53 am by Dustin
Filed under General

If you are a fan of the Firefox extension Paste and Go, you may be interested to know that you can open the new link in a new tab automagically. To do so, go to “about:config” in the address bar. From there you want to search for “extensions.pasteandgo.OpenNewTab” and Toggle its value to “true”. After that, once you restart Firefox, Ctrl+Shift+V will paste the clipboard and open the link in a new tab. If you do not want to have the tab be the active tab, you can also set “extensions.pasteandgo.BackgroundTab” to true as well. Happy surfing.


Quicken ‘07

Tue Aug 15, 2006 5:15:57 pm by Dustin
Filed under General

Now that I have more time way from school and all, I have made the effort to get my finances in order. The first step for doing so is updating my version of Quicken. I have recently purchased the new Quicken ‘07 Deluxe. This is a step up from the current version which I think is ‘04 Basic. It has not come in the mail yet, but when it does, you can expect a review of the system, including a compare and contrast with the older version.

Next up on my list is to change banks.


New Excitement

Tue Aug 15, 2006 5:09:49 pm by Dustin
Filed under General

I am announcing the start of work for a new release as of now. Version 2.1 construction has begun. What will be involved? For starters, I am adding dynamic perma links to my Whats.New section, categories for Whats.New, cookie based comments for Whats.New, some content updates, and fixing a few bugs.

There will also be some work done to PhotoAlbum, possibly installing AwStat, and adding a couple new subdomains. Although I do not consider these to be part of version for digmann.com, they will be addressed.

I am estimating that the new version will be out this winter some time.


What Do Ya Do Here?

Tue Aug 15, 2006 4:56:31 pm by Dustin
Filed under General

I figured that since I have worked for two days now, I could explain what exactly I do.

Formos creates customized applications for whatever project somebody would like to have done. These projects are typically webbased with a server backend. The interesting thing though is that I am not making websites. The backend of these apps is Java. Yes, that’s right. The Java is quite complicated in fact. These Serlets fill in HTML forms with the help of something called Tapestry. Like the site says: “Tapestry is an open-source framework for creating dynamic, robust, highly scalable web applications in Java. Tapestry complements and builds upon the standard Java Servlet API, and so it works in any servlet container or application server.”

How does it work exactly? Well I’m still learning that. But it has a Java file, HTML file, and a *.page file for each view of the app. Each of these obviously does something different too. The HTML file will build a general layout (including CSS), but leaves blanks for calls to the Java file. This Java file fills in these blanks with calls to the database. The *.page file is somewhat like an include file, in that it is a small reference to where images and other misc items are stored and referenced. Most of my job is manipulating these three types of files.

My primary project is called KellyNet, a construction management system.


Starter JavaScript

Tue Aug 15, 2006 2:55:17 pm by Dustin
Filed under General

I started to do a bit of JavaScript today at work. I have never really done any of it before. You may ask how I got all those pop downs. Well to be honest, I stole them from a friend.

So for all of those of you out there who are learning, here is a simple thing to remember. If you want to have a simple warning come up after a form has changed use “return window.confirm(’blah’);”. Remeber to use the return though. Otherwise you will always return the “Yes” answer.