Category: Programming
Putting a separator between your elements
April 16, 2009 00:00
Often when I'm programming, I'll need to list a bunch of stuff and put commas between them. Like this:
1,2,3,4,5
Usually, this is what I, and most of my colleagues do:
List<int> nums = new List<int>();
for (int i = 0; i < 5; i++)
{
...
Read postUpdated the b_pool!
March 20, 2009 00:00
I've updated the bpool again! This one has got some new features such as string functions (not yet complete) and a new bresize function, which basically acts the same as realloc, except that if you are resizing the last block created on the pool, it will resize it without freeing. This makes it a ...
Read postRequesting Code Review
March 11, 2009 00:00
So I've been working on a memory pool lately as a hobby project, and I've come across some things that I haven't found a solution that would satisfy my gut yet. But, after reading this:
I started to realize that since I'm already o...
Read postA resource pool implementation
March 10, 2009 00:00
After some interesting discussion with a friend, I've decided to try my hand at coding a resource pool like Apache's APR pools. I'm gonna call my pool b_pool, which stands for bunny pool.
Its not going to be a copy of APR pools however, it will just by my idea of what a pool should be like. It will...
Read postLet's write asm!
February 07, 2009 00:00
Today I was asked by a friend to help with his programming assignment. His program needs to take in a number and output the prime factors of the number. For example, 60 = (2^2)(3^1)(5^1)
So after trying to explain the problem to him, I decided to try writing it myself in C. Of course, he wrote his ...
Read post