Skip to main content.
August 29th, 2008

Maryland - How to Access your Articles of Incorporation and Trade Name Online

Just do a search for your company here:
http://sdatcert3.resiusa.org/UCC-Charter/CharterSearch_f.aspx

Don’t make the mistake I did and go to the general MD home page and click around, nothing tells you.

Posted by Greg Pinero (Primary Searcher) as Other at 8:48 AM UTC

No Comments »

August 27th, 2008

Mini Searches with Answers

These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.

Maatkit: a toolkit of utilities and tools for MySQL

Hack MySQL :: Scripts and documents for hacking MySQL

Racker Hacker ยป MySQLTuner v0.9.8

jQuery 1.2 Cheat Sheet :: www.gscottolson.com/weblog/
Looks like the best jQuery cheatsheet out there. I didn't understand Resig's.

jQuery Grid Plugin
Looks like a really good data grid tool

Coding Mess: How to make a simple .wav file with Python
Make a custom wav file in Python. I made it into a utility too! See the comments.

Tags: , , , , , , , , , , , , ,

Posted by Greg Pinero (Primary Searcher) as Uncategorized at 5:00 AM UTC

No Comments »

August 25th, 2008

Mini Searches with Answers

These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.

Eloquent JavaScript — interactive tutorial
An interactive Javascript tutorial. Looks very useful.

Safari on iPhone Now Supports a Touch Interface for Web Apps

obby - Trac
Gobby is a free collaborative editor supporting multiple documents in one session and a multi-user chat. It runs on Microsoft Windows, Mac OS X, Linux and other Unix-like platforms.

Hot Wire Your Car - Wired How-To Wiki
Things to consider: Hot-wiring is illegal if you don't own the car …

Invoices Online Form
Generate HTML invoices online. Really simple, almost useless but still useful?

python memory validator - overview
Would this be useful for solving Python memory leaks? It's real spensive.

iPhone SSH clients reviewed: iSSH, pTerm, and TouchTerm

Tags: , , , , , , , , , , , ,

Posted by Greg Pinero (Primary Searcher) as Uncategorized at 5:00 AM UTC

No Comments »

August 13th, 2008

Mini Searches with Answers

These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.

iPhone Developer FAQ - Mac Forums
A good list of iPhone developer forums.

Find which Celebrity you Most Look Like
I just had this idea for a cool web app, but alas it's already been done!

pyspeech - Google Code
Write a Python program that uses speech recognition. I've got to try it! I wish someone would make one that works on Linux.

Why Does Everyone Speak English in Stargate Atlantis?
The best theories here are that either, everyone learned ancient before going on the expedition and thus everyone is actually speaking that, and the show portrays it as English. The other option is that when Dr. Wier went back in time she taught English to the ancients and they thus taught it to all the worlds in the galaxy.

twitterfeed.com : feed your blog to twitter - post RSS to twitter automatically
I made a twitter account for Utility Mill, and this website will post it's new utilities to twitter via RSS.

Twitter / utility_mill
The twitter page for Utility Mill … or you could just follow Utility Mill's RSS feed on your own. (I don't get Twitter yet, but I'm trying)

Tags: , , , , , , , , , , , ,

Posted by Greg Pinero (Primary Searcher) as Uncategorized at 4:59 AM UTC

No Comments »

August 2nd, 2008

Javascript - How to Make an Image on a Page Refresh Every N Seconds

Here’s a minimal HTML page that will do this. Note that in Firefox I’ve found it doesn’t work for time intervals less than 5 seconds.

Notice that we add a random element to the end of the image URL on each refresh to get around any caching.

<html>
<head>
<script>
	function refreshcam(){
		img = document.getElementById("cam");
		img.src="http://192.168.1.6:8080/cam.jpg?rand=" + Math.random();
	}
</script>
</head>
<body onload="window.setInterval(refreshcam, 5*1000);">
        <p>Welcome!</p>
        <img id="cam" src="http://192.168.1.6:8080/cam.jpg" />
</body>
</html>

Posted by Greg Pinero (Primary Searcher) as Automation, Other at 1:24 PM UTC

No Comments »

« Previous Entries