Uncategorized

HackNY Hackathon Starter Script

Posted in HackNY, PHP, Tips, Uncategorized, Web Development on April 8th, 2011 by j3nnings – Be the first to comment

My buddy Andrew wanted to be able to hack on something a tomorrow’s HackNY competition. He’s never used PHP before so I wrote him this file to help him make an api call and display it on a web page. I’m assuming that you’ve already got a PHP environment set up somewhere. If not, check out XAMPP.

This file is intended to give new programmers (hackathon or else) something to start hacking on quick. Of course, you would have already needed to set up PHP and a webserver.

This file just makes a simple api request and displays the response. The API for this example is embed.ly, an API for turning normal links (http://…) into embeddable widgets (video players, slideshows, etc) .

The actual code can be found here. you should copy and paste it into an index.php file in your htdocs directory (if using XAMPP).

Rooster.AM: Wake Up To Latest Social Media Updates

Posted in Uncategorized on November 10th, 2010 by admin – Be the first to comment

If you are a social media enthusiast, you probably start your day with logging onto your computer and finding out what the trending topics are. But what if you could do this while you were waking up in bed? RoosterAM helps you do exactly that.

http://www.makeuseof.com/dir/roosteram-latest-social-media-trends/

Rooster.am presentation at NYTM November 2nd, 2010

Posted in Uncategorized on November 7th, 2010 by admin – Be the first to comment

Watch live streaming video from nytechmeetup at livestream.com

The duct tape of the universe

Posted in Uncategorized on January 9th, 2010 by admin – Be the first to comment

My initial move from PHP to C# almost killed me. In C#, arrays are just a simple structure with a static size and numeric index. In PHP, arrays are the duct tape of the universe!

http://stackoverflow.com/questions/61401/hidden-features-of-php/64475#64475

A curse

Posted in Uncategorized on January 6th, 2010 by j3nnings – Be the first to comment

PC guys think while they are “trying” to sleep. A curse, as you know…

- Dad

Good Samaritan

Posted in Uncategorized on December 12th, 2009 by admin – Be the first to comment

An awesome email fresh from my inbox.

This email address was created solely to register automatically at thousands of forums for the purposes of spamming forums like yours. Remove my account and any other account registered with my email address!

You should also consider making the password requirements for your forum much more stringent.

Sincerely,

A Random Digilante Who Is Sick Of Forum Spammers From Russia

The sender is right, 22pixels has had an abnormal amount of Russian spam recently. Glad someone is doing something about it.

VentStatus on Your Cell Phone, How it works

Posted in Uncategorized on October 15th, 2009 by j3nnings – Be the first to comment

Above you can test out one of the cooler features of VentStatus, updates on your cell phone. This lets anybody check the status of any server right on the cell phone without internet access. This feature is provided by the free service, Textmarks and is explained in more detail below. To see it in action, try typing VSTAT 75 in the message box on the cell phone simulator above.
read more »

An overview of CodeIgniter

Posted in Uncategorized on October 15th, 2009 by j3nnings – Be the first to comment

You’re interested in this whole new idea of frameworks, but why spend time on the learning curve when the system you already have in place works fine? Well, you might find yourself using the same functions or classes over and over; modifications of simple tools you would think would already exist in PHP.

Well, frameworks are your solution. A framework provides all the standard functions you would (hope would be included) in PHP, as well as a structured format for your files and directories. What are the advantages to this? Well, the code you need to handle cookies, sessions, dates, downloads, uploads, input, output, dates, pagination, templates and most security issues already exists in structured files. The only thing left is to make use of the provided functions.

read more »