Hacker Public Radio Ep0265: CrunchBang Linux monsterb and threethirty talk about CrunchBang Linux, Openbox and Terminator.Links:CrunchBang LinuxOpenboxTerminatorUnix Porn!Screenshots: pic1, pic2CrunchBang Repo:deb http://ppa.launchpad.net/spring/ubuntu intrepid maindeb-src http://ppa.launchpad.net/gezakovacs/ubuntu intrepid maindeb-src http://ppa.launchpad.net/spring/ubuntu intrepid maindeb http://ppa.launchpad.net/gezakovacs/ubuntu intrepid main
Couple of Admins MOR81 - Your Mother Was A Hamster Recorded: December 31, 2008
Your Host: Steve Murawski and Keith Albright
Show Length: 42:11
This show is brought to you by Quest Software.
When it comes to scripting, you’re a warrior. But mighty warriors need mighty tools!
For awesome PowerShell scripting, nothing matches the might of Quest’s PowerGUI?. Versatile and easy to use, PowerGUI? helps you build commanding scripts that [...]
Hacker Public Radio Ep0263: 1 year anniversary special Enigma and Wintermute21 talk about their favorite episodes from Season 1 and discuss changes that Season 2 will bring.
December 31, 2008
Hak.5 Hak5 - Laser Range Finding and File Recovery
In this new years eve episode Jason Appelbaum joins us to talk about Laser Range Finding using the USB Missile Launcher and some custom code. Chris Gerling is in the house doing file recovery the down and dirty way. Trust your Technolust and thanks for a great '08!
Hacker Public Radio Ep0262: Programming 101: The Basics Xoke starts the Programming series giving some background on his experience as well as some programming fundamentals.
December 30, 2008
Hacker Public Radio Ep0261: Force Unleashed Enigma starts things off with the first episode of the Game review series, he reviews Force Unleashed for the Wii
Couple of Admins MOR - Geek Grinch 2008 Just a little something goofy I put together for the holiday season. I had hoped to release this before the Christmas holiday, but things got hectic around the Albright homestead. I hope you enjoy.
Merry Christmas and Happy Holidays from all of us at the Mind Of Root podcast.
Listen Now:
Download Here
December 26, 2008
Hacker Public Radio Ep0259: Drupal: From blank to blog in 30 minutes UTOSC 2008: Drupal: From blank to blog in 30 minutes by Dirk Howard
Drupal is an extensible Content Management System (CMS) that is used for blogs, forums, photo galleries and many other uses. Installing Drupal on a blank website can be done in as little as 30 minutes. All you need is a web server that can handle PHP, a MySQL or PostgreSQL database, and either FTP or shell access to the web server. Within 30 minutes you can be blogging on your own site that you can customize anyway you want.
December 25, 2008
Hacker Public Radio Ep0258: Xmas Special Xmas \"Live\" Special, Hosts include slick0, droops morgellon, Tottenkoph, killersmurf, fawksfyre, Enigma, PlexiE, threethirty
December 24, 2008
Hak.5 Hak5 - VMware Server, Electric Sheep, InkScape, and TreePie
In this Holiday Special Hak5 the cast delivers a smathering of thier choices in freeware/shareware, open source applicatons. Matt sings praise of the free Vmware Server product for virutual goodies. Jason Applebaum discovers his once lost joy in having hard drive space with TreePie. Shannon show her affection for our mechanical friends with ElectricSheep. Darren wish peace for the whole graphics art world with InkScape. Finally Paul decks the halls with a few of his applications for OSX.
Hacker Public Radio Ep0256: Ditching ITunes
In which pixel_juice describes the steps he took to kick the iTunes habit and embrace freedom.
Rockbox - http://www.rockbox.org
gPodder - http://gpodder.berlios.de/
EasyTAG - http://easytag.sourceforge.net/
OGG Vorbis - http://flac.sourceforge.net/
Hacker Public Radio Ep0255: Pmount The glories of pmount - allowing you to mount arbitrary hotpluggable devices as a normal user.
Pmount home page
See your distribution repository for the file
Slackware users can find it in sbopkg oh yeah!
Couple of Admins MOR 80 - Zero-Days ’til Christmas Recorded: December 17, 2008
Your Host: Steve Murawski and Keith Albright
Show Length: 1:26:52
This show is brought to you by Quest and Idera.
When it comes to scripting, you’re a warrior. But mighty warriors need mighty tools!
For awesome PowerShell scripting, nothing matches the might of Quest’s PowerGUI?. Versatile and easy to use, PowerGUI? helps you build commanding scripts [...]
Hacker Public Radio Ep0253: Encryption Three Prime Numbers: 2, 3 and 5.
I will call them A, B and C so A=2, B=3 and C=5
Working through x as the current position, and i being the unencrypted password and j being the encrypted as an array, so i[x] is the 'current' position we get:
j[x] = ((j[x-1] + i[x] + A) * B ) MOD C
The password example I give is:
Encrypting 123
1 (unencrypted password) + 2 (Prime A) = 3
3 * 3 (Prime B) = 9
9 MOD 5 (Prime C) = 4
4 (previous encrypted) + 2 (current unencrypted) + 2 (Prime A) = 8
8 * 3 (Prime B) = 24
24 MOD 5 (Prime C) = 4
4 (previous encrypted) + 3 (current unencrypted) + 2 (Prime A) = 9
9 * 3 (Prime C) = 27
27 MOD 5 (Prime C) = 2
So the encrypted password is 442
December 17, 2008
Hak.5 Hak5 - SSH Tunneling, Independent Games, Updating Multiple Blogs At Once, and Password Protecting Applications
In this extensive episode Matt shows us how to setup SSH tunneling to securely transmit HTTP traffic and more while on the go. Shannon checks out some student entries to the 2009 Independent Games Festival, including City Rain, Glitch, Froggle, Blazar, and Akrasia. Darren puts together a PHP script that, in conjunction with Ping.fm, allows you to update multiple blogs at once including your own hosted Wordpress. Plus this weeks LAN Party, revamped Trivia and viewer questions.
Hacker Public Radio Ep0252: Google App Engine 101 Google launched the App Engine service earlier this year to immense interest from the web development community. App Engine allows running applications on Google infrastructure, including BigTable, Google’s non-relational, massively scalable database. App Engine is appealing both at the low end, where small shops don’t want to have to deal with hardware procurement and systems administration, and at the high end, where the kind of “instant scaling” App Engine promises to deal with bursty traffic is the holy grail of infrastructure planning. This tutorial will cover the basics of App Engine development, including development and deployment of a simple application. If time permits we will cover some more advanced aspects of the SDK, such as the caching API. Please sign up for an App Engine account and download the SDK ahead of time so we can jump right in to the code. Basic Python knowledge will be assumed. If you are already an experienced programmer, I recommend “Dive Into Python.” If you str s complete novice, I recommend “Python for Dummies,” which despite the name really is the best basic text I’ve seen. And if you are somewhere in between, I recommend “Learning Python,” 3rd ed. “Dive into Python” is available in print and free on the web; the others are only available in print.
Hacker Public Radio Ep0250: What Ogg Player Samsung YP-U3
Supporting without updating firmware
http://ubuntuforums.org/showthread.php?t=540577
Where to look for a ogg player
http://wiki.xiph.org/index.php/PortablePlayers
MTP
http://en.wikipedia.org/wiki/Media_Transfer_Protocol
International Firmware:
http://celtic.aion.hu/PROGRAM/Samsung_YP_U3/DFU.ZIP
Use the U3J MTS mode (use it)
(http://www.anythingbutipod.com/forum/showthread.php?t=17656&page=4)
December 12, 2008
Hacker Public Radio Ep0249: Puppy 411
Getting Compiling Working in Puppy
Creating a Pet Package
Puppy Custom Re-Spins
Puppy Custom Version for the EEE PC