Webdev

Weather Tube Report

Weather Tube Report displays the weather condition and a selection of videos from YouTube, based on the zip code you enter. The videos are selected on the fly based on predetermined search parameters. The weather condition dictates these parameters – which include musical styles and instruments – to search for suitable videos. The weather condition also determines the background color.

The name is inspired by the band Weather Report and some of their song names are used to produce the gibberish text to display the temperature and condition.

Weather Tube Report uses the Yahoo! Weather API to retrieve weather information, the YouTube API to retrieve videos and a database to store the search parameters.

Built with PHP, MySQL, HTML, CSS and jQuery.

Check it out here!

Feel free to leave me comments, questions, feedback, bug reports below. Enjoy!!


Categorized as Development, @Parsons, Spring10, Dynamic Interfaces, Fun Experiments, Mashups, @Parsons, Spring10, Webdev

Google Launches a Public DNS Service

Google Launches a Public DNS Service here are instructions on how to set it up. I can’t wait to check it out.


Categorized as Development, Webdev

Zen Coding Auto – Webmonkey

Zen Coding Auto – Webmonkey.

Zen HTML coding. Looks like this is worth a shot.

Zen Coding v0.5 from Sergey Chikuyonok on Vimeo.


Categorized as Development, Tools, Webdev

Terminal commands

Basic SVN and other terminal commands that I use all the time!

#-----------------
# Import db
#-----------------
$ ./mysql -u root --password=root dbname < sqlfilename.sql 

#-----------------
# Export db
#-----------------
$ ./mysqldump -u root --password=root dbname > dbbackupname.sql

#-----------------
# List hidden files
#-----------------
$ ls -a
$ ls -la

#-----------------
# Delete file/folders
#-----------------
$ rm -rfi [path/filename]

#-----------------
# Untar files
#-----------------
$ tar -zxvf filename.tar.gz

#-----------------
# Tar files
#-----------------
$ tar cjf filename.tar.bz2 /path/to/drupal/

#-----------------
# list file permissions
#-----------------
$ ls -l
$ sudo chmod 777 file.name

#-----------------
# copy directory
#-----------------
$ cp -rp /path/to/directory /path/to/backupdir

#-----------------
# start svn server
#-----------------
$ sudo -u www /sw/bin/svnserve -d -r /Users/al/svnrepo

#-------------------
# checkout a project
#-------------------
$ svn checkout svn://localhost/project1

#---------------
# basic commands
#---------------
$ svn up             # update
$ svn add [file]     # add
$ svn ci -m "msg"    # commit
$ svn log

#--------------------------
# file/directory management
#--------------------------
$ svn copy foo bar
$ svn mkdir foo
$ svn mv foo bar
$ svn rm foo

#------
# other
#------
$ svn status
$ svn diff
$ svn revert
$ svn info
$ svn list URL
$ svn list svn://localhost/

from: Basic SVN commands | devdaily.com.


Tagged as , + Categorized as Development, Webdev

Modernizr

Modernizr.

A JavaScript library that helps take advantage of CSS3, HTML5 while still maintaining a fine level of control over older browsers that don’t support these. You can use and style elements from the HTML 5 spec, even in Internet Explorer!


Categorized as Webdev

LESS – Leaner CSS

I’ve been waiting for this thank you! Can’t wait to start messing with it.

LESS – Leaner CSS.


Categorized as Apps, Development, Webdev