Posted by (1) Comment
Amazon S3 is cheap, essentially limitless online storage. If this is the first time you’ve heard of S3, you’ll find everything you need to know about it online at the S3 homepage.
For those of you that are interested or already using S3, I have three questions.
These questions come from my own experience working with S3.
The only solid client I’ve found for working with S3 is Transmit from Panic. Transmit allows me to work interact with S3 exactly as if it were an FTP server. It’s a beautiful thing.
On Windows however I haven’t been able to find anything reliable.
I’ve tried the S3Fox Firefox extension. It’s buggy as heck. I’ve contacted the author of the extensions author offering to help out with bug fixes and added features. I never heard back though. So that’s sad.
I’ve seen a number of other products, the seemingly most popular being JungleDisk. Almost all of these are geared for drive backups. That’s just not the way I need to use S3.
I’ve tried JetS3t. But it’s also pretty buggy. The kind of stuff it barfs on is not knowing how to map a folder on S3 to a folder on my local drive. That just totally baffles me.
WebDrive I have to say has made me pretty happy. Still it doesn’t have that “it just feels right” quality about it.
The main thing I use S3 for is storing my iTunes movies and music. I regularly work on 3-4 different computers. I don’t want to replicate my entire 50 gigs or so of iTunes data. So I just stash it up on S3 and then download songs as I want to listen to them.
We’re considering building an S3 client that better supports the type of more casual usage model that I described. Before we head down that road though we want to get some feedback from the rest of the world out there on how they use S3.
If you’d be interested in seeing new and better ways to interact with Amazon S3, let us know.
Head on over to the Wordpress Plugin directory and download the plugin.
Take a spin through the online documentation for installation and usage instructions.
This release adds proper rendering for headers with embedded markup.
Happy blogging.
Posted by (2) Comments
In the business of developing software, we usually work with many people concurrently and interactively. This context has peculiarities which make some tools more appropriate than others.
Some of the key features in this context are:
Some pieces of information are like signposts, staying rooted in place and guiding traffic around them. A wiki is the right tool for this type of information.
Some are like particles of magical, formless, floating pixie dust. A task tracker is the right tool to track this type of information. The key notion here is that progress can be quantified.
Some are the anonymous and non-descript traffic around the signposts. This is typically activity like people asking questions about how a feature works or asking for help solving a particular problem, configuring a system etc. This is “front-office” activity. It is questions asked of support staff as opposed to requests for features of or assigning work to developers. A forum is the right tool for tracking this type of information.
The lifecycle of the system goes like this:
Wash … rinse … repeat. I’ve left out the whole QA process for the sake of brevity. You can probably get a feel for how that might work for you, given the tools and types of information I’ve described.
Now that the context is defined, how might various tools meet your needs?
In our experience, we have found it rare that a system satisfies all of the needs just described. Some systems are better for companies which develop a single software product (i.e. no support for multiple clients or invoicing). Some systems integrate the magic triad; forum, task tracker and wiki. Other systems don’t. Some systems license by the user, and are therefore expensive. Some systems are easy to install and use. Other systems require a lot of maintenance. There are many factors to consider.
Task trackers usually fall into one of two categories; “todo list” style or “urgency/priority/severity/percent-complete” (UPSPC) style, for lack of better names.
Todo-list trackers are loosely structured. They are geared toward small-scale and less-complex projects. Some people would argue that their simplicity makes them even more powerful than more structured alternatives. This is an arguable contention when viewed in general, but when discussed in the context of a specific task, the choice usually becomes clear. They are not the right choice for projects involving multiple contributors or management assignments.
UPSPC trackers usually enable developers to prioritize tasks. If this sort of system is used, it is critical that users understand the difference between “urgency,” “priority,” and “severity.” Even when they are understood, tasks are often mis-categorized.
Instead of exhaustively evaluating every possible system, we will give you what we consider to be the best of each type of tracker.
Product home page:
Made by:
Pros
Cons:
This task tracker is really the combination of two pieces of the Basebamp suite, “Time,” and “Todos.” If you are familiar with Basecamp, you will know what I am talking about. If you are not, check out Basecamp to see for yourself, and maybe even sign up for a free evaluation.
Product Homepage:
Made by:
Pros:
Basecamp is chock-full of features. The task tracking is almost an afterthought. The way we use Basecamp focuses on the forum-like “Messages” area. We discuss and refine ideas until a project or task scope is understood. We then move forward, communicating using these messages, and recording our time with Basecamp time log entries.
Cons:
Put another way, Basecamp makes us a better company.
There are a number of other systems which we’ve collectively evaluated over the years, but haven’t worked extensively with.
These include:
A task tracker is a core tool for a development team. It is important to find (or build) a tool that can be shaped to exactly fit your project and working style.
Take some time to experiment. See which features help most. Give yourself some time to see how well the tool fits
We are always looking for tools that can improve our productivity and communication. If you’ve used a tool that we didn’t mention, please tell us, and the world, about it.
Happy tasking.
Posted by (0) Comments
There’s very rarely one big thing which can make or break a software project. The all-night “hail mary” hack session that you or your developer thinks saved your project was, although heroic and well-intentioned, most likely not the major contributing factor to the success of your project.
Here’s the secret to successful software development projects.
Start with an idea. Discuss it with everyone.
Listen. Be tenacious but patient. Above all, be honest with yourself.
Stay flexible.
Reward your successes and learn from your failures.
Enjoy each small success.
What you will learn is that the reward from success is the team you’ve built, not the product.
Lead that team on to other projects. As you succeed with each one, larger projects will come to you.
Succeed with each one and you will realize that all successes are small because there’s always a larger one waiting for you down the road.
Nurture, challenge and care for that team and you will find yourself, a long time from now, reflecting on many small successes.
I posted a week or so ago about my solidifying realization that Java is no longer (if it ever was) one of the better languages for building web-apps.
The original article, Why Are There So Many Java Web Frameworks? can be found here.
One of the points made in that article was that as you mix different frameworks into an application you end up having to tweak or work around attributes of each framework that aren’t compatible with, or are undermined by features of another app.
A really good example of this, and the one that impacts me the most right now is probably how Spring and the hot-deploy capabilities of Tomcat interact.
When Tomcat reloads a class after the source file is changed, it dumps/clears the web context and reloads or rebuilds it. This is typical for the various application servers I’ve worked with (including Jetty, WebLogic and others). When Spring is being used, the context dump also dumps the Spring context, meaning that all of the beans that Spring manages need to be reloaded. Yuck!
Spring does have a refresh method which may avert some of the greediness of this process. I’ve never been able to implement it though because I don’t usually have control over the dispatcher servlet because I’m using Struts! This is yet another example of how frameworks compound application complexity when used together.
The net result for me is this. On an application with 3164 classes and 405 beans managed by Spring it takes me 63 seconds for the hot-deploy mechanism to pick up my changes.
So, in Java:
Ugh!
In any interpreted language:
Here’s what’s great about Java.
If you read almost any Java blog or talk to any junior to mid-level Java developer they’ll cite those two attributes as reasons why Java is so wonderful. There may be other reasons in addition. But you’re almost guaranteed to hear those two. Oh, you may also hear “It’s so much better than C++”. Who’s writes web apps in C++ though?
Unfortunately however, that’s not the whole story. If you start asking around, talking to Java developers with more experience, and particularly those who’ve worked in other language environments, particularly using interpreted languages, you’ll start to fill in more of the picture.
I could go on. But you get the point.
Live and let live I say. If you’re happy with your development life-cycle, the speed at which you develop applications and the tools available to make you more productive I’m truly happy for you. I would, however encourage you to look further afield. Try using some different languages. Try NOT using frameworks and just deal with the problems that the Java fundamentals (things like Servlets and JDBC as opposed to component-based UIs based on markup and ORM (object relational modeling) tools. You’ll be surprised how much faster your applications are. Whatever you think you’ll gain most likely won’t be worth the complexity and learning curve to attain it.
And lastly, if you’re a framework developer, keep it up! There may be a killer app out there that will boost Java past the yuckiness I’ve described. And you may be just the right guy to discover and/or develop it.
Just as a final clarification, lest you think that I’m a Java hater, I’m not saying that Java is bad. I’m just saying that it’s not the best tool, or even the best starting point for building applications for the web.
I feel that a lot of businesses have felt the need to embrace “enterprisey” platforms. At the same time, they’ve felt the need to embrace an increasingly web-based delivery model and Java has catered to that crowd. Businesses have embraced Java mostly because there weren’t any better alternatives, and or they didn’t have enough experience and knowledge about Java to be discerning or find alternatives. That is to say that there weren’t other platforms that catered to the crowd interested in “enterprise-scale web applications” to the degree that Java and Sun did. So Java was a safe choice for managers and developers starting out and looking for a technology to use as the basis for their career.
My thoughts in this article are intended to encourage IT managers and developers to look outside of the vast confines (isn’t that an oxy-moron?) of the Java landscape and consider options and alternatives for enterprise-scale computing platforms. It’s become simpler and simpler to achieve scalability (one of the biggest demands from the “enterprise” crowd) since Java became King of the Enterprise. And I think it’s time for businesses, particularly IT managers and senior/lead/principal developers and engineers to build on a platform of simpler, more nimble technologies to meet ever increasing demands for agility in the marketplace.