I’ve spent a lot of time leading and being led in engineering departments, it’s the easiest thing in the world to have complaints about how things are run. I try to follow the idea of not making a complaint without a solution. Not having a job currently, I find myself in an unfamiliar situation to think about this: I have no structure bothering me at the moment. So, as I look for my dream job, I’ve decided to design my dream department.
If there is one thing that turns me off when having a technical discussion, it is when someone utters that some presented solution or capability is impossible. This is like burying your head in the sand. Not every idea is a good idea, but generally they are all possible. The promise of technology has always been to make things happen that we previously thought to be impossible. So the freedom some feel to say that something is impossible is shocking.
I completed my first ultra-marathon a little over a week ago at the Black Canyon Ultras. It was 50 kilometers (which, to answer almost everybody’s first question, is 31 miles) of rocky, dry, rarely flat desert trail. It was hard to finish, it was hard to train, it is hard to express running this race, but I’ll try. For the uninitiated, or the fast, “race” for me, simply means a group run where you pay in advance and get timed.
A few times in my career, I’ve decided to have a blog. This is another one of those times. It has been a while and my old Jekyll page was looking pretty dated. I deleted the old page and have imported all of my old posts, which aren’t very many, and I made the decision not to even read them to see if they had any value. The titles look pretty solid though!
I love drawing comparisons between things and coding.
Today I ran 13.1 miles with about 10,000 other people.
It was nothing like work.
It didn’t teach me anything about what I do at work.
Anyway, it was fun you should try it.
Clean up after yourself One of the great things about computers is that you don’t have to delete anything you can write the same shell script 100 times with 100 different names and keep them all. But just like your garage, the more things you save, the harder it is to really find what you need. So, when you realize that your clever directory just for scripts that help with parsing log files is totally unused, take a few minutes to look through and see if any of them are generally useful, and delete any that aren’t.
getting the work/work balance right (or what to do with your overtime) A lot of people in the tech industry don’t know how to stop working. This is a personal demon each person needs to take care of. The best thing to do with your free time is enjoy yourself. It’s good for you and your employer for you to unwind when you aren’t obligated to be producing. But, if you find that you feel like doing the kinds of things you do at work in your free time, do it, but don’t do work.
Keeping your code portable with Maven dependency scope If you, as you should, try to keep your code portable by avoiding imports of implementations of standards, such as JAX-RS, JPA, or Bean Validation, you might find yourself accidentally importing the wrong packages, because they are both on your classpath. It is all to easy to accidentally bring these dependencies into your code, they frequently have the same name and the compiler will suggest them.
An at work happy hour gets people talking, one or two beers will keep them from worrying about what is important to say and they just say whatever they are thinking. Companies that don’t have the social thing down are not doing it right, the onus of communication is not so much on the individual as it is on the organization itself. If you tell somebody that they need to share what they’ve found, you need to also tell everybody else to listen to what they’ve shared.
statement We get warned a lot about going after what’s new, for the novelty of it. But new things don’t come from the ether, they come from people being unsatisfied with the current offerings. So, we know that the new thing is at least an attempt to move forward, whereas the old thing is just the old thing. You might be able to move forward with the old thing, but just because it’s the old thing doesn’t mean you can, anymore than it being the new thing means that it will be worse.
theoria For standardizing across projects, guideline documents are great but even better is when there are processes in place to get things started reliably in line with guidance. Eclipse has code templates and style settings that can make your code perfectly formatted, but it doesn’t do much for project structure, naming and standard configuration. That’s where maven archetypes come in. It is satisfying to automate processes that you know are only minor modifications on previous work, so when you find a project that you feel in your bones will be duplicated, take it upon yourself to make it worth copying, and easy to copy, create an archetype!
Auto-Complete as a Design Tool UML is a great tool for sharing design concepts without a lot of baggage in the way. There are at least three problems with sharing an idea in UML:
The implementation may differ greatly from the design The implementor might misread inheritance as composition, or interface realization as aggregation, or worse yet, the diagram can be forgotten. The implementation isn’t even begun until after the diagram is done.