Wednesday, April 09, 2008

pull ids from html forms using the command line

awk '/name=/{ for (i=0;i<NF;i++) if ( substr($i,0,5) == "name=")
print substr($i,7,length($i)-7)}' webformfile.html | uniq

Tuesday, April 08, 2008

mug talks April 8, 2008

Jorge - Banshee Alpha Hotness, music to your ears just pulled the latest code from source

new features
q adds to the play que
or drag and drop into the que
album art area
new look and feel
rhapsady supplies album art
music and video anything gstreamer supports it can play
uses last.fm

Rick - Gnome Do, launcher and beyond



Jim McQ - awk tricks/hacks
simple tasks all the time

awk options pattern action files

default action is print

ex. awk '{print substr($0,148,0)}' sometext.txt | sort | uniq -c | head -20 | sort -nr
awk 'substr($0,148,2) != " " && substr($0,148,2) != "VA" {print substr($0,148,0)}' sometext.txt | sort | uniq -c | head -20 | sort -nr

awk -F, '{print $24}'| head -20

Jay Wren - Boo as a Python-like language on Mono/.Net
missingmethod exists from ruby
optional parenthesis from ruby
block syntax from ruby and lambda from python
"as a duck" typing
can modify compiler to create domain specific languages

Aaron zenoss talk

Mark Ramm - TBD (Something cool/Pythonic)
google app engine + turbogears

Jim Glutting - scripting your system with PHP

Tuesday, January 29, 2008

rss feeds and blog reading

RSS is a great feature used web logs but most people don't know what it is or how it can make their lives easier.

It allows you to subscribe to sites you are interested in reading so that instead of visiting every site you like to read you can read it all from one place. Web browsers (Firefox, Internet Explorer, Seamonkey, opera etc) and email clients(Thunderbird, outlook express etc) both support rss.

if you're interested in a more in depth explanation and instruction for certain programs check out the links below

http://rssexplained.blogspot.com/

Firefox:
http://www.as.ua.edu/etech/tutorials/web_tools/managing_web_feeds/firefox/howto.php

Internet Explorer
http://www.as.ua.edu/etech/tutorials/web_tools/managing_web_feeds/internet_explorer/howto.php

Thunderbird
http://kb.mozillazine.org/Thunderbird_:_FAQs_:_RSS_Basics

Outlook Express (not tested)
http://clibra.wordpress.com/2007/08/25/howto-read-rss-feeds-in-outlook-express/