Category Archives: Computer Stuff

Graphing With Flot

I was working on one of my personal projects, graphing data with PHP, when I ran into a wall. Sure, with PHP, you can get all your data (in the words of some famous poet: database, oh database, how do … Continue reading

Posted in Computer Stuff, jQuery | Tagged , , , , , | Leave a comment

Install A Linux Web Server On Your Windows 7 PC With Vagrant

First, I’d like to reference an excellent video tutorial that I used for my initial foray into the Vagrant world. Click here to see that tutorial. Disclaimer: This blog entry does not necessarily follow safe computer/networking procedures. Use this only … Continue reading

Posted in Computer Stuff, MySQL, PHP | Tagged , , , , , , | Leave a comment

MySQL Query Using Derived Temp Table And Left Join Against Self

An example (for a personal project) where I’m using a derived temp table (designated ‘x’) and a table joined against itself, used to find the max timestamp. Thanks, Martin! select tt.*, fkid, max(fldTimeStamp) as `maxTimeStamp`, (count(*)-1) as `calcCount` from tbl_todo … Continue reading

Posted in MySQL | Tagged , , | Leave a comment

Towns In Connecticut – Highlighting Mapped Regions Of An Image With jQuery

Having lived most of my adult life in another part of the country, I am often at a loss when towns/cities are mentioned (say, for instance, in a job posting). Until recently, the only solution was to google or mapquest … Continue reading

Posted in jQuery, PHP | Tagged , , , , | Leave a comment

Auto Image Display With PHP And JQuery

This script will automatically display all the .jpg images in a given folder. The beauty of this script is that it needs no database access. The information for the caption (and alt) are in the images themselves. Easy modifications that … Continue reading

Posted in Computer Stuff, PHP | Tagged , , , , , , | Leave a comment

Google Chromecast Ain’t All That (Nor A Bag Of Chips)

Received my Google Chromecast today, and in spite of the fact that I was tired, I had to try it out. Followed the instructions: Plug into hdmi port on tv, plug in power, switch tv input to hdmi port (that … Continue reading

Posted in Complaints, Computer Stuff | Tagged , , , , | Leave a comment

Trigger Block Logic Or Why I Learned To Love Outlines

As a child they tried to teach me many things that I resisted learning. How could this possibly be useful was my first question? That, and the fact that their rigid teaching methods didn’t consider learning a concept enough, caused … Continue reading

Posted in Computer Stuff, SQL, writing | Tagged , , , , | Leave a comment

Script Geek Talk

action = !understand ? ‘nothing’ : ‘like’;

Posted in Computer Stuff | Tagged | Leave a comment

EHR Experiences So Far

We began our descent into madness, the madness of EHR, around April of 2013. We were informed that the EHR system would go live on July 22, so all vacations would be cancelled. That was the first thing that turned … Continue reading

Posted in Complaints, Computer Stuff, My Opinion | Tagged , , , , , | Leave a comment

Random Password Generator

One way to make a random password generator. See it in action: Random Password Generator Example Hopefully I’ve commented enough in the code to explain it all: <?php /** * generateRandomPasswords.php * @author Robert Newton <lektrikpukeAtYahooDotCom> * if you use/reuse … Continue reading

Posted in Computer Stuff, PHP | Tagged , | Leave a comment