admin

Apr 282010
 
twitter (feed #3)
Stupid iPhone Provisioning Portal. Be less "pending". kthxbye. [caseyodonnell]
blog (feed #1)
twitter (feed #3)
Introducing the cast of projects (some of which have already gone viral) for #DSNMI at the New Media Institute’s #PMPG: http://bit.ly/alIirR [caseyodonnell]
blog (feed #1)
twitter (feed #3)
Ever use Mac OS "Compress …" Rt-Click option only to have it munge the zip for Windows? I certainly have (#UNITY3D). http://bit.ly/b1tQD4 [caseyodonnell]
twitter (feed #3)
Pokémons against childhood obesity? A game for health/change: http://bit.ly/9qDWKm http://bit.ly/9rNRsl (Implications for #PMPG @UGANMI) [caseyodonnell]
 Posted by at 10:14 pm
Apr 282010
 

I have a problem. I complicate things in order to simplify them. wxBlogger began that way, as did wxCURL, as did wxSync. Each began with the idea of simplifying some of the more mundane tasks that I do each day. Since I began working with Unity 3D, I’ve found on several occasions that using Mac OS X’s built-in right-click “Compress …” did strange things, particularly with executable files, that would only be discovered by Windows users later. Global Game Jam 2009 this bit us. It’s bitten me several other times.

Now, theoretically, I could open the “Archive Utility” application housed in (/System/Library/CoreServices/) and change its preferences, instructing it to use the more Windows friendly “ZIP” format rather than… Well, whatever it does and calls “.zip”. But, that would be simple, right? What would be interesting about that solution?

Thus I taught myself a little Apple Script and whipped up what I’ve called “WinZip,” which is clearly not this WinZip. My little deal is a Mac App / Apple Script that does the work of making a Windows compatible ZIP file for you without having to know the commands or do it yourself in the Terminal. The source code and application are all released under the wxWidgets License.

-- WinZip for Mac OS X
-- Casey O'Donnell
-- http://www.caseyodonnell.org/
-- This script takes a dropped file (or several) and compresses them in a Windows
-- compatible format using the "ditto" command.
--
-- The source and the application are released under the wxWidgets Licence, which
-- can be found here: http://www.wxwidgets.org/about/newlicen.htm
on open fileList
	set szPathName to ""
	set szPathDest to ""
	repeat with i in fileList
		set szPathName to quoted form of POSIX path of (i as text)

		set iLength to length of szPathName
		set szLastChars to get characters (iLength - 1) thru (iLength - 1) of szPathName

		if (szLastChars contains "/") then
			set szPathDest to get characters 1 thru (iLength - 2) of szPathName
			set szPathDest to szPathDest & ".zip'"
		else
			set szPathDest to get characters 1 thru (iLength - 1) of szPathName
			set szPathDest to szPathDest & ".zip'"
		end if

		tell application "Terminal"
			do script "ditto -c -k -X " & szPathName & " " & szPathDest & "; exit"
		end tell
	end repeat
end open
Apr 282010
 

I’ve seen a couple of emails go out about the event, but I wanted to blog it for my students. The New Media Institute (NMI) Capstone class will be presenting and demoing their projects at the upcoming Personal Media, Public Good conference at the University of Georgia. We’ve designated our twitter hash tag as #DSNMI for the event, which will likely be tweeted primarily with the #PMPG hash. The students have put together some pretty impressive projects this semester. Here they are, in order of appearance beginning at 4PM on May 1 at the UGA Miller Learning Center in room 101:

NMI Capstone Project: point39point39
Point39 has the answer to the magazine industry’s current crisis. Point39 transforms the print version of many publications into interactive, dynamic issues that can be viewed for a cost from the internet or on the iPad. Publishing companies will send their PDFs and magazine requirements to Point39 with which we will then transform their print documents into a new interactive magazine based on their demands and our suggestions.

NMI Capstone Project: MimioMuseMimio Muse
Mimio Muse is a multi-platform collaborative networking system for the use with Mimio interactive boards. It is perfect for intensive and creative professional environments. Mimio Muse offers the synergy of digital collaborative systems such as wikis with the advantages of face to face interaction.

NMI Capstone Project: Uncapped EverywhereSharpie Uncapped Everywhere
Unncapped Everywhere by Sharpie is a branded smartphone application for the iPhone. Through the application, users create and discover virtual art by interacting with Sharpie products. By allowing users to harness their artistic side, they will learn more about Sharpie products and the world around them. In addition to the iPhone application, the Uncapped Everywhere project includes social media, online and retail marketing elements.

NMI Capstone Project: DawgStopDawgStop
DawgStop addresses the common fears and discomforts of new incoming students in order to help them transition with ease. With 47 operating buses and over 31,292 students that board the buses daily, the bus system proves to be an integral part of campus, yet an aspect that students find intimidating. Our goal is to mobilize the students by improving the accessibility of the buses as well as offering up to date information about significant happenings on campus. Take a ride with DawgStop, and be in the know wherever you go!

NMI Capstone Project: paoPao
Pao combines the idea of a personal secretary with the convenience of a digital ID, capable of simplifying product purchases, event and facilities access. Pao is currently being marketed at UGA and has the potential to expand to many other universities all over the world. It can also expand to the business sector; Pao’s features can adapt to fit the needs of businesses and organizations. Companies could benefit from Pao, using its unique technology to pass through checkpoints and make purchases.

NMI Capstone Project: GradyfestGradyfest
The GradyFest website incorporates all aspects of the event. The website encompasses news updates, event and student information, video clips with ratings and comments, an interactive game, and connectivity to other multiple social media platforms.

Apr 212010
 
googlereader (feed #2)
twitter (feed #3)
Dear reviewers who view essay reviews as opportunities for turf protection rather than critical commentary on others work: you are a tool. [caseyodonnell]
googlereader (feed #2)
twitter (feed #3)
Osy #FAIL for #GLS. C’est la vie. She has $250k of VentureLab funding to make her feel better. [caseyodonnell]
 Posted by at 10:14 pm