RSS Feed

February, 2010

  1. Twitter + Hip Hop = Not Always Bad?

    February 26, 2010 by james

    Ive personally been in a bit of a twitter apathy mode.  It seems that is very bloated with spam accounts and it just increases everyday. However, this little tidbit reminded me of the power of twitter and social networking in itself.

    While reading on mashable yesterday i came across this article about how Erykah Badu was trying to remove a lot of the middle man work while trying to get a sample cleared for her album.  As you can see in the article, she was able to, and got the sample cleared relatively easy.

    Seeing that im a huge hiphop fan,  I know about the troubles and trials of getting sample clearances for songs.  For those who dont know, a producer of a song that samples any older music (that is copyrighted) has to get clearance to use that sample.  More detailed information can be found here.  It usually deals with going through a lot of lawyers and middle-men just to get something done.

    However, thanks to twitter, Ms. Badu was able to ask for help on twitter, and through her following, she got in touch with Paul McCartney and got the sample cleared! Ive heard quite a few songs before sample clearance, and then, after not getting it cleared, the unfortunate remake of the same song.


  2. We’re not really friends, you and I.

    February 24, 2010 by james

    While i was at wordcamp miami this weekend, i was listening to John James Jacoby of BuddyPress and what needed to be done to update it when he said something that kind of resounded in my head, when talking about the “Friends” functionality he said something to the tune of “social networks have kind of changed the meaning of friends”.

    (more…)


  3. Sqlite to Core Data: Update

    February 3, 2010 by james

    If you keep up with my blog, you’ll see ive been moving a project from SQLite to Core Data, here’s an update.

    So while ive been working on this, ive been running into a few issues, mainly getting the relations set up correct in the data models, but its been working very smoothly.  While re-working this, i thought to myself, i need to use the repository pattern in this.  As core data is still a bit new, there is still a little bit of textual writing while querying, and instead of having strings for this all over the place in various classes, ill just have them all in one class.

    Here’s some info on the repository pattern (using .NET as an example) here.

    In most of our recent projects, weve been using the repository pattern with our Linq-To-SQL classes, and its been very helpful in keeping code clean, with all of the querying in one spot.

    Im currently working on an example project in XCode that shows how to implement the repository pattern, while using protocols as well for some cool safecatches.

    Look for that towards monday or tuesday.