Search
Links
- Darkroom
My Black&White photography - T Software
My software shop
- Darkroom
Categories
- Fun (6)
- IT & Technology (63)
- Software (21)
- Software Development (22)
- Coding fun (2)
- SysAdmin (10)
- Tips'n'Tricks (7)
- Miscellaneous (3)
- Music (4)
- Photography (13)
- Quotes (13)
- Site (4)
- Uncategorized (6)
Tags
.net 2.0 analysis apache c christmas tree coding fun creative commons fun hotels iis internet irc it & technology linkedin linux logminer logs mac os x mantis miscellaneous mysql networking open source optimization oracle photos php poetry quotes rant ReportViewer security seo site software software development spam sysadmin travels vista VisualStudio web windows wordpress
Recent Comments
- Simone on Keeping script kiddies at bay with mod_evasive and iptables
- sdj on Keeping script kiddies at bay with mod_evasive and iptables
- Simone on Keeping script kiddies at bay with mod_evasive and iptables
- sdj on Keeping script kiddies at bay with mod_evasive and iptables
- rack on Serendipity to WordPress
Category Archives: Software Development
Single instance per session application with argument passing
Suppose you want to create an application which you want to limit to a single running instance, like some image viewers do for example. Also, you need different users on a Terminal Server not to conflict with each other. Oh, … Continue reading
How much would it cost to rewrite it?
I’ve just added LogMiner to Ohloh, a site that offers an interesting feature: it can analyse a project source code and estimate how much it would cost to hire a development team to recreate the project from scratch. I think … Continue reading
Posted in Software, Software Development
Tagged logminer, software, software development
Leave a comment
If at first you don’t succeed… try, try again…
Here’s another interesting piece of code I’ve just dug up in a C# application I’m reviewing. If you can come up with a bright idea about what those try/catch blocks are supposed to do, you’ve got more imagination than me… … Continue reading
Don’t code like this at home, kids
Sometimes when you’re reviewing someone else’s code, you find interesting pieces of “art“. Like the following loop construct in a C# application: 123456789101112 int i = anArray.Length – 1; while (true) { … Continue reading
Quote of the Day
I always assumed the designers of the Objective-C language and Cocoa frameworks trust me to know what I’m doing while I find very elegant ways to shoot myself in the foot. – from a mail sent to Cocoa-dev
Posted in Fun, Quotes, Software Development
Tagged cocoa, fun, objective-c, quotes, software development
Leave a comment
PHP templates
When you design a complex application, it’s always useful to separate the presentation layer from the business logic. Usually, when dealing with web apps, this involves handing templates which are “filled” with data by your controller. The common rationale is … Continue reading
Attributes, reflection and PHP
After a long exposure to .NET, when I get back to PHP I sometimes find myself missing some cool functionality (and a good IDE too… none of those I’ve tried so far can compete with the comfort of VisualStudio + … Continue reading
Posted in Software Development, Tips'n'Tricks
Tagged php, reflection, software development, tips'n'tricks
Leave a comment
Is MySQL bad for (open source) software quality?
I think so. Why? Because it’s basically a toy DBMS with too many non-standard behaviours. A lot of open source projects choose MySQL mainly because it’s widely available among hosting providers, while better RDBMS like PostgreSQL1 are hard to find. … Continue reading
Posted in Software Development
Tagged database, mysql, oracle, postgresql, rant, software development
1 Comment
The meaning of const in C
John Engelhart posted to Cocoa-dev a detailed explanation of what exactly const means in C programs. Keep in mind that he’s talking about C, not C++ (where const has a stronger meaning and even a slightly different semantic when used … Continue reading
A little rant about .NET’s ReportViewer
The .NET Framework 2.0 contains a component called ReportViewer which can be used to generate reports in different formats (HTML, PDF, etc…). After having used it for a couple of reports in a web application, I came to believe that … Continue reading
Posted in Software Development
Tagged .net, ReportViewer, software development, VisualStudio
1 Comment