Dev and Such

A blog pertaining to my own development experiences.

Node.js and TurnTable.fm

| Comments

So, a friend recently turned me on to TurnTable.fm which is an awesome place to listen to, discover, and share the music you love. In checking out some of the different rooms, I discovered that some people had written bots that do different things: manage who can play songs, post fun messages, keep stats, etc. Out of curiosity, I decided to try my hand at making a bot.

A Whole New World

| Comments

I started working at Improving this week which has required a major shift in my development ways. First and foremost is the change from PHP (which I’ve been coding for years) to Java. It wouldn’t be so bad if it was just Java, though. However, that is not the case.

Combining Blogs

| Comments

Today I decided to combine my Emacs blog (formerly a Blogger blog) with this development blog. You will see all the old posts, and I have created a new menu entry for the “emacs” category.

Kill Multiple Lines With Kill-lines

| Comments

Today, I wrote an Emacs package called kill-lines. It is a simple package with an interactive function of the same name that, when run, allows the user to enter a line number and kills all lines from the current line to the given line (inclusive). To make this easier, it turns on highlighting of the current line (so you can see where you’re starting from) and line numbers (so you can easily pick one as the target). It turns these visual aids off when it is done, unless you already had them turned on to begin with.

Of course, you can bind kill-lines to a keybinding. I have chosen C-c C-k.

You can find kill-lines at my GitHub repo here.