visitor stats
up home page bottom

French German version Spanish version Italian version

Archive for Blogs

Stumble Upon, and Digg Alerters for Windows - Get Digg and Stumble Upon Alerts In Real Time!

1 Star5 Stars (+5 rating, 1 votes)
Loading ... Loading ...

Wow, ran across these just now. Very cool!

StumbleUpon Alerter

StumbleUpon Alerter is a small tool that sits in the system tray. It keeps an eye on all of your discoveries on StumbleUpon and plays a noise whenever someone reviews or gives your sites a thumbs up. Open the main window to view information about each discovery - including a list of people who have reviewed, thumbed up or thumbed down your sites. More details »

Digg Alerter

Used by some of the influential Digg users. Digg Alerter is a program that sits in your system tray and plays a little noise whenever your submissions are “Dugg”. You can also click on a submission to view a list of people who have dugg and commented on your articles. Click here for more details »

Creators:  http://blog.adamant.com.au/

Edit Filenames and Content with Ruby.

1 Star5 Stars (No Ratings Yet)
Loading ... Loading ...

Very interesting piece of code here. Essentially this will take all .php files, and change their extensions to a .sphp file extension. Then it will replace all instances of ".php" in the files, and replace them with ".sphp" for purposes of linking, and inclusion. Very neat script.

RUBY:
  1. <p style="font-weight: normal; font-family: 'Andale Mono', 'Courier New', Courier, monospace">#!/usr/bin/env ruby</p>
  2. require 'find'
  3.  
  4. require 'fileutils'
  5. <p style="font-weight: normal; font-family: 'Andale Mono', 'Courier New', Courier, monospace"># Used to go through, starting at the directory start_dir and working</p>
  6. <p style="font-weight: normal; font-family: 'Andale Mono', 'Courier New', Courier, monospace"># recursively, and rename all files that end in .php to end in .sphp</p>
  7. <p style="font-weight: normal; font-family: 'Andale Mono', 'Courier New', Courier, monospace"># because the CS admin got a wild hair.  Also goes through all .php</p>
  8. <p style="font-weight: normal; font-family: 'Andale Mono', 'Courier New', Courier, monospace"># and .sphp files and replaces all instances of ".php" in them with</p>
  9. <p style="font-weight: normal; font-family: 'Andale Mono', 'Courier New', Courier, monospace"># ".sphp".</p>
  10. def finder( start_dir )
  11.  
  12.   Find.find( start_dir ) do |path|
  13.  
  14.     if FileTest.file?( path )
  15.  
  16.       if path =~ /\.php$/i
  17.  
  18.         old_name = File.basename( path )
  19.  
  20.         new_name = old_name.gsub( /\.php$/, '.sphp' )
  21.  
  22.         dir = path.gsub( /#{old_name}$/, '' )
  23.  
  24.        
  25.  
  26.         if File.exists?( dir + old_name )
  27.  
  28.           puts "#{dir + old_name} to #{dir + new_name}\n"
  29.  
  30.          
  31.  
  32.           # Since the code is part of a Subversion repository, we use
  33.  
  34.           # the 'svn' command to let Subversion rename the file
  35.  
  36.           system( "svn mv #{dir + old_name} #{dir + new_name}" )
  37.  
  38.         end
  39.  
  40.       elsif path =~ /\.sphp$/i || path =~ /\.php$/i
  41.  
  42.         puts "Replacing instances of '.php' in #{path}\n"
  43.  
  44.         system( %Q{ruby -pe 'gsub(/\\.php/, ".sphp")' -i #{path} } )
  45.  
  46.       end
  47.  
  48.     end
  49.  
  50.   end
  51. <p style="font-weight: normal; font-family: 'Andale Mono', 'Courier New', Courier, monospace">end</p>
  52. finder( '.' )

Source: 3Till7

Get Insight Into Digg’s Bury System With Ajaxonomy’s Bury Recorder.

1 Star5 Stars (No Ratings Yet)
Loading ... Loading ...

David Hurth over at Ajaxonomy have created a pretty cool little web application. Here are the specifics:

If you have been using the popular service Digg you know that it is very easy to submit a story and to see it start to gain traction just to be buried into the dark abyss. What I find particularly frustrating is that you don't know how many people buried the story and the reason for the bury. If you have seen Digg Spy you have noticed that the application does show buries, but you can't just track data for a particular story.

After much frustration Ajaxonomy is now releasing a Bury Recorder application. How the application works is you take the story's URL (This is the URL of the page that the "more" link on the Digg upcoming/popular pages takes you or the page that clicking on the story title takes from your profile i.e. http://digg.com/[story]) and put it into the application and once you click "Watch for Buries" the application will start recording any buries that the story receives. This will allow you to see if your story had 100 diggs and 5 buries before it was permanently buried, or if it was more like 100 diggs and 300 buries. The idea is that you would submit a story and then have the recorder capture any buries from the time that you start the application watching for buries. You'll want to note that in this Beta 1.0 release, so currently you have to leave your machine on and the application open in order to make sure that it continues to capture buries.

Definitely worth checking out, a small program full of ingenuity.I'm fast becoming a regular reader over at Ajaxonomy. I suggest any JS/AJAX programmers do the same.

Link: Get Insight Into Digg's Bury System With Ajaxonomy's Bury Recorder.

 

 

Cheatsheets Galore! One Cheatsheet List To Rule Them All!

1 Star5 Stars (No Ratings Yet)
Loading ... Loading ...

Regardless of how long you've been programming in a language, let's face it, here and there, it'd be nice to just pick up a sheet of paper, view a simple image, click on a single link, and get a good reference table to aid you. In todays time, there are so many languages that people are trying to cram, that they sometimes lose focus, and mix and match, or just dilute them selves so heavily (think of the butter spread to evenly on the bread example), that they know a language, but sometimes just can't recall some of the functions.

Below you will find a list of as many cheat sheets as I could find on the internet. If you have one you've made, or links that you know that contain cheat sheets, let me know via comments. Thanks!

Visual Development

Web Development Cheat Sheets

Databases / SQL Cheat Sheets

Language Cheat Sheets

Version Control Cheat Sheets

Other

Commercially Printed CheatSheets

Be sure to favorite, backlink, pingback, and bookmark this, as I will be adding a ton more shortly.

Update:

If you're looking for some UNIX & Perl Cheat Sheets, among others such as BASH, and GAWK,  check out Peteris Krumins blog. Intersting, well developed cheat sheets.

Linux: M4A to MP3 Convert Shell Script

1 Star5 Stars (No Ratings Yet)
Loading ... Loading ...

 A buddy of mine over at Scottklarr.com wrote a pretty cool shell script to convert a director of .m4a sound files, to mp3 files. Check it out!

Link: Linux: M4A to MP3 Convert Shell Script

Windows Vista Service Pack1 RC1

1 Star5 Stars (No Ratings Yet)
Loading ... Loading ...

 The release candidate 1 for Microsoft Windows Vista has been release by Microsoft. Follow the links below. I personally prefer Windows XP Pro at the moment, and only interact with Windows Vista at work. I have however installed it on a machine at the office, and can say, it is so far stable, and there are a few interesting improvements. Removal of the search in the start menu was a bit of an odd one though. You be the judge.

Download: Microsoft Vista Service Pack 1 RC1

Chris Pirillos  Reaction: One, Two

Unusually Geeky Graffiti

1 Star5 Stars (No Ratings Yet)
Loading ... Loading ...

A recent post over at Web Urbanist shows that even geeks can get into the street crime arena from time to time. This interested particularly because I'm a big fan of street art, and admin over at Stencil Revolution. I can't figure out however, whether or not they are actual 'geeks' going out there, or if certain internet phenoms have become so powerful, that graffiti artists are becoming geeks now too. Who knows?

Source: 7 Unusually Geeky Street Graffiti Projects: From Digitized Spray-Painting to Physical Hyperlinking

Funny Chris Pirillo Video

1 Star5 Stars (No Ratings Yet)
Loading ... Loading ...

The video poster had this to say about the video:

If you wondered why G4 cut him loose when they took over TechTV, here's a good reason...

Sorry but no. I really enjoy watching Chris Pirillos videos, and watch his stream at live.pirillo.com quite often. You can check out his blog at http://chris.pirillo.com/ as well.