Yesterday I listened to [Adam Curry's](http://live.curry.com/) Daily Source Code and the Dave Winer collaboration, [Trade Secrets](http://secrets.scripting.com/).
Last night poked around with [ipodder.org](http://www.ipodder.org) and downloaded all the 'stock' content that came with the [get_enclosures.pl](http://www.ipodder.org/) script.
IT Conversations audio is a gold mine! The only problem is not having enough time to listen to everything that interests me.
I don't have an ipod (or an [Apple ipod + HP](http://h10049.www1.hp.com/music/us/en/ipod_flash.html)), but the car does have a CD player, so get_enclosures may need to be hacked to burn a daily CD.
Tuesday, September 21, 2004
Monday, September 20, 2004
Today's Del.icio.us bookmarks
Shared bookmarks for del.icio.us user MarcN on 2004-09-20
- Hiroette.com ||| Japanese Facemarks(smileys) ||| --
Japanese emoticons Tagged as: [japan reference] - Jeremy's Extensions - SwitchProxy -
Firefox/Mozilla plugin to easily switch proxies Tagged as: [firefox mozilla] - StatTraq --
stats plugin for WordPress; I'm thinking of install it, but the results may be too depressing Tagged as: [stats wordpress] - StatTraq - Block your IP from Being Recorded -
a mod to StatTraq so *my* IP won't be recorded. Tagged as: [*later stats wordpress] - Welcome to threetwoone.org -
Graphical way to show relationships of many different things; how states are connected, christian bible development, Bush dynasty, wall street scandals, etc Tagged as: [graphics reference] - J.O.D's Old Fashioned Black and White Clip Art Collection, Joan O'Donovan --
Genealogy-related 'free' clipart; restrictions are for only personal/non-commerical use, no aggregation Tagged as: [genealogy graphics reference]
Labels:
DailyDelicious
Sunday, September 19, 2004
Today's Del.icio.us bookmarks
Shared bookmarks for del.icio.us user MarcN on 2004-09-19
- SourceForge.net: Project Filelist --
linux app to convert jpg to avi file (better than using ImageMagick's convert?) Tagged as: [graphics linux] - SourceForge.net: Project Info - MakeAVI --
GPL'ed Windows app to convert jpg to avi files Tagged as: [graphics windows] - Fractal Hypnosis --
Cool video of fractals set to Pink Floyd music Tagged as: [music video] - Pixel Perfect Digital 4.0 : Free Image Archive --
Royalty free images, but with some restrictions Tagged as: [graphics reference]
Labels:
DailyDelicious
Saturday, September 18, 2004
Today's Del.icio.us bookmarks
Shared bookmarks for del.icio.us user MarcN on 2004-09-18
- Marc Nozell's mini-blog Yet Another DailyDelicious hack for WordPress --
A simple little hack I based on dailydelicious.phpTagged as: blog delicious selfpromotion wordpress - PixelZilla Homepage --
Nice theme/skin for firefox/mozilla/thunderbird/k-melonTagged as: firefox theme
Labels:
DailyDelicious
Friday, September 17, 2004
Today's Del.icio.us bookmarks
Shared bookmarks for del.icio.us user MarcN on 2004-09-17
- initial Trade Secrets show --
A Dave Winer/Adam Curry collaborationTagged as: audioblog mp3 - Yahoo! Groups : ipodder-dev --
ipodder developer's forumTagged as: audioblog mp3 - Adam Curry's Weblog --
Of mid-80's MTV fameTagged as: audioblog blog - Planet HP --
An internal aggregate of all HP blogs (But inside our firewall, so you no soup for you!)Tagged as: hp inside-the-firewall-so-you-cant-see-it - Trade Secrets Radio: --
A Dave Winer/Adam Curry collaborationTagged as: audioblog blog - Examples - HZ37Land --
Get 'Death of Democracy'! An excellent remix.Tagged as: mp3 remix - ::iLL WiLL PreSS:: HOME OF NEUROTICALLY YOURS, 4Y-RECORDS & MORE. --
funny little flash cartoons, but not appropriate for kidsTagged as: humor - ipodder.org --
windows/mac app to automatically download mp3 files mentioned in RSS feeds. I'd like to see a linux version that downloads and burns to CD so I can pop it in the car's CD player.Tagged as: audioblog mp3 - McSweeney's Internet Tendency: This Bible You Sold Me Is Clearly Defective and I'd Like to Return It, Please. --
Tagged as: humor religion - ProFont for Windows, for Macintosh, for Linux --
Little tiny fontTagged as: fonts - Viewfinder Design --
Some wordpress templates. I really should use a better one than the default...Tagged as: wordpress
Labels:
DailyDelicious
Yet Another DailyDelicious hack for WordPress
I wanted a nice simple way to mirror my daily bookmarks that I've added to [del.icio.us](http://del.icio.us) into [WordPress](http://www.wordpress.org)
Stephen Eyre's [dailydelicious](http://www.dot-totally.co.uk/dailydelicious.txt) was close, but
not exactly they way I wanted it. He used the RSS feed, but that doesn't give a good daily cutoff.
So, I present Yet Another Daily Delicious php script: [yadd.php](http://www.nozell.com/marc/blog/data/yadd-1.0.TXT).
It asks for just today's bookmarks using the published api, parses the XML, generates nicely formatted HTML and creates a WordPress entry.
Here is the writeup from the code:
- - -
Stephen Eyre's [dailydelicious](http://www.dot-totally.co.uk/dailydelicious.txt) was close, but
not exactly they way I wanted it. He used the RSS feed, but that doesn't give a good daily cutoff.
So, I present Yet Another Daily Delicious php script: [yadd.php](http://www.nozell.com/marc/blog/data/yadd-1.0.TXT).
It asks for just today's bookmarks using the published api, parses the XML, generates nicely formatted HTML and creates a WordPress entry.
Here is the writeup from the code:
- - -
This is yadd.php V1.0 by Marc Nozell (marc@nozell.com) based on
Stephen Eyre's dailydelicious
(http://www.dot-totally.co.uk/dailydelicious.txt)
See http://www.nozell.com/blog/ for the latest version of
'yet another daily delicious' (yadd.php)
USAGE:
1) Edit the section below. At the very least use your del.icio.us
username and password ($del_user/$del_password)
2) Put there file somewhere on the server where you run WordPress.
3) Arrange for this page to be hit once a day, say 11:30ish your
local time. del.icio.us seems to track UTC so depending on which
timezone you live in, some bookmarks from your yesterday may show
up. Consider using a simple cronjob that looks like this:
30 23 * * * $HOME/bin/yadd.sh
where yadd.sh looks like this:
#!/bin/bash
curl http://www.yoursite.com/yadd.php
4) In the morning edit the entry if you wish. I've tried to generate
pretty HTML so it will be simple to edit the entry.
THINGS TO KEEP IN MIND
Anyone that hits the URL for this script will cause your current
bookmarks to be dumped into WordPress. Clearly this is not
desirable.
You have some options. The easiest is to keep this URL 'secret'.
Name it something unusual and put it in a non-obvious place.
Remember that if you display your web hit stats, the url will be
exposed. A better solution to use .htaccess to limit access. If
you do that remember to update the url wget uses to include the
username/password, something like this:
curl http://someuser:somepassword@www.yoursite.com/yadd.php
Enjoy,
-marc
Labels:
blog,
DailyDelicious,
General,
useful,
web
funny NSFW story
A few weeks ago I was at work reading a blog on Microsoft's developer's blog site about some lessons learned on a particular development project. Boring project management stuff really. The second comment was along the lines of:
"Good stuff. I've just finished defending my masters paper on this same topic. Click here to read it http://www.some-reasonable-looking-site/lastmeasure"
Bam! Tons of popups, moving, resizing windows, really disturbing porn/violent images all over the place, but the best part was the sound -- at the loudest volume -- 'HEY EVERYBODY! I'M LOOKING AT GAY PORN!' repeated over and over and over.
Fortunately I had headphones on at the time and running Firefox on Linux, so killing it was simple.
Sadly, it appears the MS blogger has removed the comment from his site and I've X'ed out the
offending site. However if you are clever with google, you'll be able to find where it has moved to.
Here is the email I passed on to some (now former) friends....
Subject: Hey everybuddy!
Here is a cool new site. Make sure you have the volume turned way
up -- it may be hard to hear.
http://XXX.XX/lastmeasure/
It works best in a work environment.
NOT!
Best viewed NOT at work and with the headphones on.
I got the link from one of the comments
of the article "21 Rules of Thumb “ How Microsoft develops its Software"
http://blogs.msdn.com/David_Gristwood/archive/2004/06/24/164849.aspx
This is a much more obnoxious version of the previous URL --
http://XXX.XXXXXXX.XXX/~lysol/lm.swf
"Good stuff. I've just finished defending my masters paper on this same topic. Click here to read it http://www.some-reasonable-looking-site/lastmeasure"
Bam! Tons of popups, moving, resizing windows, really disturbing porn/violent images all over the place, but the best part was the sound -- at the loudest volume -- 'HEY EVERYBODY! I'M LOOKING AT GAY PORN!' repeated over and over and over.
Fortunately I had headphones on at the time and running Firefox on Linux, so killing it was simple.
Sadly, it appears the MS blogger has removed the comment from his site and I've X'ed out the
offending site. However if you are clever with google, you'll be able to find where it has moved to.
Here is the email I passed on to some (now former) friends....
Subject: Hey everybuddy!
Here is a cool new site. Make sure you have the volume turned way
up -- it may be hard to hear.
http://XXX.XX/lastmeasure/
It works best in a work environment.
NOT!
Best viewed NOT at work and with the headphones on.
I got the link from one of the comments
of the article "21 Rules of Thumb “ How Microsoft develops its Software"
http://blogs.msdn.com/David_Gristwood/archive/2004/06/24/164849.aspx
This is a much more obnoxious version of the previous URL --
http://XXX.XXXXXXX.XXX/~lysol/lm.swf
Subscribe to:
Posts (Atom)