Skip to content

Category Archives: Linux

Qemu and DSL HD Install on a Thumbdrive

This is something I’ve always thought would be useful- a small linux distro installed on a thumbdrive. I’m not talking about an in-memory install; not knoppix. I want to be able to boot from within windows, but still save my stuff to the thumbdrive. I’ve used MS Virtual PC and that works ok but I’ve [...]

Circumvent the firewall; access web-mail through pop3 using HTTP

Ever want to be cool and check your web-mail at work without having to go to the stupid bulky web client to do it? There are several ways around this. Some providers, like gmail provide pop3 access. However, many do not, and even if they do, most corporate firewalls block you from using it. However, [...]

Configuring Pine with Fetchmail and Procmail on Cygwin

The previous post is fine if you just want to use pine with imap, but my real goal here is to use a new app I’ve been working on and to do that I’ll need fetchmail to retrieve my mail for me, instead of a built in pine imap or pop3 retriever. Fetchmail requires an [...]

The Quest for the Ultimate (Remote) Dev Environment

I haven’t been comfortable with my work environment for the last couple of months that I’ve been working remotely. My remote office work involves connecting via VPN and making use of Microsoft’s Remote Desktop Connection. The problem is with speed. I just cannot get used to the delay between hitting the key and seeing the [...]

Portable Apps: Xampp, DSL, ETC

I’ve really been impressed with the development of portable apps. With increased disk space and USB2.0, there’s so much that can be done and it’s just beginning. The following is a list of useful applications I’ve found for portable drives.

Mad Command Line Skillz

I’ve been working with shell scripts recently. The *NIX command line has some really powerful tools, but I’m afraid to say I’m starting to feel pretty comfortable in my Java IDE land, or in Python land, hell even in Ruby land. And going back to shell scripting has not been fun for me. A few [...]

Ajaxterm: a web-enabled server terminal

Ever want to access your server, but that pesky firewall at work only allows web access? AjaxTerm is the answer. It is a python application that creates a virtual CONSOLE for the server it is installed on. It is simple to install and launch, you just need to configure a proxy in httpd.conf so you [...]

Windows XP: Batch of Goodies

A couple of Windows batch files. Because sometimes while I’m at a Windows Console, I’m still thinking UNIX commands. Launching a graphical executable from the command line vi.bat @echo off start “title” /b “C:\Program Files\Vim\vim70\gvim.exe” %* Locating the executable in the classpath which.bat @ECHO OFF setlocal set DELAY=YES set DELAY=!DELAY! if “%DELAY%” == “YES” ( [...]

RTC Core Competencies – Your “Console” of Choice

Post ‘em here. rxvt -g +450+485 -fg green -bg black -fn ‘Courier New-20′ -sr -sl 3000 -cr green -e /bin/bash –login -i I use the following in my shortcut: C:\cygwin\bin\run.exe C:\cygwin\bin\rxvt.exe -e /bin/bash –login -i And then I have this in my .Xresources (for rxvt) ! rxvt settings rxvt*font: 9×15 rxvt*cursorColor: MediumOrchid3 rxvt*background: grey15 rxvt*foreground: [...]