TaskScheduler Domain Specific Language converted to Lisp
A domain-specific language written in C# and Boo, converted to Scheme, a dialect of Lisp
0 commentsSave Tags: .net, other languages, research
Personal Branding: The Individual has Won.
I was discussing personal branding with a friend on Tuesday night after we had been to a poetry reading. She read a poem on a whim and little did she... more »
0 commentsSave Tags: opinion
A Second Look at What Interests Programmers
I was inspired by a blog post titled 41 Reasons Why Your Blog Probably Sucks to look at the top three posts of this blog. I previously wrote a post on... more »
0 commentsSave Tags: opinion, other languages
Links: Scheming in the Night
Two things that I found interesting about other languages that can be applied to Scheme. The first is keyword parameters for functions, borrowed from... more »
0 commentsSave Tags: other languages
Competing with Perl, Python and Ruby: Renaming files with MzScheme
A reddit user by the name of alanshutko stated what was necessary to make Scheme, Common Lisp, Haskell, and other non-mainstream languages more... more »
0 commentsSave Tags: other languages, perl, python, ruby
Python Cairo Chart module
The pyCairoChart module for python offers an easy way to create 2D-Charts using the excellent cairo graphics library.
0 commentsSave Tags: gui, python, tools
Templates from C++ to D
It’s around 1pm and having decided that I do not want to start on real work yet, I’m taking a look at another workshop/lab assignment for this... more »
2 commentsSave Tags: c-and-cpp, how-to, other languages
(File) Streams in D
In my C++ college course, we’ll be covering file streams in the next few weeks and I had this funny thought, why not try and code the workshop/lab... more »
0 commentsSave Tags: c-and-cpp, how-to, other languages, tools
A short overview of Python Magazine's first issue
The first issue of Python magazine has been released and is available for free download. Unfortunately, there doesn’t seem to be a print version but... more »
0 commentsSave Tags: news, open source, python
Random Number Generation, part 1
The 4th chapter of the book Algorithms by Robert Sedgewick covers random number generation. The tricky aspect of this is making sure that the numbers... more »
0 commentsSave Tags: other languages, research, tools
After Midnight Coding
Earlier this year, I attempted to improve my programming skills by coding solutions to the algorithmic problems posted on TopCoder. Most of my... more »
0 commentsSave Tags: how-to, other languages, research
What Interests Programmers
Some advice on how to write blog posts/articles that interest programmers.
0 commentsSave Tags: how-to, opinion, python, ruby
A few Emacs, Code::Blocks and MonoDevelop IDE Tips & Tricks
I’m sure there are developers that are jealous of the Visual Studio IDE and the tips and tricks that Chinh Do posted. Here are some of the equivalents... more »
0 commentsSave Tags: .net, books, tools, unix-linux
Matching String Cases with Scheme
Similar to the switch block in C, the code in the post allows you to match strings in cases. For example, switch(my_string) { case "hello": foo();... more »
0 commentsSave Tags: how-to, opinion, other languages
Meta-meta-programming
I recently read an article on meta-programming where the author writes a Ruby script that uses the eval function to generate Ruby and Java code for a... more »
2 commentsSave Tags: methodology, other languages, perl, ruby