Tag Archives: script

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

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

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

Syncing MySQL Database Between A Mac And PC

I’ve been a long time Mac hater. Recently, though, I broke down and bought a Mac laptop. Being a geek on many levels, I immediately had to set it up as a development server environment. I won’t go into the … Continue reading

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

PHP Calculate Easter

My browser homepage is set to a localhost php calendar that is connected to a database (to display birthdays, events, reminders, data of all sorts). One of the dates I originally found difficult to calculate was Easter. One of the … Continue reading

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

Parsing XML With PHP SimpleXML

Needed to stay busy (a long story) and figured I’d kill two birds with one stone, so I parsed some XML for a friend I used to work with. PHP is my favorite scripting language, so of course I opted … Continue reading

Posted in Computer Stuff | Tagged , , , | 1 Comment

PHP Image Manipulation

I recently played with some of PHP’s built-in image manipulation features and produced a script that will automatically resize, save, and display an image using hash marks to represent each individual pixel (of the image) in either color or black … Continue reading

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

Mail Merge For Something Other Than Letters

First and foremost, I am not saying this is a good use of Mail Merge, nor am I saying that this is anything you should do to make a website. This is only an example of Mail Merge being used … Continue reading

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