\r\n\r\n\r\n
\r\nscreen shot of main configure options for producer
\r\n\r\n\r\nScreenshot\r\n
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(122,'2006-07-04','Getting started with PHP on windows',975,'','Think you might be interested in learning PHP? Here is a\r\nquick show to help you get started. In this show I go over most\r\neverything you need to do or aquire in order to start programming PHP.\r\n\r\n',37,0,1,'CC-BY-NC-SA','',0,0,1),
(123,'2006-07-05','Python',1180,'','Learning with python though examples
\r\n\r\nMicrosoft Windows XP [Version 5.1.2600]
\r\n(C) Copyright 1985-2001 Microsoft Corp.
\r\nC:\\\\>python
\r\nPython 2.4.3 (#69, Mar 29 2006, 17:35:34) [MSC v.1310 32 bit (Intel)] on win32
\r\nType \\\"help\\\", \\\"copyright\\\", \\\"credits\\\" or \\\"license\\\" for more information.
\r\n>>> print \\\"HELLO\\\" # Number signs will comment
\r\nHELLO
\r\n\r\n
\r\n>>> name = \\\"Cotton\\\"
\r\n# the variable \\\"name\\\" has been defined to the string \\\"Cotton\\\"
\r\n>>> def hello():
\r\n... print \\\"Hello there, %s\\\"%name
\r\n...
\r\n# hello() is now a function
\r\n>>> hello()
\r\nHello there, Cotton
\r\n\r\n
\r\n# alittle more complicated
\r\n
\r\n>>> def hello2(user): # we now made \\\"user\\\" and argument.
\r\n... print \\\"Hello there, %s\\\"% user
\r\n...
\r\n>>> hello2()
\r\n# U cannot call hello2(user) without an argument.
\r\nTraceback (most recent call last):
\r\n File \\\"\\\", line 1, in ?
\r\n\r\nTypeError: hello2() takes exactly 1 argument (0 given)
\r\n
\r\n>>> hello2(\\\"infonomicon\\\")
\r\nHello there, infonomicon
\r\n
\r\n>>> nicks = [\\\"John\\\",\\\"Billy\\\", \\\"Python\\\", \\\"Cotton\\\", \\\"twat\\\"] #nicks has been defined as a list
\r\n>>> nicks
\r\n[\\\'John\\\', \\\'Billy\\\', \\\'Python\\\', \\\'Cotton\\\', \\\'twat\\\']
\r\n>>> for i in nicks:
\r\n... hello2(i)
\r\n\r\n...
\r\nHello there, John
\r\nHello there, Billy
\r\nHello there, Python
\r\nHello there, Cotton
\r\nHello there, twat
\r\n
\r\n# For more help, visit http://www.ibiblio.org/obp/thinkCSpy/ That site has helped me tremendously!
\r\n# Email me cbmailone[at]gmail[dot]com
\r\nGreat Python Tutorials:
\r\nhttp://www.ibiblio.org/obp/thinkCSpy/
\r\nhttp://www.ibiblio.org/g2swap/byteofpython/read/index.html
\r\nhttp://diveintopython.org/toc/index.html
Bluecasing: War Nibbling, Bluetooth and Petty Theft\r\n',9,0,1,'CC-BY-NC-SA','',0,0,1),
(125,'2006-07-16','Authentication With Apache',421,'','No notes submitted.',8,0,1,'CC-BY-NC-SA','',0,0,1),
(126,'2006-07-18','Caring for thumbdrives',1300,'','Everyone loves thumbdrives or otherwise USB data storage\r\ndevices. The moral of this story is be responsible & employ\r\nencryption.\r\n\r\nTrue Crypt can be used to encrypt practically anything, anywhere.\r\nSteve Gibson from Security Now covers True Crypt in podcast Episode\r\n#41.\r\n\r\nLexar sells a thumb drive that comes ready with encryption. Lexar\\\'s\r\nJump Drive Secure.',37,0,1,'CC-BY-NC-SA','',0,0,1),
(127,'2006-07-23','Getting Started With Snort',189,'','Snort is included with SuSE but not Red Hat. If you need it (or you want to upgrade), download the source distribution from http://www.snort.org and unpack it:\r\n
\r\n$ tar xvpzf snort-*.tar.gz\r\n
\r\nThen compile it:\r\n
\r\n$ cd `ls -d snort-* | head -1`
\r\n$ ./configure
\r\n$ make\r\n
\r\nand install the binary and manpage as root:\r\n
\r\n# make install\r\n
\r\nNext, create a logging directory. It should not be publicly readable, since it will contain potentially sensitive data:\r\n
\r\n# mkdir -p -m go-rwx /var/log/snort\r\n
\r\nFinally, install the configuration files and rules database:\r\n
\r\n# mkdir -p /usr/local/share/rules
\r\n# cp etc/* rules/*.rules /usr/local/share/rules
',38,0,1,'CC-BY-NC-SA','',0,0,1),
(128,'2006-08-01','Retreating From Tech In Style',574,'','No notes submitted.',11,0,1,'CC-BY-NC-SA','',0,0,1),
(129,'2006-08-03','Building Packages for Arch Linux',1532,'','Building Packages for Arch Linux
\r\n\r\n\r\nFor more information on building Arch Packages, consult the Arch Build System How-to on the Arch Wiki.
\r\n\r\nThe following is a sample PKGBUILD file for building MuSE. Note, the source file was on my system, so I did not specify a url for the source and have the package build system pull the source down from the server.
\r\n\r\npkgname=MuSE
\r\npkgver=0.9.2
\r\n\r\npkgrel=1
\r\npkgdesc=\\\"MuSE is an application for the mixing, encoding, and network streaming of sound: it can mix up to 6 encoded audio bitstreams (from files or network, mp3 or ogg) plus a souncard input signal, the resulting stream can be played locally on the sound card and/or encoded at different bitrates, recorded to harddisk and/or streamed to the net. When sent to a server, the resulting audio can be listened thru the net by a vast number of players available on different operating systems.\\\"
\r\nurl=\\\"http://muse.dyne.org/\\\"
\r\nlicense=\\\"gnu/gpl\\\"
\r\ndepends=(\\\'lame\\\' \\\'libogg\\\' \\\'libvorbis\\\' \\\'ncurses\\\' \\\'gtk\\\' \\\'libsndfile\\\')
\r\nmakedepends=()
\r\nconflicts=()
\r\nreplaces=()
\r\nbackup=()
\r\n\r\ninstall=
\r\nsource=($pkgname-$pkgver.tar.gz)
\r\nmd5sums=()
\r\n
\r\nbuild() {
\r\n cd $startdir/src/$pkgname-$pkgver
\r\n ./configure --prefix=/usr
\r\n make || return 1
\r\n\r\n make DESTDIR=$startdir/pkg install
\r\n}
\r\n',7,0,1,'CC-BY-NC-SA','',0,0,1),
(130,'2006-08-06','UltraVNC',680,'','http://ultravnc.sf.net
\r\nhttp://www.no-ip.com
\r\nhttp://www.dyndns.com
\r\nhttp://www.rmccurdy.com/stuff/twat_SC_VNC.txt Example code bat file.
\r\n\r\nhttp://daymarerecords.com/music/AwwTistic Music I produced that is in the show
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(131,'2006-08-07','Firefox Tips',415,'','Go to about:config and right click and go to new --> boolean and set the preference name to config.trim_on_minimize and set the boolean value to true.\r\n
\r\nNow go to task manager -->process tab-->and look for firefox.exe and watch the memory usage drop when you minimize. I will have the show notes on my site, www.i-trash.org if you missed anything.
\r\n\r\n',40,0,1,'CC-BY-NC-SA','',0,0,1),
(132,'2006-08-08','Office 2003 Voice recognition review',566,'','
Office 2003 bug fixes\r\n
http://www.tau.ac.il/~itamarez/sr/mssr-2003.htm \r\n
\r\n
voice recognition in Chinese \r\n
http://office.microsoft.com/en-gb/assistance/HA010347511033.aspx ',39,0,1,'CC-BY-NC-SA','',0,0,1),
(133,'2006-08-09','XPlite and 2000lite',449,'','Lite PC\r\n
\r\nhttp://www.litepc.com/xplite.html',41,0,1,'CC-BY-NC-SA','',0,0,1),
(134,'2006-08-10','Apple Widgets',521,'','Very simple dissection of an apple widget.\r\n\r\nDownload droops\\\' example at\r\n
\r\ninfonomicon.org/widgets\r\n',1,0,1,'CC-BY-NC-SA','',0,0,1),
(135,'2006-08-13','How to Find a Job Online',504,'','No Show notes',36,0,1,'CC-BY-NC-SA','',0,0,1),
(136,'2006-08-14','Denial of Service',545,'','Wikipedia entry on Denial of Service
\r\nhttp://en.wikipedia.org/wiki/Denial-of-service_attack \r\n
\r\nTcp Syn Floods
\r\nhttp://www.iss.net/security_center/advice/Exploits/TCP/SYN_flood/default.htm \r\n
\r\nLand Attack wikipedia
\r\n http://en.wikipedia.org/wiki/LAND ',9,0,1,'CC-BY-NC-SA','',0,0,1),
(137,'2006-08-15','Securing the Asterisk Manager',615,'','No shownotes yet, i\\\'ll have a screenshot guide ready by the weekend and edit the shownotes when it\\\'s up. It should be straightforward enough anyways though.',12,0,1,'CC-BY-NC-SA','',0,0,1),
(138,'2006-08-17','Soft Moding an Xbox',592,'','No show notes',24,0,1,'CC-BY-NC-SA','',0,0,1),
(139,'2006-08-22','Honeypots',412,'','Honeypots (part 1 of 2)\r\n
\r\n
\r\nIn computer terminology, a honeypot is a trap set to detect, deflect or in some manner counteract attempts at unauthorized use of information systems. Generally it consists of a computer, data or a network site that appears to be part of a network but which is actually isolated and protected, and which seems to contain information or a resource that would be of value to attackers. A honeypot that masquerades as an open proxy is known as a sugarcane.
\r\n
\r\nhttp://en.wikipedia.org/wiki/Honeypot\r\n
\r\n
\r\n\r\n',38,0,1,'CC-BY-NC-SA','',0,0,1),
(140,'2006-08-23','Running 32 bit apps in 64 bit Linux',544,'','http://www.getautomatix.com \r\n
\r\nhttp://process-of-elimination.net/wiki/Ubuntu_32bit_CHROOT_for_AMD64 http://www.debian-administration.org/articles/356\r\n\r\n
\r\nhttp://www.ubuntuforums.org/showthread.php?t=191205\r\n
\r\nhttp://forums.gentoo.org/viewtopic-t-221361.html\r\n
\r\n
\r\n\r\n\r\n\r\n',11,0,1,'CC-BY-NC-SA','',0,0,1),
(141,'2006-08-24','RSI - Repetitive Stress Injury',719,'','RSI Help\r\n
\r\nWorkrave - Linux & Windows\r\n
\r\nAntiRSI - OS X App\r\n
\r\n
',7,0,1,'CC-BY-NC-SA','',0,0,1),
(142,'2006-08-27','Writely',512,'','http://www.writely.com/\r\n
\r\n
',12,0,1,'CC-BY-NC-SA','',0,0,1),
(143,'2006-08-28','CBBot',768,'','No Show notes',35,0,1,'CC-BY-NC-SA','',0,0,1),
(144,'2006-08-29','Nessus',355,'',' Example Nessus output \r\n
\r\n
\r\nCGI Examples \r\n
\r\n
\r\n http://en.wikipedia.org/wiki/Nessus_(software)\r\n
\r\n
\r\n http://www.nessus.org/ ',36,0,1,'CC-BY-NC-SA','',0,0,1),
(145,'2006-09-04','Audio engineering',331,'','No Show Notes',42,0,1,'CC-BY-NC-SA','',0,0,1),
(146,'2006-09-05','Micropower TV',937,'','http://freeradio.org/\r\n
\r\n
\r\nhttp://fcc.gov/',43,0,1,'CC-BY-NC-SA','',0,0,1),
(147,'2006-09-06','VMware Player',799,'','
\r\nhttp://www.vmware.com/products/player/\r\n
\r\n
',44,0,1,'CC-BY-NC-SA','',0,0,1),
(148,'2006-09-07','In the Payphone Lounge',238,'','featuring Jason Scott and Strom Carlson. Music:\r\n\\\"Cut\\\" by Nika Japaridze \r\n
\r\nhttp://www.archive.org/details/rest026',13,0,1,'CC-BY-NC-SA','',0,0,1),
(149,'2006-09-10','Wireless Security',724,'','No Show Notes',35,0,1,'CC-BY-NC-SA','',0,0,1),
(150,'2006-09-12','Vpn\\\'s',693,'','
\r\nShow Notes \r\n
\r\n
',19,0,1,'CC-BY-NC-SA','',0,0,1),
(151,'2006-09-13','Skiddie Baiting',477,'','
\r\nhttp://irongeek.com/i.php?page=security/skiddy-baiting ',9,0,1,'CC-BY-NC-SA','',0,0,1),
(152,'2006-09-14','Dynamic DNS',834,'','Show Notes',40,0,1,'CC-BY-NC-SA','',0,0,1),
(153,'2006-09-18','How to make your own xbox usb adpapter',268,'','No Show Notes',24,0,1,'CC-BY-NC-SA','',0,0,1),
(154,'2006-09-20','Sourcemage',316,'','
\r\n http://www.sourcemage.org/ \r\n
\r\n
',41,0,1,'CC-BY-NC-SA','',0,0,1),
(155,'2006-09-21','Cross Site Scripting',357,'','
Link to full shownotes
\r\nCgisecurity.com: Cross Site Scripting questions and answers
\r\nCross-site scripting - Wikipedia entry
\r\nSecLists.org Security Mailing List Archives
\r\nTWAT ep. 33 - SQL Injection, by Livinded
\r\nXSS (Cross Site Scripting) Cheat Sheet
\r\nSecurity Now Episodes
\r\nNoScript Plugin for Firefox\r\n
\r\n
',45,0,1,'CC-BY-NC-SA','',0,0,1),
(156,'2006-09-24','Safari Bookshelf',616,'','
\r\n http://safari.oreilly.com/ \r\n
\r\n
',7,0,1,'CC-BY-NC-SA','',0,0,1),
(157,'2006-09-25','SnortSam',963,'','
\r\n http://www.rmccurdy.com/stuff/TWAT/snort/ \r\n
\r\n
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(158,'2006-09-26','NirCmd',365,'','
\r\nNirCmd info page:
\r\nhttp://www.nirsoft.net/utils/nircmd.html\r\n
\r\n\r\n\r\nNirCmd download link (zip format):
\r\nhttp://www.nirsoft.net/utils/nircmd.zip\r\n
\r\n\r\n\r\nNirCmd help/command reference online:
\r\nhttp://www.nirsoft.net/utils/nircmd2.html#using\r\n
',46,0,1,'CC-BY-NC-SA','',0,0,1),
(159,'2006-09-27','Cygwin and Bash scripting',1472,'','No Show Notes',81,0,1,'CC-BY-NC-SA','',0,0,1),
(160,'2006-09-28','RockBox Open Source Jukebox firmware',483,'','ROCKBOX - OPEN SOURCE JUKEBOX FIRMWARE\r\nhttp://www.rockbox.org/ \r\n\r\n\r\n\r\nPresently works on\r\n * Archos: Jukebox 5000, 6000, Studio, Recorder, FM Recorder, Recorder V2 and Ondio\r\n * iriver: H100 and H300 series\r\n * iriver: H10 series\r\n * Apple: iPod 4th gen (grayscale and color), 5th gen (Video), Nano and Mini 1st/2nd gen\r\n * iAudio: X5 (including X5V and X5L)\r\n * Additional models are in development \r\n\r\nReach me at ksmurf [at] gmail [dot] com if you have any questions or comments
',21,0,1,'CC-BY-NC-SA','',0,0,1),
(161,'2006-10-01','Fedora Frog',690,'','
\r\nFedora Frog
\r\n http://easylinux.info/wiki/Fedora_frog
\r\n
\r\nother handy guides to setting up Fedora Core 5
\r\n http://www.gagme.com/greg/linux/fc5-tips.php
\r\n
',23,0,1,'CC-BY-NC-SA','',0,0,1),
(162,'2006-10-02','Basic Intro to Gimp',807,'','
\r\nhttp://www.gimp.org/\r\n
\r\n
\r\n http://gimp-savvy.com/BOOK/index.html \r\n
\r\n
',47,0,1,'CC-BY-NC-SA','',0,0,1),
(163,'2006-10-03','Vpn part 2',456,'','
\r\n Show Notes \r\n
\r\n
',19,0,1,'CC-BY-NC-SA','',0,0,1),
(164,'2006-10-04','Beginners guide to network Recon with Nm',401,'','Fyodor\\\'s chapter on \\\"How to Own a Continent\\\"
\r\nman nmap - Nmap man page
\r\nKismet
\r\nKismac
\r\nWikipedia, Subnetworking',45,0,1,'CC-BY-NC-SA','',0,0,1),
(165,'2006-10-05','Wake On Lan',339,'','Wikipedia Article',12,0,1,'CC-BY-NC-SA','',0,0,1),
(166,'2006-10-08','Eggdrop',222,'','
\r\nhttp://www.eggheads.org/
\r\n http://en.wikipedia.org/wiki/Eggdrop \r\n
\r\n
',38,0,1,'CC-BY-NC-SA','',0,0,1),
(167,'2006-10-09','Wireless Attacks for Dummies',641,'','No Show Notes',46,0,1,'CC-BY-NC-SA','',0,0,1),
(168,'2006-10-12','Newsgroup Reader',362,'','No Show Notes',36,0,1,'CC-BY-NC-SA','',0,0,1),
(169,'2006-10-15','GPS and Phreaknic',567,'','
\r\n Irongeek\\\'s GPS article \r\n
\r\n
',9,0,1,'CC-BY-NC-SA','',0,0,1),
(170,'2006-10-17','Basics of Supercomputers',333,'','No Show Notes',48,0,1,'CC-BY-NC-SA','',0,0,1),
(171,'2006-10-18','Custom Firefox search bar extension',478,'','
\r\nInspired by http://wiki.archlinux.org/index.php/Firefox_Tips_and_Tweaks
\r\n\r\n
\r\n
\r\nClosing Music Anxiety of Influence - Insomniac
http://www.anxietyofinfluence.ca/ \r\n',21,0,1,'CC-BY-NC-SA','',0,0,1),
(172,'2006-10-23','Torrent Flux',441,'','Get Torrent Flux at \r\n\r\ntorrentflux.com
\r\n
\r\nget torrent flux b4rt
\r\nhttp://tf-b4rt.berlios.de/features.html
\r\n
\r\nand a nice howto at
\r\nhttp://www.howtoforge.com/ubuntu_lamp_torrentflux_vmware_p2
\r\n
\r\n\r\nI start you on page 2 because this guide is how to make a vmware appliance of torrentflux.
\r\nIf you want a vmware appliance just go back to page one and start there.
\r\n
\r\nIf you want to implent torrentflux-b4rt instead of torrentflux the steps should be the same but\r\na do warn to try at your own risk on either of these.\r\n',24,0,1,'CC-BY-NC-SA','',0,0,1),
(173,'2006-10-24','Bash History and Tab completion',891,'','Bash History and Tab Completion
\r\n\r\nwhen you log in the first time bash reads:\r\n
\r\n- /etc/profile
\r\n- .profile (if exists in home dir)
\r\n- .bash_profile (if exists in home dir)
\r\n
\r\n\r\nnon-login shells read:\r\n\r\n - .bashrc (if it exists)
\r\n
\r\n\r\n\r\nIf you want to increase your history size put this in your .bash_profile:\r\n
export HISTSIZE=1000
\r\n\r\nYou may want to also put that in your .bashrc for subsequent shells from your\r\nlogin shell, because this value will not be set until you log out and back in again. You can also \r\nissue export HISTSIZE=1000 in the shell to increase this, but value will not be set for any other or\r\nsubsequent shells started from your session.\r\n\r\n',7,0,1,'CC-BY-NC-SA','',0,0,1),
(174,'2006-10-30','Halloween Remix',218,'','
\r\nA little bit different of a show today basically just me fooling around in audacity playing with some mp3\\\'s hopefully you\\\'ll reconize most of the music
',39,0,1,'CC-BY-NC-SA','',0,0,1),
(175,'2006-11-01','Potato Cannon',724,'','
\r\n Potato Cannon Picture\r\n
\r\n
',3,0,1,'CC-BY-NC-SA','',0,0,1),
(176,'2006-11-02','Network Filesystems',1039,'','
\r\nSamba
\r\nDisable Printing in Samba
\r\nsshFS
\r\nman exports
\r\nman nfs
\r\n
\r\n
',12,0,1,'CC-BY-NC-SA','',0,0,1),
(177,'2006-11-06','Useful Utilities',627,'','
\r\n List of Utilities \r\n
\r\n
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(178,'2006-11-07','Model M Keyboard Lovefest',461,'','Model M (currently down)
\r\nhttp://www.modelm.org/
\r\n
\r\n\r\nModel M Keyboard on Wikipedia
\r\nhttp://en.wikipedia.org/wiki/IBM_Model_M_keyboard
\r\n
\r\n\r\nCare and feeding of an IBM Model M keyboard
\r\n http://www.preater.com/modelm/
\r\n
\r\n\r\n\r\nClicky Keyboards
\r\n http://www.clickykeyboards.com
\r\n
\r\n\r\nDiagram for making your own USB Model M
\r\nhttp://zevv.nl/experiments/ibm-usb/
\r\n
\r\nModern Model Ms
\r\n http://pckeyboards.stores.yahoo.net/keyboards.html
\r\n
\r\n',9,0,1,'CC-BY-NC-SA','',0,0,1),
(179,'2006-11-09','Introduction to e-Learning and SCORM',455,'','No Show Notes',46,0,1,'CC-BY-NC-SA','',0,0,1),
(180,'2006-11-12','Dynamics Processing',476,'','No Show Notes',42,0,1,'CC-BY-NC-SA','',0,0,1),
(181,'2006-11-13','Firefox 2.0 Tips and Tricks',1461,'','\r\n\r\n Show Notes ',40,0,1,'CC-BY-NC-SA','',0,0,1),
(182,'2006-11-15','OpenBSD',565,'','No Show Notes',19,0,1,'CC-BY-NC-SA','',0,0,1),
(183,'2006-11-19','Jokosher',667,'','
\r\nThis episode was recorded and mixed to wav entirely with Jokosher. I then used lame to record the mp3, as I usually like to do. The last second of audio was cut off and try as I might, could not get it to export this last second, but you did not miss anything. Give jokosher a try and support the Jokosher Community. This has the the potential to be a killer audio app for the FOSS community.
\r\n
\r\n
',7,0,1,'CC-BY-NC-SA','',0,0,1),
(184,'2006-11-20','Bad Things',1370,'','
\r\n Show Notes \r\n
',35,0,1,'CC-BY-NC-SA','',0,0,1),
(185,'2006-11-29','Twat Radio',60,'','No need to listen to this one guys We will be taking the month of december off to get more backup episodes and more monthly hosts If anyone wants to help out as a monthly host or just sumbit an episode please email us at twat.admin -at- gmail /dot/ com. I want to thank all our hosts for there hard work and hope everyone has a good holiday season.\r\n
\r\n-Enigma ',39,0,1,'CC-BY-NC-SA','',0,0,1),
(186,'2007-01-01','SciTE snippets',642,'','A quick intro to SciTE snippets. Touch base on why you should use them, what they do, and how to install it. Any questions just ask my on IRC, I\\\'m always there. Freenode #infonomicon BinRev #binrev
\r\nSciTE Website\r\n
\r\nsnippets.lua
\r\nSciTE Website\r\n
ruby.lua
\r\nMy ruby.lua
',49,0,1,'CC-BY-NC-SA','',0,0,1),
(187,'2007-01-02','Lockpicking',1140,'','\r\nBuy lockpicks & bumping tools: www.lockpicks.com
\r\n\r\nLocksport forums:
\r\nEZ Picking
\r\nLockpicking 101
\r\nLock Picker Network
\r\n\r\nLocksport clubs:
\r\nTOOOL
\r\nLockSport International
\r\nFraternal Order Of LockSport
\r\n\r\nOther resources:
\r\nLockenpedia
\r\nBlackBag - Blog of Barry \\\"The Key\\\" of TOOOL
\r\n',3,0,1,'CC-BY-NC-SA','',0,0,1),
(188,'2007-01-03','Ruby',436,'','Ruby
\r\nWhy\\\'s Poignant Guide and other references
',12,0,1,'CC-BY-NC-SA','',0,0,1),
(189,'2007-01-08','Pizza, Wii, and OSX',1112,'','No Show notes',50,0,1,'CC-BY-NC-SA','',0,0,1),
(190,'2007-01-10','Twat Remix',431,'','No Show Notes',51,0,1,'CC-BY-NC-SA','',0,0,1),
(191,'2007-01-16','ipod linux',454,'','http://www.ipodlinux.org \r\n
\r\n LTools \r\n
\r\n
',48,0,1,'CC-BY-NC-SA','',0,0,1),
(192,'2007-01-17','htaccess',642,'','http://www.gotroot.com/
\r\n http://www.kuznetsov.uklinux.net/robots-tutorial.php
\r\n http://rmccurdy.com/stuff/TWAT/htaccess
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(193,'2007-01-18','Application Lock on Windows mobile smart phones',350,'','No Show Notes',41,0,1,'CC-BY-NC-SA','',0,0,1),
(194,'2007-01-21','Smoothwall',974,'','IDS = Intrusion Detection System
\r\n http://martybugs.net/smoothwall
\r\n http://www.smoothwall.org/
\r\n http://en.wikipedia.org/wiki/Intrusion-detection_system
\r\n Iptables
\r\n A Little Howto + links to good mods
\r\nForum For Mods
\r\n List Of Mods On forum
\r\nContact Me
',40,0,1,'CC-BY-NC-SA','',0,0,1),
(195,'2007-01-23','Free Online Courses',481,'','Free (Yes, it is free!) Java Programming (with Passion!)Online Course
\r\n
\r\n http://www.javapassion.com/javaintro/
\r\n
\r\nReach me at ksmurf99 {at} gmail {dot} com with any questions or any other good courses
\r\n
\r\n
\r\n',21,0,1,'CC-BY-NC-SA','',0,0,1),
(196,'2007-01-24','Raid Arrays',501,'',' Wiki on Raid Arrays \r\n
\r\nReach me at twat.admin {at} gmail {dot} com with any questions or comments \r\n
\r\n
\r\n
\r\nCorrection: \r\nRAID 0: Striped Set \r\nRAID 1: Mirrored Set \r\n
\r\n
\r\nI switched the two in my recording my mistake thanks to pat and Lord Drachenblut for catching it
\r\n
\r\nThe recording has been corrected \r\n
\r\n
',39,0,1,'CC-BY-NC-SA','',0,0,1),
(197,'2007-01-25','LDAP',410,'','No show Notes',52,0,1,'CC-BY-NC-SA','',0,0,1),
(198,'2007-01-29','GIS and Remote Sensing',1159,'',' http://en.wikipedia.org/wiki/Geographic_information_system
\r\n
\r\n http://grass.itc.it/download/index.php
\r\n
\r\n \r\nhttp://www.geobase.ca/
\r\n
\r\n\r\nhttp://www.dpi.inpe.br/spring/english/index.html
\r\n
\r\n\r\n',18,0,1,'CC-BY-NC-SA','',0,0,1),
(199,'2007-01-30','Slast',402,'',' www.slast.org \r\n
\r\n
',1,0,1,'CC-BY-NC-SA','',0,0,1),
(200,'2007-01-31','200th Episode Special',242,'','This one was done for the twat cd at the last Notacon and hasn\\\'t been release other than on the cd I figured it would be a good special episode for our 200th --Enjoy\r\n
\r\n
\r\nthanks to all of our hosts for their hard work \r\n
\r\n-Enigma',22,0,1,'CC-BY-NC-SA','',0,0,1),
(201,'2007-02-01','Project management and collaboration via Wiki',546,'','MediaWiki
\r\nTWiki
\r\n
',3,0,1,'CC-BY-NC-SA','',0,0,1),
(202,'2007-02-04','Wacom Tablets',461,'',' Linux Wacom Tablet Project
\r\nHelpful xorg.conf example',12,0,1,'CC-BY-NC-SA','',0,0,1),
(203,'2007-02-06','Performace Monitoring with SysStat',696,'','SYSSTAT package for Linux
\r\nSystem performance tuning and performance history tracking is a necessity for Unix hosts that support growing projects and ever demanding users. RRDTool is another package that lets you graphically view this information. Today dosman discusses how to use both packages.\r\n\r\nsysstat
\r\nRRDTool
\r\nNovell\\\'s Linux Monitoring Tool Package
\r\n
\r\n
',3,0,1,'CC-BY-NC-SA','',0,0,1),
(204,'2007-02-07','French for Geeks: How to pick up chicks',1328,'','Seal and the Montreal 2600\r\n
\r\n
',18,0,1,'CC-BY-NC-SA','',0,0,1),
(205,'2007-02-08','Grid Computing',382,'','No Show Notes\r\n\r\n
\r\n
\r\n',48,0,1,'CC-BY-NC-SA','',0,0,1),
(206,'2007-02-12','Esperanto',300,'','No Show Notes',53,0,1,'CC-BY-NC-SA','',0,0,1),
(207,'2007-02-13','You are being watched',557,'','No Show Notes\r\n
\r\n
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(208,'2007-02-15','AJAX',627,'','No Show Notes\r\n
\r\n
',41,0,1,'CC-BY-NC-SA','',0,0,1),
(209,'2007-02-22','Etherboot',1383,'','No Show Notes',54,0,1,'CC-BY-NC-SA','',0,0,1),
(210,'2007-02-25','RFA Remix #1 - Hacker Manifesto',344,'','This clip orginally is from Radio freek america 40 which aired on 12/04/02\r\n\r\n
\r\n
',55,0,1,'CC-BY-NC-SA','',0,0,1),
(211,'2007-03-04','New Projects',514,'',' www.hackerevents.org \r\n
\r\n
\r\n www.eth0enigma.com \r\n
\r\n
\r\n Tampa Binrev meeting \r\n
\r\n
\r\n www.insecuretech.com \r\n
\r\n
\r\n www.wirelink.org \r\n
\r\n
\r\n\r\n',39,0,1,'CC-BY-NC-SA','',0,0,1),
(212,'2007-03-05','SNMP',641,'','No Show Notes\r\n
\r\n
',56,0,1,'CC-BY-NC-SA','',0,0,1),
(213,'2007-03-06','Natural Language Selection and AI',321,'','No Show Notes\r\n
\r\n
',57,0,1,'CC-BY-NC-SA','',0,0,1),
(214,'2007-03-07','VMWare clustering',514,'','No Show Notes',48,0,1,'CC-BY-NC-SA','',0,0,1),
(215,'2007-03-08','Free Dos',402,'','No Show Notes',42,0,1,'CC-BY-NC-SA','',0,0,1),
(216,'2007-03-12','Amazon Simple Storage Services',1024,'','
\r\nSong: Vienna Sausage by Junkbox \r\n',7,0,1,'CC-BY-NC-SA','',0,0,1),
(217,'2007-03-13','Nikto',383,'','No Show Notes',36,0,1,'CC-BY-NC-SA','',0,0,1),
(218,'2007-03-14','SIDs',674,'','',52,0,1,'CC-BY-NC-SA','',0,0,1),
(219,'2007-03-19','Skype Wardialing',1242,'','No Show Notes\r\n
\r\n',58,0,1,'CC-BY-NC-SA','',0,0,1),
(220,'2007-03-20','GIS and iSCSI',1255,'','This is just a rundown of both iSCSI and GFS technologies.\r\nThe relative merits of each are compared against other similar\r\npurpose technologies.
',54,0,1,'CC-BY-NC-SA','',0,0,1),
(221,'2007-03-25','Binrev Remix #1 - Hackermedia',1437,'','this episode is a clip from episode 160 of binary Revolution Radio',1,0,1,'CC-BY-NC-SA','',0,0,1),
(222,'2007-03-26','Apple breaking thru',308,'','apples corporate anthem 1980\\\'s style\r\n
\r\n
',39,0,1,'CC-BY-NC-SA','',0,0,1),
(223,'2007-03-27','Maxivista',831,'','No show notes\r\n
',58,0,1,'CC-BY-NC-SA','',0,0,1),
(224,'2007-03-28','RFA Remix #2 Free Thinking ',659,'','original clip from Radio Freak America #54\r\n
\r\n
',55,0,1,'CC-BY-NC-SA','',0,0,1),
(225,'2007-03-29','Free Router! (till the 31st)',703,'',' show notes
',40,0,1,'CC-BY-NC-SA','',0,0,1),
(226,'2007-04-03','Metasploit 3',740,'','Metasploit Project
\r\nNot much to write up, just take a listen.
\r\nNote: Some of the information is a few weeks out of date, metasploit 3 has been released now and I\'m assuming that the web interface does work correctly.',12,0,1,'CC-BY-NC-SA','',0,0,1),
(227,'2007-04-04','Helix',657,'','\r\n helix \r\n
\r\n autopsy \r\n
\r\n
',39,0,1,'CC-BY-NC-SA','',0,0,1),
(228,'2007-04-05','Vmware lab',437,'','No Show Notes\r\n
\r\n
\r\n',58,0,1,'CC-BY-NC-SA','',0,0,1),
(229,'2007-04-08','NetSnmp',193,'','No Show Notes\r\n
\r\n
',48,0,1,'CC-BY-NC-SA','',0,0,1),
(230,'2007-04-09','Notacon Radio',450,'',' Notaconradio.org \r\n
\r\n
',42,0,1,'CC-BY-NC-SA','',0,0,1),
(231,'2007-04-10','Hosting a Lan Party',1364,'','No Show notes\r\n
\r\n
',56,0,1,'CC-BY-NC-SA','',0,0,1),
(232,'2007-04-12','portable apps',575,'',' http://feeds.rmccurdy.com
\r\n http://en.wikipedia.org/wiki/Friday_the_13th
\r\n http://portableapps.com
\r\n http://cse.msstate.edu/%7Erwm8/hackingU3/
\r\n http://rmccurdy.com/scripts/ftp.txt
\r\n http://rmccurdy.com/scripts/firefox.txt
\r\n
\r\n
\r\nmusic:
\r\nLady Sovereign_Public Warning\\\\06-my_england_192_lame_cbr.mp3
\r\nJoanna_Newsom Peach, Plum, Pear
\r\n
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(233,'2007-04-16','Gigavox Levelator',625,'','Levelator Download
\r\n',7,0,1,'CC-BY-NC-SA','',0,0,1),
(234,'2007-04-17','gtkdialog',550,'','droops talks about gtkdialog, an easy way of adding a gui to your bash scripts and beyond.\r\n\r\ngtkdialog homepage\r\n\r\ngtk example screenshots\r\n\r\ndroops\\\' network manager for twat\r\n',1,0,1,'CC-BY-NC-SA','',0,0,1),
(235,'2007-05-07','BBS ',2201,'','a good interview about the history of BBS\\\'s ',59,0,1,'CC-BY-NC-SA','',0,0,1),
(236,'2007-05-08','Notacon wrapup',1349,'','Notacon
\r\nBlockParty Wrapup
\r\nIrongeek\\\'s video from Notacon 4
\r\nNotacon bathroom cam
\r\n Hackers on a Plane
\r\nHaycon
\r\n
',3,0,1,'CC-BY-NC-SA','',0,0,1),
(237,'2007-05-10','Picture Frames',967,'','No Show notes\r\n
\r\n
\r\n',58,0,1,'CC-BY-NC-SA','',0,0,1),
(238,'2007-05-11','The Computer Code hoedown',227,'','original audio by Shane Killian can be found at
\r\n audio.textfiles.com \r\n
\r\n
',39,0,1,'CC-BY-NC-SA','',0,0,1),
(239,'2007-05-14','Myth TV',979,'','http://www.mythtv.org/ \r\n
\r\n
\r\n KnoppMyth wiki ',36,0,1,'CC-BY-NC-SA','',0,0,1),
(240,'2007-05-15','PWF',1659,'',' www.oldskoolphreak.com
\r\nwww.oldskoolphreak.com/tfiles/pwf.txt
\r\n www.bellcoreradio.net
\r\n www.walmart.com
\r\n
',60,0,1,'CC-BY-NC-SA','',0,0,1),
(241,'2007-05-17','Text Editors of Choice',624,'','\r\n\r\nJedit',7,0,1,'CC-BY-NC-SA','',0,0,1),
(242,'2007-05-21','Powering Up Windows',853,'','This is just a rundown of what can be done to turn a standard Windows installation into a more powerful OS.
\r\n
\r\n Windows Powershell info and download
\r\n VBScript to Powershell conversion reference
\r\n Sysinternals utilities info and download
\r\nGNU tool sets
\r\nCygwin
\r\n
\r\n\r\n \r\n',54,0,1,'CC-BY-NC-SA','',0,0,1),
(243,'2007-05-22','Genetic Algorithms',611,'','The applications of genetic algorithms include:\r\n\r\nArtificial Creativity \r\nAutomated design\r\nCode-breaking\r\nDesign of water distribution systems\r\nElectronic circuit design\r\nFile allocation for a distributed system. \r\nGame Theory Equilibrium Resolution. \r\nLearning Robot behavior\r\nMolecular Structure Optimization\r\nProtein folding \r\nTimetabling problems\r\nTraining artificial neural networks\r\nand the Traveling Salesman Problem. \r\n
\r\n
\r\n',61,0,1,'CC-BY-NC-SA','',0,0,1),
(244,'2007-05-24','Video Compression',507,'','No show Notes
\r\n
',58,0,1,'CC-BY-NC-SA','',0,0,1),
(245,'2007-05-28','Descrambled ',522,'','Joe Wecker of Don\\\'t Eat Pete sings the algorithm of DVDdescramble.c. Removed from mp3.com for its allegedly \\\"offensive lyrics\\\".
original audio at audio.textfiles.com
\r\n
',39,0,1,'CC-BY-NC-SA','',0,0,1),
(246,'2007-05-30','daap',291,'',' Media Streaming with I-Tunes, Ubuntu and mt-daapd
\r\n
',19,0,1,'CC-BY-NC-SA','',0,0,1),
(247,'2007-05-31','Binrev Remix #2 Deadly Halon!',885,'','original audio from Binrev Radio Episode 11 ',55,0,1,'CC-BY-NC-SA','',0,0,1),
(248,'2007-06-01','H.264 Standard',432,'','\r\nWikipedia - H.264 Standard
\r\n
\r\n',58,0,1,'CC-BY-NC-SA','',0,0,1),
(249,'2007-06-07','So You Got Your Lame Ass Sued',3743,'','original audio from Defcon 9 presentation\r\n
\r\n
',13,0,1,'CC-BY-NC-SA','',0,0,1),
(250,'2007-06-08','PanoTools',502,'','www.kekus.com
\r\n
\r\n http://hugin.sourceforge.net
\r\n http://panotools.info
\r\n http://panotools.org
\r\n\r\n',48,0,1,'CC-BY-NC-SA','',0,0,1),
(251,'2007-06-11','Projectors',761,'','GRL Laser Tag
\r\nDIY Projector screens
',3,0,1,'CC-BY-NC-SA','',0,0,1),
(252,'2007-06-13','Network Access Control',1006,'','No Show Notes
\r\n
',62,0,1,'CC-BY-NC-SA','',0,0,1),
(253,'2007-06-14','Diversions',659,'','3 Diversions:
\r\n
\r\nKnetwalk - no url, sorry - check your distro repository
\r\nBriquolo - http://briquolo.free.fr
\r\ndeskbar applet - http://raphael.slinckx.net/deskbar
\r\n
\r\nhave fun.
\r\n
',7,0,1,'CC-BY-NC-SA','',0,0,1),
(254,'2007-06-15','stimulants',515,'','No Show Notes
\r\n
',63,0,1,'CC-BY-NC-SA','',0,0,1),
(255,'2007-06-18','Wireless Fun: Macbook Pro',583,'','Wireless Fun on a Macbook Pro - Part One
\r\niStumbler website
\r\nkismac website
\r\ngetting kismac to work on Macbook Pro
\r\nGet you sum Wireshark
',16,0,1,'CC-BY-NC-SA','',0,0,1),
(256,'2007-06-19','alkix live cd ',775,'',' Alkix Live Cd
',64,0,1,'CC-BY-NC-SA','',0,0,1),
(257,'2007-06-20','plsql',4169,'','No Show Notes
\r\n
',55,0,1,'CC-BY-NC-SA','',0,0,1),
(258,'2007-06-27','mindmanager',309,'','\r\nMindjet Home Page\r\n\r\n
\r\n\r\n\r\nCtrl+Shit+Alt+T brings 5 day trial into 21 day mode.
\r\n
',58,0,1,'CC-BY-NC-SA','',0,0,1),
(259,'2007-06-27','How to make a Twat Ep',1744,'','No show notes
\r\n
',60,0,1,'CC-BY-NC-SA','',0,0,1),
(260,'2007-07-02','Pidgeon Cam',845,'','No Show notes
\r\n
',3,0,1,'CC-BY-NC-SA','',0,0,1),
(261,'2007-07-09','NAS',1300,'','No show notes
\r\n
',55,0,1,'CC-BY-NC-SA','',0,0,1),
(262,'2007-07-11','zoneminder',336,'','No show notes
\r\n
\r\n\r\n\r\n',58,0,1,'CC-BY-NC-SA','',0,0,1),
(263,'2007-07-13','wubi installer and network extraction',662,'',' http://wubi-installer.org/
\r\n
\r\n room362.com ',62,0,1,'CC-BY-NC-SA','',0,0,1),
(264,'2007-07-16','This old hack',1488,'','Part 1
\r\n
',66,0,1,'CC-BY-NC-SA','',0,0,1),
(265,'2007-07-17','nokia 770',312,'',' nokiausa.com/770
\r\n maemo.org \r\n
\r\n
',48,0,1,'CC-BY-NC-SA','',0,0,1),
(266,'2007-07-19','Package Management on OSX',640,'','\r\nMacPorts Official Site
\r\nMacPorts Installation Instructions
\r\nFink Project Official Site\r\n
',16,0,1,'CC-BY-NC-SA','',0,0,1),
(267,'2007-07-27','trixbox',433,'',' trixbox.org \r\n
\r\n
',58,0,1,'CC-BY-NC-SA','',0,0,1),
(268,'2007-07-30','ManHole Funk',204,'','No Show Notes
\r\n
',65,0,1,'CC-BY-NC-SA','',0,0,1),
(269,'2007-08-02','Windows Tricks',523,'','No Show notes
\r\n
',67,0,1,'CC-BY-NC-SA','',0,0,1),
(270,'2007-08-08','sql injection',621,'','\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n SQL Power Injector
\r\n PRIAMOS
\r\n Absinthe
\r\n\r\n twat episode mod_security
\r\n\r\n',36,0,1,'CC-BY-NC-SA','',0,0,1),
(271,'2007-08-09','Avoid Cpu Billing',834,'',' http://www.cs.huji.ac.il/~dants/papers/Cheat07Security.pdf
',58,0,1,'CC-BY-NC-SA','',0,0,1),
(272,'2007-08-16','NAMBLA',482,'',' Nambla \r\n
\r\n
',60,0,1,'CC-BY-NC-SA','',0,0,1),
(273,'2007-08-22','ChatBots',512,'','Play with
\r\n http://www-ai.ijs.si/eliza-cgi-bin/eliza_script
\r\n http://www.alicebot.org/
\r\n http://www.sitechatters.com/
\r\n http://library.thinkquest.org/19314/langprog.htm
\r\n http://www.alicebot.org/superbot.html
\r\nread:
\r\n http://cogsci.ucsd.edu/%7Ebatali/108b/lectures/natlang.txt
\r\n http://www.toddhester.net/chatbot.html
\r\n
\r\n',57,0,1,'CC-BY-NC-SA','',0,0,1),
(274,'2007-08-23','Botanicalls',645,'',' botanicalls.com
\r\n
',25,0,1,'CC-BY-NC-SA','',0,0,1),
(275,'2007-08-29','Wireless Fun Part 2',553,'','\r\nMacPorts Official Site
\r\nMacPorts Installation Instructions
\r\nFink Project Official Site\r\n
\r\n
',16,0,1,'CC-BY-NC-SA','',0,0,1),
(276,'2007-08-30','The Age old Question',1230,'','orginal audio Binrev Radio 16\r\n
\r\n
',55,0,1,'CC-BY-NC-SA','',0,0,1),
(277,'2007-08-31','this old hack part 2',3633,'','part 2 of 3 \r\n
\r\n
',66,0,1,'CC-BY-NC-SA','',0,0,1),
(278,'2007-09-04','Cmake',933,'',' www.cmake.org \r\n
\r\n
',69,0,1,'CC-BY-NC-SA','',0,0,1),
(279,'2007-09-06','Curl',416,'','No show notes\r\n
\r\n
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(280,'2007-09-07','Storage Space',955,'','No Show Notes\r\n
\r\n
',58,0,1,'CC-BY-NC-SA','',0,0,1),
(281,'2007-09-10','Smart Phones',2451,'','\r\nEgress (mobile RSS atom podcatcher)
\r\n\r\n http://www.garishkernels.net/software.html
\r\n\r\n\r\n\r\n
\r\n\r\nTCPMP - The Core Pocket Media Player
\r\n\r\nif it\\\'s media, this plays it!
\r\n\r\n http://picard.exceed.hu/tcpmp
\r\n\r\n\r\n\r\nStream YouTube, Google Video & Others w/TCPMP
\r\n\r\n http://tinyurl.com/2u7xlz
\r\n\r\n http://tinyurl.com/2oxpgb
\r\n\r\n
\r\n\r\nOpera (mobile web browser)
\r\n\r\n http://www.opera.com/products/mobile/products/wimmobileppc
\r\n\r\n\r\n\r\n
\r\n\r\nPocket IRC (mobile IRC!!)
\r\n\r\n http://pocketirc.com
\r\n\r\n\r\n\r\n
\r\n\r\nAgile Messenger (MSN, AIM, ICQ, YAHOO, GOOGLE TALK, JABBER)
\r\n\r\n http://agilemobile.com
\r\n\r\n\r\n\r\n
\r\n\r\nOctro Talk (Google Talk, Jabber)
\r\n\r\n http://octro.com \r\n\r\n\r\n\r\n
\r\n\r\nMini Stumbler (wifi scanner)
\r\n\r\nhttp://www.netstumbler.com/downloads
\r\n\r\n\r\n\r\n
\r\n\r\nWifi Fofum (wifi scanner)
\r\n\r\n http://www.acpecto-software.com/rw/applications/wififofum
\r\n\r\n\r\n
\r\n\r\nPDAnet (PDA to laptop modem)
\r\n\r\n http://junefabrics.com/pdanet
\r\n\r\n
\r\n\r\n\r\n\r\nMicrosoft Live Search (mobile maps, locator, directions, etc)
\r\n\r\n http://www.microsoft.com/windowsmobile/livesearch/default.mspx
\r\n\r\n
\r\n
\r\n\r\n',25,0,1,'CC-BY-NC-SA','',0,0,1),
(282,'2007-09-12','Ptunnel',522,'','http://www.cs.uit.no/~daniels/PingTunnel/',12,0,1,'CC-BY-NC-SA','',0,0,1),
(283,'2007-09-13','Grand Central',1265,'','No show notes\r\n
\r\n
',60,0,1,'CC-BY-NC-SA','',0,0,1),
(284,'2007-09-18','streaming mp3 files',400,'','No Show Notes\r\n
\r\n
',48,0,1,'CC-BY-NC-SA','',0,0,1),
(285,'2007-09-28','Make the switch',31,'','No show notes\r\n
\r\n
\r\n',13,0,1,'CC-BY-NC-SA','',0,0,1),
(286,'2007-11-05','Managing Time',1709,'','No show notes
',23,0,1,'CC-BY-NC-SA','',0,0,1),
(287,'2007-11-07','Clonezilla and Friends',738,'','No Show Notes
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(288,'2007-11-16','This week in twat',528,'','\r\n- Some new RFID Tech\r\n- Hard Drives sold with trojan horses installed\r\n- McGrew Security checks out crackmails.net\r\n
',42,0,1,'CC-BY-NC-SA','',0,0,1),
(289,'2007-11-19','shmoocon meetup',270,'','
\r\nNo show notes\r\n
',62,0,1,'CC-BY-NC-SA','',0,0,1),
(290,'2007-11-21','Google 411',692,'','No show notes\r\n
\r\n',84,0,1,'CC-BY-NC-SA','',0,0,1),
(291,'2007-11-26','Ruby on Rails Primer',614,'','Archive: twat-ep291.tar.gz
\r\n\r\n - Screenshots\r\n - Rails example\r\n - Rails resources\r\n
',64,0,1,'CC-BY-NC-SA','',0,0,1),
(292,'2007-11-29','From the Way back Machine',4400,'','orginal audio Defcon 7\r\n
\r\n',13,0,1,'CC-BY-NC-SA','',0,0,1),
(293,'2007-12-16','Telephonic Craptacular',640,'','No show notes\r\n
\r\n
',55,0,1,'CC-BY-NC-SA','',0,0,1),
(294,'2007-12-20','MC Frontalot mix',432,'','no show notes\r\n
\r\n
',68,0,1,'CC-BY-NC-SA','',0,0,1),
(295,'2007-12-21','Mirror Neurons',178,'',' http://en.wikipedia.org/wiki/Mirror_neurons
\r\n http://www.edge.org/discourse/mirror_neurons.html
\r\n\r\n http://www.interdisciplines.org/mirror/papers/1 \r\n
\r\n
\r\n\r\n',57,0,1,'CC-BY-NC-SA','',0,0,1),
(296,'2007-12-25','nagios',748,'',' \r\nhttp://www.meulie.net/portal_plugins/forum/forum_viewtopic.php?9513.last
\r\n( http auth dont use check_http !)
\r\n\r\nhttp://www.meulie.net/portal_plugins/forum/forum_viewtopic.php?1897
\r\n
\r\n\r\n\r\nhttp://www.meulie.net/portal_plugins/forum/forum_viewtopic.php?1817
\r\n http://www.nagios.org/faqs/viewfaq.php?faq_id=162 ( debug )
\r\n http://www.nagios.org/faqs/viewfaq.php?faq_id=324 ( POST )
\r\n\r\nnagios mailing list
\r\n\r\nhttp://www.nagios.org/faqs/viewfaq.php?faq_id=157 \r\n
\r\n
\r\n\r\n\r\n\r\n\r\nhttp://del.icio.us/operat0r/NRPE
\r\n\r\nhttp://del.icio.us/operat0r/nagios \r\n
\r\n
\r\n\r\n\r\nNTLM FIX !!! ( for webinject )
\r\n\r\nforum post
\r\n another forum post
\r\n\r\n\r\nMUSIC:
\r\n\r\nThe Crystal Method Comin Back
\r\nState Of Bengal\\\\Visual Audio\\\\07-Hunters.mp3
',36,0,1,'CC-BY-NC-SA','',0,0,1),
(297,'2007-12-26','Ever Onward IBM',160,'','IBM theme orginal audio from textfiles.com\r\n
\r\n
',39,0,1,'CC-BY-NC-SA','',0,0,1),
(298,'2007-12-27','Trashing with adam',768,'','No show notes\r\n
\r\n
',66,0,1,'CC-BY-NC-SA','',0,0,1),
(299,'2007-12-31','Iphone Madness',2785,'','some old audio I dug up
\r\nhosts include:
\r\nEnigma
\r\nfaceman
\r\nDrake Anubis
\r\nThoughtphreaker
\r\n',39,0,1,'CC-BY-NC-SA','',0,0,1),
(300,'2007-12-31','End Transmisson',258,'','check out hackerpublicradio.org \r\n
\r\n
',39,0,1,'CC-BY-NC-SA','',0,0,1),
(69,'0000-00-00','Phone Calls',0,'','More info on the Boston Phone System',0,0,1,'CC-BY-NC-SA','',0,0,1);
/*!40000 ALTER TABLE `twat_eps` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-11-17 19:48:25