Archive for the 'Java' Category

h1

What I’ve been doing lately

Wednesday, August 26th, 2009

Yep, I’ve been busy.   Too busy to write?  Yes, at times.  Also, lacking in appropriate topics.  More on that another time.

Why so busy?  First I spent a lot of time prepping for my presentation to a networking group on Personal Branding.  After that, I implemented a survey to gather feedback.  Then, a lot of volunteer projects suddenly came to a head.  On the plus side, I have some results that I can actually share with my readers.   It’s not Java stuff, but it is other web stuff that should help round out my knowledge for Web Application positions.

About two weeks ago, I finally completed work on the revamping of my brother’s website.  This took a fair bit of time, but was mostly limited to tweaking HTML and CSS, plus messing with images and such.  One of the hardest parts is always figuring out where to start with these sites.   It probably took me about two weeks to finish, which seems like a lot of time. Most of that is the going back and forth on design ideas.  I did get to do some Java work on this as well, although I was unable to use it in the end due to my web host being unfriendly to Struts2.  However, I’ll tell you about it anyway.  I designed a pretty awesome login system using Struts2 Interceptors that would have allowed me to have my brother’s site available for review in a private section of my own site, where no one else could see it.  Although it worked fine here on the development laptop, I couldn’t run it on my web site.  Plus side, I felt good about what I was able to do quickly on that project.   I’m still not sold on the Green/Black combo even though it was my idea, but I think it is a fairly serviceable site. More importantly, the client was happy.

See my work here:
http://www.ferguscullen.com/

I should note that you should check out the editorials on his “Recent Op/Eds” page.  Although many are political in nature, he is a talented writer and usually quite entertaining.

In addition, I have been working with the marketing team of a non-profit to revamp their multiple websites into one site.   This rolled out today for the New England Job Show, basically a WordPress self-hosted blog:

http://nejs.org

Initially, this group had a website, and three separate blogs.  This was an SEO nightmare, and virtually nothing was connected. I researched our various options, and was able to customize the blog theme to do exactly what the team needed.  This involved adding a PHP file, and tweaking a lot of other PHP code, plus some CSS, HTML, and image manipulation within GIMP.   The hardest part of this entire process was the initial selection of a WordPress theme.  I ended up doing customization on about five themes before we landed on one that worked for the marketing team.

So, were these efforts worth it?  Yes, in that my knowledge of the following technologies moved forward:

  • HTML
  • CSS
  • PHP
  • WordPress
  • Struts2 (Java framework)

Oh, nearly forgot to mention that a “for-profit” organization saw this latest site today and has asked to meet with me for some paid work.  No idea if it will work out, but it’s nice to feel wanted.  It would be a single site, not a full-time gig by any means, but something anyway.

Hopefully more posts to come as things settle down.  I have a few topics in mind, but am feeling shy about sharing them at this time.

VN:F [1.7.0_948]
Rate this post
Rating: 9.7/10 (3 votes cast)

RSS Feed Add to Technorati Favorites Add to Del.icio.us Stumble It! Submit to Slashdot Submit to Buzz! Digg It!
© Submit to Any - jjtcomputing.co.uk

h1

Guide to Subclipse Decorator Icons

Wednesday, July 15th, 2009

In my current role, we are using Subversion (SVN) as our version control system. As an Eclipse user, I am using the Subclipse plugin that allows you to easily interact with Subversion to commit changes and make updates to your code. I quickly noticed that there was no online resource out there that specifically talked about what the “decorator” icons mean in Subclipse, and thought this might be helpful for new users of Subclipse. “Decorator” icons are icons that are added to your file icons in Eclipse whenever you make a change, add a file, etc.

Eclipse does include the icons under Preferences > Team > SVN, but the explanation is reduced to one word in each case. I have included the one word descriptions with the icons below.

Table 1: Icons within your project

Icon What this means to you
Plus sign The “plus” sign indicates that this is a new file that did not exist before.
Asterisk The “asterisk” indicates that this file has been changed since the last Commit
Question Mark The “question mark” indicates that this file is not part of the Version Control. All new files you create will have this icon. You need to add them (right-click >> Team >> Add to Version Control). If you don’t add them, they will still show up when doing your Commit, so you may be able to add them here by including them in your commit.
Unchanged The “yellow pipe” indicates no change to the file. It is also used on folders.
ignored No decorater means the file is ignored completely. This is similar in effect to the Question Mark. By default, files have the Question Mark. To remove that mark, you need to (right-click >> Team >> Add to svn:ignore…)
conflicted Conflicted: I have not encountered this.
Read Only Read Only: I have not encountered this.
Check Mark Locked: I have not encountered this.

You will also run into some new icons within the commit process, documented below

Table 2: Icons during the Commit Process

Icon What this means to you
add The “plus” within the arrow means this file is new in your version, and will be added to the latest Server revision
delete The “minus” within the arrow means this file has been deleted in your version, and will be deleted from the latest Server revision.
updated The blank arrow means this file has been updated, and will be updated in the latest Server revision.
Unversioned Commit Icon with Question Mark The Question Mark means this file has not been added to Version control. I have not checked if this updates if you check the update box!

I am likely missing some icons above. I have not run into any conflicts as of yet, so I may not have stumbled into every scenario. I will update this post as I encounter new icons.

Note: I am using Eclipse Ganymede 3.4.0, and the “Default” icons.

Any questions or corrections, leave me a comment!

VN:F [1.7.0_948]
Rate this post
Rating: 8.9/10 (7 votes cast)

RSS Feed Add to Technorati Favorites Add to Del.icio.us Stumble It! Submit to Slashdot Submit to Buzz! Digg It!
© Submit to Any - jjtcomputing.co.uk