This is a short guide to setting up a lisp-powered website with Hunchentoot and Talcl/Buildnode. Hunchentoot is a web server, Talcl is a templating system, and Buildnode is a CXML helper library Talcl uses. These are from notes I made while writing an app to help my wife record attendance and student progress for dance […]
Author Archives: ryan
Title cards for videos with Common Lisp
Xach posted recently about Fighting blog spam with Common Lisp as a short example of using lisp to solve everyday programming problems. Here’s one I made last weekend. The Problem: My wife belly dances, and we frequently do some light video editing before posting things to youtube. One of the annoying chores is making title […]
coroutines in common lisp with bordeaux-threads
Turns out threads are a lot easier without beer and after a good nights sleep. Following up on last night’s defeat (see coroutines in common lisp), I re-read the documentation this morning and got my locks sorted out. I now use one lock and two condition variables (CV). From the bordeaux-threads API docs: A condition […]
coroutines in common lisp
After spending awhile in python land, I wanted to have “yield” in lisp. After a month or so of stewing, I decided to dive in tonight. My first stab uses threads, not continuations to accomplish this. I made that choice partially because I find the arnesi library intimidating (arnesi has continuations in there somewhere), and […]
working with R, postgresql + SSL, and MSSQL
I’ve been able to take a break from my regularly scheduled duties and spend some time working with R. This is a short log of what I did to get it working. The main things I’m looking to do is regression modelling from a large dataset I have in postgresql and various stats calculations on […]
making SQL Server backups using python and pyodbc
I have a set of python scripts to help me manage a few SQL Servers at work, and one of the things I do is take database backups using BACKUP DATABASE and BACKUP LOG. I’ve been using pymssql to connect, but today tried switching to pyodbc. pymssql seems to be having momentum problems, so I […]
Testing
This is a test of the wordpress android app. I am likely too lazy to delete this test later.
more heat-maps using vecto and ch-image
This is a follow-up to my post last year about simplistic heat-maps using Vecto. To recap, I’m trying to make heat maps for google maps overlays. Here’s how it works in a nutshell: From javascript I pass to the server the lat/lng region currently shown on the google map, and what size heat map to […]