R0B0TZ


music, art, parties, technology, code
Wednesday, 1st September, 2010

Greasemonkey (August 30th, 2010)
https://arantius.com/misc/gm-nightly/greasemonkey-2010.08.30.beta.xpi

Firebug (August 24th, 2010)
http://getfirebug.com/releases/firebug/1.6X/firebug-1.6X.0b1.xpi

~

Let me preface this with some information about myself and my experience:

I own an iPhone, a MacBook Pro, and have built every other computer I’ve ever had in my possession. I am a licensed iPhone developer. I’ve been using the PC format since the early ’90s. I experienced the BBS era, the IRC era, the Linux-as-my-desktop era, the Prodigy-Compuserve-AOL era (DOS/Windows). I’ve written device drivers, enterprise server daemons,  GUI client interfaces, end-user utilities, patched *nix email servers…. I know Ruby, Delphi, VB, Javscript, C++, C#, TCL, Python, CSS, HTML, AS2/AS3, etc etc etc…  I’ll stop here and just say I’m pretty well rounded.

Everything I know I learned by experience. Try troubleshooting IRQ conflicts when you’re eleven years old, and there is not a single, accessible, person that knows how to help.

The only push I’ve ever had was my cousin introducing me to the world of the modem, from there on it was like an insatiable explosion of curiosity.

With that out of the way, I will begin the actual article.

I use Adobe (on a constant basis, almost every day for the last 10 years) and Apple products. If I had to give one up I would choose to keep Adobe.

Apple I can do without, there are other operating system options out there, nobody does everything that Adobe does, as well as they do.

Correct me if I am wrong here but from what I know a very, very high percentage of Apple computer users use it specifically for design… using specifically Adobe products.

This is the main problem I see with Apple’s latest actions, creating bad blood between yourselves and one of the most used software suites for your platform? Are you nuts?

Do you really want to alienate that group of your users? Are you that full of yourselves???

The Flash snafu is mainly about the iPhone/iPad, however it’s bound to bleed into the world of the OSX user — you know, the whole I drink your milkshake thing.

I have developed for both OSX, and Windows. Microsoft may have made a lot of mistakes on the way but if you take a look at their frameworks, SDKs, and what they expose to the developer I think you will see what I am talking about when I say Microsoft has also done a lot of things right, including embracing support for third party hardware and software.

No 3rd party toolkit limit on Windows Mobile!

I like to tinker, so I’ve gone absolutely the most evil, most devious route and, brace yourself, used OSX86 — for those who aren’t savvy, OSX86 is a project to let you install OSX on almost any PC platform.  What’s interesting about doing things like this is that you learn a LOT in the process. Nothing is easy during the process.

You have to consider that Apple only supports and writes drivers for a very small range of hardware, so it’s hit or miss whether your computer will boot, your sound will work, your internet will work, etc… I’ve installed it a few times, every time it’s been quite the “experience”. One can spend days, weeks, months trying to perfect the setup of their hackintosh pc… but wait… why should someone even HAVE to do this? Why doesn’t Apple support more hardware in their operating system? Because Apple seems to have this idea that they can make all of the decisions for the end user, force them to pay premiums for hardware, and live happily ever after.

This is just not the case and I feel that Apple will feel people moving to other phone devices within the next one to two years. I know I will be.

Apple, while I admire your capacity to push new technologies forward, your recent actions have been immature and unacceptable. You need to fix this. Work with Adobe.

Get Flash running with acceptable performance, setup an approval process for third-party developer toolkits.

Otherwise, I’ll be canceling my iPhone developer license, switching to a different phone, and completely removing OSX from my MacBook… I have a feeling I won’t be the only one.

Whatever. Apple doesn’t care anyways.

~

I often find myself coding in a frenzy, not keeping tabs on my tabs (ha!) … thus having editors with some sort of reformatting ability is a necessity.

In Windows (even in Parallels) I use UEStudio, which doesn’t have the best formatting built in, but it does have a re-indentation command… the problem is, in order to use the function, you have to have the text you want re-indented already selected.

I would CTRL-A, to select all and then re-indent. This got old quick because I would always lose my place…

And thus, this macro was born.

It creates a bookmark, selects all text, reindents, deselects, returns to bookmark.

There is no way to go to the LAST bookmark, so if you use bookmarks at all (I don’t) this will NOT WORK =(

Macro code:

ToggleBookmark
SelectAll
ReIndentSelection
GotoBookMark 0
ToggleBookmark

To use, go to Macro » Edit Macro » New Macro

~
Monday, 14th December, 2009

Some time ago I posted about Sound Tribe Sector 9 (STS9), well their newest album is out and let me tell you, I’m in love!

I am a sucker for ambient experimental brain music, and this album is just fantastic.
Tracklist:
———-

01.Phoneme
02.Heavy
03.Looking Back On Earth
04.Oil Water
05.Crypto City
06.EHM
07.ATLAS
08.Ad Explorata
09.Retereo
10.Central
11.Lion
12.Echoes

I really suggest you buy this album, but you can download for previewing here, (only if you promise to pruchase it, if you like it):

www.storage.to/get/0D1RMCPE/WarezEye.Com__STS9-Ad_Explorata_.rar
hotfile.com/dl/20460031/13f6800/WarezEye.Com__STS9-Ad_Explorata_.rar.html
uploading.com/files/2c491b1a/WarezEye.Com__STS9-Ad_Explorata_.rar
~

Apparently, if you install IIS7 *after* you install .NET 4.0, you have to register .NET 4.0 manually so that you can even use it with IIS…

When multiple versions of the .NET Framework are executing side-by-side on a single computer, the ASP.NET ISAPI version mapped to an ASP.NET application determines which version of the common language runtime (CLR) is used for the application. The ASP.NET IIS Registration Tool (Aspnet_regiis.exe) allows an administrator or installation program to easily update the script maps for an ASP.NET application to point to the ASP.NET ISAPI version that is associated with the tool. The tool can also be used to display the status of all installed versions of ASP. NET, register the ASP.NET version that is coupled with the tool, create client-script directories, and perform other configuration operations.

So, here’s what got me past this issue:

C:\Windows\Microsoft.NET\Framework64\v4.0.21006>aspnet_regiis.exe -i
Start installing ASP.NET (4.0.21006).
………….
Finished installing ASP.NET (4.0.21006).

C:\Windows\Microsoft.NET\Framework64\v4.0.21006>

~

I wanted to be able to use my already existing IIS server, instead of VS2010′s built in development server, but I kept getting “503 Service Unavailable” when I had the application pool set to .NET 4.0.

Looks like mark @ fooberry.com had the same issue:

“After recently installing Visual Studio 2010 Beta 2 and creating a .Net 4.0 site, I tried to step out of Cassini and into IIS only to get “503 Service Unavailable” and a killed worker process. Checking the event viewer I found the following errors…”

… read more here.

Rebooting now… fingers crossed!

~
Saturday, 31st October, 2009

MMM TASTY!

A concoction of progressive house, breaks, a little touch of trance, and some electro…

Enjoy, and please give feedback! =)

~

I loaded up a project today that as of yesterday worked 100% … and recieved an error:

The referenced component ‘System’ could not be found.

What?! Hold on… let me go into the project properties… oh wait, I can’t:

Could not resolve mscorlib for target framework ‘.NETFramework,Version=v3.5′. This can happen if the target framework is not installed or if the framework moniker is incorrectly formatted.

Thanks! I’ll check the .NET installations, reinstall everything, and try again…

or not, I got the same error even after adjusting the .NET framework manually in the file.

I finally figured it out, eventually:

Problem:

I had been using remote debugging. The network share I was publishing to and testing from, was no longer available as I had just received a new server at work and I switched everything over yesterday, but had not relaunched the projects since earlier that morning… and they compiled fine after I moved everything somehow. A bug? I would say so… Give me some sort of REAL response to go off of, like “Hey, you idiot, change your output directory.”

Solution:

I went in to my csproj files and cleared out any references to the network shares in all areas of the configuration. Voila!

I’m interested to see if anyone else has this problem.

~

My old HDD was having some issues and needed to be swapped, I cloned C: to a new drive, removed the old drive and it wouldn’t boot up as C:\, only D:\…so when I logged in it basically just sat there looking for the C:\ which was actually assigned as D:\ …

Modifying the boot settings didn’t do anything, using diskpart to attempt to change the drive letter didn’t work… fail fail fail.  Eventually, I realized that things in Vista / Windows 7 may have changed a bit bootloader wise.  I booted up my computer, CTRL+ALT+DEL’d to get a task manager, and ran REGEDIT.

There it was, “HKLM\SYSTEM\MountedDevices”.

This is basically a list of drives and drive letters that are assigned to those drives.

I deleted all of the entries, rebooted, and voila! Back in business!

Here’s what happened:

In Vista and Windows 7, if you clone your active / main / boot drive (via R-Drive Drive Image or the likes), and Windows sees it with the original drive still plugged in and active, it will set a fixed drive letter entry in your “Mounted Disks” registry folder.

When you remove the first drive and put the new one on the same I/O cable, it will boot, but it will either reference the already created drive letter in the registry, or will not assign C:\ to the “new” drive’s serial number. Even though you cloned C:\ to an new disk, and removed the old C:\ physically, the letter will still be reserved in the registry, and the next (in my case anyways) available letter is D:\.

Hope this helps someone out there!

~

I installed VS2010 Beta 2 today… after uninstalling Beta 1 — to do which I had to remove the TFS Object Model package FIRST, due to an error I was getting about a missing “tfsobjectmodel-amd64_enu.exe”

Everything installed OK,  until the end when I tried to install the help files… I got the error:

“MSHelpListener.exe has stopped working”

Apparently, it tries to bind to port 80, which in my case is already bound to by Skype.

Here’s the details / fix from the Help Listener documentation:

If port 80 is used by another process (not via the http.sys service) then the Help listener will not be able to attach and use port 80 and will fail.  The port number can be changed by adding a string registry value ListenerPort under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Help3 with the value of the port to use (eg. 81).  Due to the http.sys ACL settings it is necessary to run the following http.sys configuration command from an admin elevated command line.  On Vista, Win2k8, and Windows 7 run the following native command:
netsh http add urlacl url=http://127.0.0.1:<port number>/help/ sddl=D:(A;;GX;;;WD)

On Windows Xp, and Win2K3 run the following command:

httpcfg set urlacl /u http://127.0.0.1:<port number>/help/ /a D:(A;;GX;;;WD)

If the command is not found then it might be necessary to download the httpcfg.exe from Microsoft as part of the Windows XP Service Pack 2 support Tools (http://www.microsoft.com/downloads/details.aspx?amp;displaylang=en&familyid=49ae8576-9bb9-4126-9761-ba8011fabf38&displaylang=en).

Now the Microsoft Help Listener will run on the selected port number.

~

One of my supervisors likes to send out tons of emails with absolutely no subject… he uses Outlook, so today I had enough and wrote this little VBA gem:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
If TypeName(Item) <> “MailItem” Then Exit Sub
If Len(Trim(Item.Subject)) = 0 Then
Dim splitItem As Variant
Dim s As String
s = Replace(Item.Body, vbCrLf, ““”)
splitItem = Split(s, ““”)
s = splitItem(0)
Item.Subject = s + “…”
Cancel = False
End If
End Sub

Just install it into your default VBA project (ALT-F11 in Outlook, expand the project tree on the left until you see “ThisOutlookSession”, double click that, paste and save!

Note: for some reason Split wouldn’t recognize a vbCr, so I had to replace the vbCrLf with another character.

~
Monday, 17th August, 2009

Check out this well designed, banner free (what?!) torrent site..

KickAssTorrents.com

Tag cloud, anonymous comments, health meters… love the straightforward design.

~
Friday, 14th August, 2009
  1. Thom Yorke – Harrowdown Hill (the bug remix)
  2. A Made Up Sound – Density
  3. Luke’s Anger – Dirty on the floor
  4. Jens Bond – Changin’ (Original mix)
  5. Jaumetic and Citizen Kain – On and on
  6. Minz – Darkslide
  7. Shed – ITHAW
  8. Zeque – Doble Proceso (Original mix)
  9. D-Unity – Tension – (Nikos Toscani and Will Monotone mix)
  10. Junior Boys – In The Morning (Alex Smoke Mix)

Enjoy ;D

~

1) Open “Computer”

2) Click on “Map Network Drive” at the top (under the path/location area)

3) Select the drive letter you want it to be connected under.

4) In the folder name entry area you want to enter:

http://idisk.me.com/[username]

IE: http://idisk.me.com/law1983

4) Enable “Connect using different credentials”

5) Click ‘OK’

6) Enter your me username and password, enable saving of the information then proceed.

You’re done! You should see the new network location inside of “Computer

~

The process is fairly simple, download this package and extract the folder inside the archive… open said folder and browse to “ASUS_BlackHawk_v41\ASUS Driver\amd64\Vista”, even if you aren’t running Vista, this will work (at least on XP x64)… open the ADIHdAud.inf file in notepad or your favourite text editor and locate line 79:

%HdAudioFunctionDriver.ADICodec.DeviceDesc% = A1988P,   HDAUDIO\FUNC_01&VEN_11D4&DEV_198B&SUBSYS_1043829B

Now, replace that line with these two lines, basically commenting out the first one while placing a modified version (bold) of the first line in place of it:

;%HdAudioFunctionDriver.ADICodec.DeviceDesc% = A1988P,   HDAUDIO\FUNC_01&VEN_11D4&DEV_198B&SUBSYS_1043829B
%HdAudioFunctionDriver.ADICodec.DeviceDesc% = A1988P,   HDAUDIO\FUNC_01&VEN_11D4&DEV_198B&SUBSYS_104381F2

You are simply letting Windows know that your device’s subsystem is compatible…

At this point you should be able to load up device manager, find your Soundmax audio device, right click, update driver, install from specific location, next, choose search in specific locations, uncheck the first box, check the second box, specify the location of the file you just edited and click next.

Voila.

It’s working perfect for me, but do this at your own risk — if your head explodes, it’s not my fault.

~
Monday, 9th March, 2009

Tony! Toni! Tone! – Feels Good (The Revival)

Amon Tobin – One Small Step (Bricolage)

Radiohead – House Of Cards (In Rainbows)

~

I found this band some time ago, and it keeps finding it’s way into my daily drive playlist.

Kind of like an instrumental Incubus with electronic influence.

Check them out.

~
Friday, 27th February, 2009

I love stuff like “Magic Apple Loop”, “Pink Forest” and “Monophonic City” .. not completely fond of the other stuff in this album.

A-bee – POLYPHONIC CITY
Style: Electro / House
Date: 2009
Quality: 192 kbps / 44,1kHz / joint-stereo
Size: 90.90 MB

Tracklist:

1. ON.set OFF
2. AIR feat.ellie
3. TO THE UNIVERSE feat.Kaori
4. U feat.Kaori
5. pink forest
6. the other side of the world feat.ellie
7. Star Surfer(A-bee remix)
8. MAGIC APPLE LOOP
9. calling feat.Kaori
10. GAME
11. LOUDER feat.ellie
12. monophonic city
13. EDEN (sea of clouds remix) feat.Kaori

rapidshare.com

http://uploaded.to/file/aidbu5/

megaupload.com

~
Saturday, 25th October, 2008

~
nicely arranged, chilled out jams that bring to mind saturday evening pre-party hang sessions. definitely a sweet pick for in-office, driving or just chilling out with a bunch of friends. primo, totally rad. two thumbs way up from me.

track listing / link after the break

Read more

~
Wednesday, 17th September, 2008

dear:

mikie! tara! ryan! kendra! jd! emily! dave! ashley! margherite! simone! adrienne!

fuck. i met a lot of people. i know there was more.

word, bitches!

sunday night i was beat and i didn’t get to tell a lot of you bye, and how much i fun i had with you all!

i am really going to miss all of you, and really look forward to the next time we can all get together and do what we do best, DRINK BOOZE AND DANCE.

mad love! <3

~
Tuesday, 16th September, 2008

So, obviously, I am still alive after my short span in Brooklyn / NY.  I went up with mixed expectations, not having ever attended a similar event there I really wasn’t sure what to expect.

Basically, here is what happened:

We stood in line on Friday for close to two hours, only to leave before getting in due to capacity limitations. Saturday we got to the event later than expected, but that’s ok because almost nothing was set up, and the stages were not functional at all. Luckily our group had an RV and we were all able to sit around and wait until the music started pumping from the main stage. The secondary stage was up and ready for another couple hours, and the crowd very slowly grew into a mass. We ended up not even attempting to go to the night events after the fiasco on Friday, and from what we all heard, it was in our best interest as they each were shut down or moved to shitty venues.  Sunday was better as everything was set up from the previous day, and though the crowd was slow to gather, it eventually happened and we all had a lot of fun.

Negatives out of the way, there were some things that really stood out to me and made me feel as if the event’s problems were somewhat of a shitty string of events and not neccesarily bad planning.  First of all, they tried to get different venues for the night events.  Most production companies here probably would have given up.  Second the sound was pristine for the day events, and I think I even heard a speaker blow but the next time I walked by it was fixed! That almost NEVER happens, not even at the biggest parties I have attended. I really don’t have any complaints about the party, I got my presale $40 value worth on Saturday.

The best part for me was just being there with a bunch of awesome people, in awesome weather, having an awesome time.

Oh and the awesome mixsets, which I will soon be uploading have uploaded a torrent of (from the dailysessions mp3s) — seeing as how some have been removed from other sites, I figure this is the best way to keep them alive.

~

altermime is a postfix filter that allows you to alter MIME encoded content in outgoing and incoming messages.  we wanted to append a disclaimer to the bottom of all outgoing emails from our server automatically, without having to rely on each individual manually adding this to their outlook signature or using a template.

the problem was that altermime (0.3.8) was appending “soft breaks” or “= ” (equal sign and a space)  after every 76 characters inside the disclaimer in every multipart email that outlook would send out.

the source file qpe.c from the package here was the culprit, and though it was doing it’s job correctly, it wasn’t doing it how we needed it to be done.

i have modified the code and created a diff patch, located here. i take no responsibility for you screwing something up by using this patch incorrectly. i tested it and it works… and it makes altermime do what we needed it to do for outlook compatible automatic disclaimer insertion.

to patch your source file simply change to the directory where qpe.c is located and issue the following command:

<code>

patch -p0 < patch.qpe.c

</code>

and then, assuming your install directory is configured correctly in the Makefile,

<code>

make clean; make; make install

</code>

also, below is the modified the disclaimer shell script that will:

  1. only include the disclaimer once in each email “thread”
  2. only append the disclaimer when parties whom have emails outside of your domain are part of the email

here is the code:

<code>

#!/bin/bash -u
# Localize these.
MYDOMAIN=r0b0tz.com 

# make sure that the text "$MYDOMAIN disclaimer" (ie: "r0b0tz.com disclaimer") is in
# all of your disclaimer text / html files, otherwise the single include only will not work.

INSPECT_DIR=/var/spool/filter
SENDMAIL=/usr/sbin/sendmail

# Exit codes from
EX_TEMPFAIL=75
EX_UNAVAILABLE=69

# Clean up when done or when aborting.
trap "rm -f in.$$" 0 1 2 3 15

# Start processing.
cd $INSPECT_DIR || { echo $INSPECT_DIR does not exist; exit
$EX_TEMPFAIL; }

cat >in.$$ || { echo Cannot save mail to file; exit $EX_TEMPFAIL; }

nmecount=0
if [ ! `grep -m 1 '${MYDOMAIN} disclaimer' in.$$` ]; then
	for b in $( grep -m 1 "To:" in.$$ | grep -io '<[a-zA-Z0-9.-]*\@[a-zA-Z0-9.-]*\.[a-zA-Z]*>' in.$$ )
	do
		i=`echo ${b} | cut -d "," -f 1`
		if [[ "${i}" =~ '(.*)@(.*)\.(.*)' ]]; then
			logger -t DISCLAIMER outgoing email: ${i}
			if [[ ! "${i}" =~ '(.*)@${MYDOMAIN}' ]] && [[ ! "${i}" =~ '(.*)@mail\.${MYDOMAIN}' ]]; then
				nmecount=1
			fi
		fi
	done
fi

if [ "${nmecount}" == 1 ]; then
# Adding disclaimer
# MAKE SURE YOU MODIFY THE LOCATIONS OF YOUR DISCLAIMERS!
  /usr/bin/altermime --multipart-insert --input=in.$$ \
									 --disclaimer=/etc/postfix/disclaimer.txt \
									 --disclaimer-html=/etc/postfix/disclaimer.html \
									 --disclaimer-b64=/etc/postfix/disclaimer.b64 \
                   --xheader="X-Copyrighted-Material: Please visit http://${MYDOMAIN}/" || \
                    { echo Message content rejected; exit $EX_UNAVAILABLE; }
fi

####### Changed From Original Script END #######

$SENDMAIL "$@"

</code>

… or click here to download.

~

It’s only for still pictures but come on, live caustics without electronics! What! That’s awesome!

By producing “6-D” images, an MIT professor and colleagues are creating unusually realistic pictures that not only have a full three-dimensional appearance, but also respond to their environment, producing natural shadows and highlights depending on the direction and intensity of the illumination around them. Read More


~

I wrote a greasemonkey script that will insert a direct link at the top of ZShare audio file pages so you may right-click and save as directly from the first page without waiting for their silly timer to count down.

The script is available on userscripts.org, here.

~
Thursday, 12th June, 2008

Anything that samples video games, and is danceable gets my vote. Stereogum just released “Stereogum presents… RAC Vol. 1″; a collection of nine tracks full of RAC remixes:

1. Bloc Party – “Helicopter (Intro) (RAC Mix)” (MP3)
2. Bloc Party – “Hunting For Witches (RAC Mix)” (MP3)
3. Au Revoir Simone – “Sad Song (RAC Mix)” (MP3)
4. Tokyo Police Club – “Nature Of The Experiment (RAC Mix)” (MP3)
5. Ra Ra Riot – “Manner To Act (RAC Mix)” (MP3)
6. Robbers On High Street – “Across Your Knee (RAC Mix)” (MP3)
7. You Say Party! We Say Die! – “Like I Give A Care (RAC Mix)” (MP3)
8. Femme Generation – “Orlando Boom (RAC Mix)” (MP3)
9. Chromeo – “Fancy Footwork (RAC Mix)” (MP3)

Download: ZIP | TORRENT

More information from the original post at stereogum

~
Wednesday, 11th June, 2008

Some of you are probably already familiar with the dubstep sounds of Burial, but what you might not know is the musician wears a mask of anonymity. The artist is said to only have informed a handful of people that they even make music… this is quite refreshing. For those of you who don’t know, check these out:

Download: Archangel (mp3), Gutted (mp3)

~

Today I present to you, my four readers, the first “twofer (tuesday)” set!

Done With YouWhitest Boy Alive
The first time I heard this song I had no idea who the band was, just that they had a secret electronic track attached after about sixty seconds of silence… come to find out, “the whitest boy alive started as an electronic dance music project in 2003. it has slowly developed into a band without any programmed elements.”

Don’t You Evah (Matthew Dear Mix) – Spoon
Spoon remains one of my favorite bands; Dear put awesome touches on this track, bringing spoon closer to the minimal techno side of things than I’ve ever heard… and not surprisingly, it works pretty damned well to create an almost hypnotizing array of noise.

~
Tuesday, 10th June, 2008

In 2005 at Art Basel, Miami, I took the picture on the left, today I saw the image on the right on Kitsuné’s front page…

Apparently the artist (André) directed a video! Check it out:

Cazals – Somebody Somewhere

~
Tuesday, 10th June, 2008

Digitalism is set to release a new mixset, under the Kitsuné name, on June 23rd. The release feature remixedtracks from bands as diverse as The Kills, The Human League, Calvin Harris and The B52s.

My favorite quote from the RA article:

…the CD is aimed at “all those who need a boost for the summer as well as those newbies having/during sex on the beach – forcing all of them to love each other a bit more because that’s what summer and sunshine is all about”.

I accidentally stumbled upon a Kitsuné complitation some time ago and have yet to be let down by any of the new releases; Artists featured under the name are:

Adam Sky, Alan Braxe, Alex Gopher, Archigram, autoKratz, Benjamin Theves, Big Face, Black Strobe, Bloc Party, Boys Noize, Captain Comatose, Cazals, Christopher & Raphael Just, Cosmo Vitelli, Crystal Castles, Cut Copy, David E. Sugar, Dieter Schmidt, Digitalism, DJ Gregory, Fantastic Plastic Machine, Fischerspooner, Foals, Fox N Wolf, Fred Falke, Guns ‘n’ Bombs, Hadouken!, Hot Chip, Jence, Joakim, Kaos, Khan, Klaxons, Lacquer, Lost Valentinos, Man With Guitar, Marco Dos Santos, The Mogs, Palermo Disko Machine, Passions, Pin Me Down, Playgroup, Phones (Paul Epworth), Play Paul, Popular Computer, Punks Jump Up, Rex The Dog, Romuald, Shakedown, Simian Mobile Disco, The Teenagers, Thieves Like Us, The Things, Tom Vek, Tomboy, Towa Tei, VHS Or Beta, Volga Select, The Whip, The Whitest Boy Alive, The World Domination, Yelle, Zongamin

~
Tuesday, 10th June, 2008

Another killer mix to add to your collection; This one is titled “12:02″ and is by After Midnight

I especially love the inclusion of Orbital!

Tracklist:

01 True Pseudo – Freakin’ Me Out
02 New Young Pony Club – The Bomb (Villains Xplosive Mix)
03 Death From Above 1979 – Sexy Results (MSTRKRFT Edition)
04 Cryptonites – I Can’t Give You Up (Kill The Noise remix)
05 Villains – Rock It
06 Chromeo – Needy Girl (Vandalism Mix)
07 Atlantic Connection – Rocksteady (La Riots Shake It All Night remix)
08 Surkin – White Knight Two
09 Marlena Shaw – California Soul (Diplo/Mad Decent remix)
10 La Riots Ft. Jadis – If I Could
11 Apollo 440 Ft. The Beatnuts – Dude Descending A Staircase
12 The Black Ghosts – Any Way (Fake Blood Mix)
13 The Frail – Addiction (After Midnight remix)
14 Codebreaker -  Exiled (Miami Horror remix)
15 Michael Jackson – Thriller (Laidback Luke remix)
16 Basement Jaxx – Where’s Your Head At? (2008 Robbie Riviera Mix)
17 The Count & Sinden Ft. Kid Sister – Beeper (A-Trak remix)
18 Kaysh – Drug Induced Sex (Kid Dub Loves Kinky Sex Mix)
19 After Midnight Vs. True Pseudo – Roshambo (Original Mix)
20 Klaas – The Way (Klaas Hype Mix)
21 Edison Gem – Things Change (Villains remix)
22 Orbital – Halcyon & On & On (Original Mix)

Download: After Midnight – 12:02 mixtape

via the culture of me

~

I spend a lot of time restarting daemonized ruby processes and need to locate their PIDs on the fly. I got really, really tired of typing all the grep nonsense over and over.

Here is a quick bash script to locate processes by command text.
— begin code –

#!/bin/bash
ps ax | grep "$1" | grep -v grep | grep -v "fp $1"

— end code —

example:

[admin@mon2 scripts]# fp ruby
1160  ? S 09:30   0:15 ruby /scripts/srv.rb
1161  ? S 09:30   0:16 ruby /scripts/test.rb
2583  ? S Jun09   0:06 ruby /scripts/poll.rb
3068  ? S Jun09  71:01 ruby /scripts/diff.rb
~

Just got this link in my inbox. It’s a preview PDF of what’s in store at SIGGRAPH 2008… which I am planning on attending!

Some highlights:

  • Newly expanded Computer Animation Festival
  • Technical Papers, the premier forum for disseminating new scholarly work in computer graphics
  • Exhibition showcasing the latest products and services from the world’s premier vendors and exhibitors
  • Art and Design Galleries
  • The Studio, where you can interact with a variety of creative areas and technologies
  • Classes that feature a variety of CG topics and also how to grow your career and your company
  • FJORG!, the 32-hour international computer graphics “iron-animator” competition

I’m stoked.

~

My roommate just pointed this little tasty morsel of an event out to me…
2 Live Crew with DJ Magic Mike & DJ Funk- Saturday, July 5th, at Club Firestone in Orlando.

This is going to be balls to the wall crazy.

I just bought my ticket two tickets because I’m pretty sure it’s going to sell out.

~

Glitterandgold.com posted about a new monthly party at the social… pop-off. This should be pretty awesome as the social is one of my favorite venues. Diddles, Kittybat and more playing that oh so wonderful indielectrohop we have all come to love.

pop-off myspace

~
Tuesday, 10th June, 2008

From those dope kids that brought you the legendary minimoo parties, minitek is born!

September 12th – 14th the following will be immersing you frequencies beyond your current comprehension:

Richie Hawtin, Marco Carola, Guy Gerber (live), Magda, Troy Pierce, Audion (live), Martin Buttrich (live), Paco Osuna, Konrad Black, Guido Schneider (live), Davide Squillace, Paul Ritch (live), Pan-Pot, Butane, Camea, Adultnapper/Alexi Delano, Jeremy P. Caulfield (live/DJ), Format:B (live), Exercise One (live), Monoblock (live), Seph (live), Dilo vs. Gurtz (live), Fase Miusic Sender (live), Memek

I will be there all the way from Florida, so if you aren’t currently considering going… you probably should. So let’s max out those credit cards, and book some travel.

beatportal has more information here and my friends over at obscenenyc.com have some sweet examples for your seriously lacking library.

~

Pitchfork has a story about the new “feed the animals” release from Girl Talk. It will be released using the catchy new pay-what-you-please method. I can’t wait, I saw G.T. here in Orlando and not only was it packed, it was possibly one of the best DJ sets / shows I’ve heard when it comes to flexibility and creativity.

Samples: Well known fact | Freak Out

“Bounce That” [Fan Video]

~

I am currently rocking out to a mixset entitled “WASTED YOUTH” by JAMES JOHN

1. Sawtooth Sucka – No Ordinary Girl
2. Fake Blood – Mars
3. Santiago and Bushido – For What (The Bulgarian Remix)
4. P Diddy – Bad Boy For Life (La Mode’s Bad Motherfuckers’ Fuck Up)
5. Geoff K – Vodka and Sugarfree Redbull
6. Michael Jackson – Bad (Mowgli is Bad Remix)
7. Daniel Dexter – Bounce is Back (Malente Remix)
8. Nic Sarno – Jam Boot
9. Dr. Dre – Still D.R.E. (Tenzin Remix)
10. Crookers – Sveglia
11. Twocker – Chopper
12. CSS – Music is My Hot, Hot Sex (Switch Remix ft. Mapei)
13. Hijack – Possessed
14. SebastiAn – Dog
15. Jazzy Jeff and The Fresh Prince – Boom Shake The Room (Matt Cox Remix)
16. Riva Starr – I Know You Want My Thang
17. Kelis – Milkshake (Man Eat DJ & Jizm Remix)

via welcometodanceclub

~
Monday, 9th June, 2008

Ruby 1.8.7 was made available on May 30th, 2008!

There have been a lot of additions, including some features, fixes and performance enhancements.

Hopefully this will fix the segfaults I’ve been getting =P


Log in