Friday Tunes at Noon: Delta Spirit, letthemusicplay / RAC, Professor Green / TEED

 

California – Delta Spirit

letthemusicplay – Waves (RAC Mix)

Professor Green – Monster (Totally Enormous Extinct Dinosaurs Remix)

Protip: Use iTunes Match to upgrade your iTunes library


I had reservations about using iTunes match at first but now I realize how absolutely amazing of a product it is. If you have songs you ripped from youtube, old scratched up CDs, or less than legal websites wouldn’t it be nice to own the high quality iTunes music store version of it without paying for it? This is how you do it:

BACK UP YOUR iTUNES
if you aren’t already creating backups of your computer you are a bad person and you should feel bad.

  1. Subscribe to iTunes match
  2. In list view bring up the dialog box on your category columns and make sure “Bit Rate”, “iCloud Status”, and “iCloud Download” are checked and visible.
  3. Sort by “iCloud Status” and select the songs that are indicated as “Matched” and the “Bit Rate” is below 256kbps.
  4. Hit delete. This will delete your local copy of the file but won’t remove it from the library, it will actually leave the iTunes listing of the song exactly as it is but it will reveal an iCloud download button.
  5. Bring up the dialog box on all the selected files and hit “Download”.
  6. You now have 256kbps versions of all your matches songs, enjoy.

Leave a comment if you have any trouble.

TL;DR Highlight matched songs and hit delete, then download from iCloud

Friday Tunes at Noon: Magnetic Fields, Sigur Rós, Chicane, Miniature Tigers

The Magnetic Fields - The Saddest Story Ever Told

This song caught my attention because it seems like the main riff is a nod to Then He Kissed Me – The Crystals.

Sigur Rós - Hoppípolla

Beautiful icelandic song released around 2005, plays in the Apple store all the time.

Chicane - Poppiholla

5 years later Chicane reworked Hoppípolla into a dance track. I like both.

Miniature Tigers – Female Doctor


I should stop posting Miniature Tigers songs and just issue a blanket statement “anything by miniature tigers that features a synth lead is amazing and worth checking out”. I am proud to say I can play a crude version of this song on garageband for iPhone.

Friday Tunes at Noon: The C90s, Bag Raiders / Kris Menace, Phoenix / Friendly Fires

It’s almost noon in Alaska right now, so I think this still qualifies as a Friday Tunes at Noon. I dissected an old favorite of mine, the Bag Raider’s minimix, here are some of my favorite bits from it.

The C90s – 10:01 DM

the C90s – 10:01 DM
Download above, I couldn’t find it anywhere online so I just uploaded it to my server.

Bag Raiders – Shooting Stars (Kris Menace Remix)

Phoenix – Fences (Friendly Fires remix)

Protip: Use iOS 5 Shortcuts To Autofill Your Address And Email

Keyboard shortcuts in iOS 5 allow you save time by creating a keyword that is autocorrected to a prepared phrase. I use it for a number of things such as my long address or my email address to quickly type it out. You can also use it to type characters that are unavailable on the iPhone keyboard. If you want to be evil what you do is go to a friend’s iPhone that doesn’t use shortcuts and make a shortcut for their to change it to they’re or some other really annoying incorrect autocorrection.

Access Shortcuts by going to Settings -> General -> Keyboard -> Shortcuts -> Add New Shortcut

Protip: Use Wolfram|Alpha from Your Google Chrome Location Bar

This trick is something you can actually use with any search function on any website. I find it really useful to be able to instantly access Wolfram Alpha from anywhere with a simple keyboard shortcut.

  1. Pull up Wolfram|Alpha or any other search field you might want to quickly access.
  2. Right click or otherwise bring up the dialog box on the search field you are looking to add and then select “Add As Search Engine”.
  3. Subsequently the confirmation dialog should pull up and you should change the “Keyword” to something super easy like “w” and hit OK.
  4. You now have a powerful shortcut to Wolfram Alpha. Access the location bar by clicking on it or hitting CMD+L or CTRL+L on windows. Type your Keyword then hit the spacebar then enter your query. Hitting enter after the query will bring you to your Wolfram|Alpha computation.

This can be done with pretty much any search field. To modify your search engines in Chrome, go to Preferences -> Basics -> Manage search Engines

Friday Tunes at Noon – Night Drugs, DJ Swoosh, Capsule, N.A.S.A / Aston Shuffle

Night Drugs - Volante


I visited Austin for a couple days and I’m feeling pretty nostalgic. I am going to post some old tunes I used to jam out to with my buddies. I made a video with all my old friends set to this song a long time ago.

DJ Swoosh - Swoosh (Mr Swooshy’s Nothing But NetRe-rub)

I actually can’t find this song anywhere. I found it in the bag raider’s minimix a couple years ago. Download it from my server by bringing up the dialog box and clicking “save as” or whatever the equivalent in your browser is. This song needs to be listened to on a system with great bass response, there is a part in the middle that sneaks up on you.

Swoosh (Mr Swooshy’s Nothing But Net Re-rub)

Capsule - Soratobu Toshikeikaku

Gifted (The Aston Shuffle Remix) (DSCO EDIT) – N.A.S.A. feat. Kanye West, Santogold & Lykke Li

download: http://www2.zippyshare.com/v/21517117/file.html

Java Snippet – Validate Dates

Here is a little java snippet that can be used to validate if a date is in a certain format such as MM/DD/YYYY. This is useful when you need your user to input a date from the console. Of course if you are writing serious software you are going to have that user use a date picker in the GUI, but even then it might be useful to double check to make sure your end user isn’t slipping in any values they shouldn’t be.

If you want to see how this works or change it for yourself it might be helpful to check out the documentation on the SimpleDateFormat object: http://docs.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html

Be sure to import:

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

This function will output a boolean which evaluates true if the date is valid.

public static boolean valiDate(String date) {
	SimpleDateFormat formatchk = new SimpleDateFormat("MM/dd/yyyy");
	Date Me = null;
	try {
		Me = formatchk.parse(date);
	} catch (ParseException e) {
		System.out.println("Invalid Date");
		return false;
	}
	if (!formatchk.format(Me).equals(date))
	{
		System.out.println("Invalid Date");
		return false;
	}
	return true;
}

Example:

// Assuming scanner is imported
Scanner keyboard = new Scanner(System.in);
System.out.println("Enter the person's birthday:");
String birthday = keyboard.next();
if(valiDate(birthday)) {
	//DO STUFF SON
} else {
	//YA DONE FAILED AT INPUTTIN'
}