Categories:
| May 2012 | ||||||
|---|---|---|---|---|---|---|
| S | M | T | W | T | F | S |
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | 30 | 31 | ||
Monthly Archives:
Most recent entries:
Syndicate:
Blog overview
Method SendMail of object _Workbook failed
Categories: Other WindowsThis week I had to help a relative with his computer (unfortunately the problem with having ICT-skills is that you can help with every small computer problem of n00bs).On his computer he uses an Excel-macro to fill in a competition-table and send that to the people who where on a…
Netbeans IDE plugin for Google Protocol Buffers on Mac OS X
Categories: JavaRecently I have been researching Google Protocol Buffers as a way of communication in one of my projects. I found a very interesting plugin for the Netbeans Platform that allowed me and my teammates to use the Protocol Buffers. However when we started working with it we struck a few…
Google Protocol Buffer cpp errors
Categories: C++Why? The last weeks I was searching for a way to send large portions of data easilly from one application to the next. For Java specific you can use RMI to send data-objects between applications, but this time I wanted a more ‘clean’ solution (because you don’t have control over…
Assembler bootloader
Categories: Mac UnixSome months ago I was interested how a computer starts up and how all this is done low-level. Well some weeks ago a teacher at our school explained that it’s quite easy and interested as I was I wrote a bootloader (collected from various online website’s) that shows a simple…
Delete SVN-folders
Categories: Mac UnixFind and delete all .svn-folders on an Unix-based system. Usefull for initial imports. find ./ -name ".svn" | xargs rm -Rf
VIM edit multiple files
Categories: UnixToday I had the problem that I needed to replace text in about 70 documents that where in a folder with about 300 documents, because I’m too lazy to look in every file for a specific pattern I searched on Google for a better solution where I only had to…
poMMO free mass mail
Categories: PHPWell this week I had to find a mass mailing tool for my work to send e-mails to thousand of users (10.000+). One of the company’s clients wanted to send a newsletter to their members so we had to find a product to do this for us and we didn’t…
ASDoc on Mac OS X and Flex Builder 3
Categories: MacFor a school-project we needed to write an application capable of creating a Powerpoint alternative. Luckilly for us our teacher had already written an presentation tool, the only thing missing was an editor to easilly create the slides without fungling too much inside XML-files. So we wrote an Adobe AIR-application…