lithinos.net
LITHINOS - Note to self: Home Depot has a mini Radio Shack
http://www.lithinos.net/Note-to-self-Home-Depot-has-a-mini-Radio-Shack-.html
Note to self: Home Depot has a mini Radio Shack. I really don't think that I would have realized that Home Depot has cool little converters, wires, devices, and assorted odds-n-ends related to electronics - but they do. I've been looking for a USB card reader for a while and while WalMart and Radio Shack carry products that fit that bill they're usually expensive. Home Depot had one for $14. This site is managed by Richard Lyman. X2014; Valid XHTML 1.0 Strict. X2014; Valid CSS.
lithinos.net
LITHINOS - A Ruby readline-like method for AS3
http://www.lithinos.net/A-Ruby-readline-like-method-for-AS3.html
A Ruby readline-like method for AS3. I've missed the readline. Method from Ruby, so here's a stab at a readline. That returns an array of all the lines you might want from a given file. These examples of using this method assume some var f. In scope that might look like:. Var f : File = File.applicationDirectory.resolvePath("temp.txt");. You'd call this method in one of several ways. The simplest would return an array of all the lines in a file. Var lines : Array = readLines( f );. X2014; Valid CSS.
lithinos.net
LITHINOS - GVim on WinXP - switching buffer to first file whose name is under the cursor
http://www.lithinos.net/GVim-on-WinXP-switching-buffer-to-first-file-whose-name-is-under-the-cursor.html
GVim on WinXP - switching buffer to first file whose name is under the cursor. The Ctrl-q is used in place of the Ctrl-v, since GVim on Windows has Ctrl-V mapped to the paste action. Use of the command 'ye' is essential to get the word under the cursor, in place of the command 'yw', since the 'w' will append whitespace if it can. Please note that there is an actual. Character in these commands, before. F4 Esc b"zye:b Space C-r z. C-q CR map F4 b"zye:b Space C-r z. C-q CR. X2014; Valid XHTML 1.0 Strict.
lithinos.net
LITHINOS - Nginx on Ubuntu
http://www.lithinos.net/Nginx-on-Ubuntu.html
Rebuilding a server I'm an admin for, I realized that it might help others, as well as my future self, to document the few minimal steps needed to use Nginx on Ubuntu. Run the command sudo apt-get install build-essential libpcre3 libpcre3-dev libpcrecpp0 libssl-dev zlib1g-dev. Download the source, extract it, and cd into the resulting dir. Run the command ./configure - with-http ssl module - sbin-path=/usr/local/sbin. Run the command make. Run the command sudo make install. X2014; Valid CSS.
lithinos.org
LITHINOS - Note to self: Home Depot has a mini Radio Shack
http://www.lithinos.org/Note-to-self-Home-Depot-has-a-mini-Radio-Shack-.html
Note to self: Home Depot has a mini Radio Shack. I really don't think that I would have realized that Home Depot has cool little converters, wires, devices, and assorted odds-n-ends related to electronics - but they do. I've been looking for a USB card reader for a while and while WalMart and Radio Shack carry products that fit that bill they're usually expensive. Home Depot had one for $14. This site is managed by Richard Lyman. X2014; Valid XHTML 1.0 Strict. X2014; Valid CSS.
lithinos.net
LITHINOS - Releasing clj-peg under the epl
http://www.lithinos.net/Releasing-clj-peg-under-the-epl.html
Releasing clj-peg under the epl. I've been spending quite a bit of my very rare spare time working on a library that provides support for PEG's. This effort has resulted in producing the clj-peg. Library. It's far from what I want it to be, but it handles some interesting cases. To be clear, I've profited. I've made money off of code or libraries that I've written. Just not directly. I usually make money off of contract work that comes about through providing in-house customizations of code I've prev...
lithinos.net
LITHINOS - Building Clojure with Maven 3
http://www.lithinos.net/Building-Clojure-with-Maven-3.html
Building Clojure with Maven 3. There are several ways to build Clojure. Some of those include, Leiningen, Ant, and Maven. I've written other posts on building Clojure using Ant, and there's probably a post in me about Leiningen. Maven just happens to be a strong contender in the build tools. Arena, since it's one of the main options where I work now. There also happen to be several. I use Leiningen when I'm working on a personal project that I plan on sharing with others ( Amotoen. Aside from freeing thi...
lithinos.net
LITHINOS - Compiling Clojure applications using Ant
http://www.lithinos.net/Compiling-Clojure-applications-using-Ant.html
Compiling Clojure applications using Ant. There's an updated article [Compiling-Clojure-Applications-and-Libraries-Round-2.html] that works with the 1.0. Releases of the clojure.jar file and the clojure-contrib.jar file. Attribute from the zipfileset. The Clojure and Clojure Contrib class files are pulled out of their jars and bundled with the resulting app JAR. This means that the resulting file size will be larger than it really needs to be, but you will have all of Clojure and Contrib available to...