Posts Categorized: Tech

Thread Pools in Java

Posted by & filed under , , , .

On the subject of Java code optimisation: I’m sure we’re all familiar with the concept of thread pooling — typically used together with the Executor framework. Configuring your thread pools can be tricky: choose a small value and you’re not making usage of your server power, on the other hand, choose a value large enough […]

Java StringBuilder

Posted by & filed under , , , .

This is something that I have seen quite a few times while looking online at other people’s code so I thought I’d write about it quickly — preach the world and all that 🙂 I’m referring here to the JDK class StringBuilder, however, those of you who know your JDK classes would surely have figured […]

Plan for a Crisis

Posted by & filed under , , .

If you haven’t heard the phrase yet, memorise it now: plan for a crisis! Because if there is one thing certain in the running of each company, that is having a crisis – we all encounter it on one level or another. You might be lucky enough for your crisis to be your project just […]

marketing

2 X 1 = 0.5

Posted by & filed under , , .

The “equation” in the title has go doubt puzzled you as it is nonsense 🙂 I couldn’t agree better, though there are a lot of people that don’t see that! Intrigued to hear that? What if I was to tell you that the above formula should be read “if you double the number of developers […]

Bandwidth – reloaded

Posted by & filed under , .

I’ve posted before about bandwidth in my posts and I knew from the beginning that it’s one of those issues that you can never exhaust. As it happens recently I came across another interesting thing which is probably worth sharing: cross browser delivery. In brief, it means delivering to each browser the content it can […]

Scripting

The Joys of Development Frameworks

Posted by & filed under , , .

I haven’t had much time lately to use my beloved mobile WordPress application – due to a mixture of owning a Kindle nowadays and being swamped with work. Ironically it was some of the recent work that forced me in the end to write this article so today I gave up my Kindle on the […]

How Do You Hire Your Developers?

Posted by & filed under , , .

All IT companies at some point are faced with the problem of hiring staff – in particular, developers, who in most cases are the core of the business, as they create the product(s) the company builds upon. This is no easy task (if you think it is, go and outsource all of your development to […]

java code

Compilation tools

Posted by & filed under , , .

If you are developing applications as your day job then you are used more than likely to compiling your code and then running it (I know there are exceptions to the rule in those who are using interpreted languages but there’s still a majority of us it seems who use compilers). Some of you might […]