- Your Locale:
- English (United States)
- Your Time Zone:
- Coordinated Universal Time
- Digital Backcountry (1 hour)
- flexComponent (1 hour)
- Blogartesvisuales.net (1 hour)
- mslinn.com (1 hour)
- Y.Boy (1 hour)
- Flexponential (2 hours)
- MinuteBio.com (2 hours)
- Beinteractive! (3 hours)
- Code Zen (3 hours)
- ByteStopsHere (3 hours)
Guess Who’s Coming To CFUnited?
Guess who’s coming to CFUnited? Me! When I first noticed CFUnited had submissions open for 2010 I wanted to get something in quickly – but wanted to be a bit more organized and formal than I was during last years submission! I think I entered one short paragraph sorely lacking in details last year – oops. This year [...] (translate)
Enable Sendfile Off – Apache Config Headache
I’ve been working on setting up a VM running a LAMP stack along with ColdFusion 9 (which I’ll blog about soon). I’ve got everything up and running and was tinkering around making some updates to our TACFUG site but was running into this weird issue that my CSS would not update – I would make [...] (translate)
Dumping A Select/Insert Query
I have a query that does a select/insert: <cfquery name="data"> INSERT INTO myTable (...) SELECT (...) FROM theOtherTable WHERE 1=1 </cfquery> I was trying to figure out what was going on in this query but doing a simple cfdump of ‘data’ was throwing an error (btw this is on CF8). Reading the docs I noticed there is a “results” attribute: Specifies a name for [...] (translate)
Deleting Trac Spam with Selenium
The CFEclipse Trac wiki has been polluted with spam for quite some time now. We’ve finally got the spam under control but faced a big task of going in and cleaning up all the spam related pages. I started doing it manually and quickly realized this was something I could automate with a bit of [...] (translate)
Introduction To Cron
In my previous entry Cron For Windows I discussed using cron as a better replacement for Windows Scheduled Task. Today we will look at how easy cron is to configure and look at a few examples that I have configured. This tuturial will assume you have downloaded nnCron Lite and have it configured according to the [...] (translate)
CFinNC – Engaging The Right Side of the Brain
At my current job there is little opportunity to do any design related work so I was excited to be able to contribute to CFinNC. Looking back I did quite a bit: I did three t-shirt designs – one of which no one has seen (yet): This was a quick banner for the CFinNC homepage to advertise [...] (translate)
Autohotkey + Dropbox = The Perfect Combo
So you’ve downloaded Autohotkey and are writing all kinds of automation scripts to help you out during the day at work. But what about home? You can setup routines to help you out there as well. I have several setup for email signatures, shortcuts for my home PC, etc. To make juggling your Autohotkey scripts easier [...] (translate)
Autohotkey Week: Day 4 – Launching Apps and GUI
So last session we looked at using the clipboard. Today we’ll explore using Autohotkey to launch applications and build a very simple GUI. I’m always amazed at the effort people go through to launch applications. Desktops full of icons, long Start menus, quick launch bars full of icons. All those take an amazing amount of time [...] (translate)
Autohotkey Week: Day 5 – Conclusion
So hopefully this week I’ve provided you with a few ideas to get you started with Autohotkey! Here are a few more links to help you… Autohotkey Autohotkey: http://www.autohotkey.com/ Quick start: http://www.autohotkey.com/docs/Tutorial.htm Sample scripts: http://www.autohotkey.com/docs/scripts/index.htm Similar tools: Texter IronAHK (Autohotkey for .net/Mono) More resources: Lifehacker has quite a few Autohotkey related posts as does Wikipedia If YOU create a useful Autohotkey [...] (translate)
Autohotkey Week: Day 3 – Clipboard
So now we have Autohotkey installed and have learned to do some basic text manipulation. Next we will explore how we can use Autohotkey to manipulate existing text by using the clipboard. Remember in our previous example how we used Autohotkey to go UP and LEFT to position our cursor? Since Autohotkey can press keys for [...] (translate)