Saw this movie last night. let me start by saying that I really think both Larry David and Woody Allen are smart, funny and slightly cynical and love their sense of humor. This movie was interesting because in some scenes you can see both their talents coming together really well resulting in brilliant dialogue and in some other parts the movie does not really work. Definitely worth a watch if you are an admirer of their work.
- Bindu Reddy
from Likaholix
Any idiot can get outside the building and ask customers what they want, compile a feature list and hand it to engineering. Gathering feature requests from customers is not what marketing should be doing in a startup. And it’s certainly not Customer Development. In a startup the role of Customer Development is to: 1. test the founders hypothesis... - http://tumblr.igvita.com/post...
Well M. -- the Anti-Clique it does imply your soul purpose in life is to become a production cog in a great machine. That's worth protesting don't you think?
- Todd Hoff
And what about, 'When you feel drowsy, a competitor may have drugged you.'
- Micah Wittman
The best part is that the Korean says "Sleepiness Prohibited".
- Darren
I actually meant that I was picturing American parents protesting that this was pitting students against each other. But yes, in the fight-the-man feeling, it does seem like a noble cause to protest about
- Itachi
yes , just shows that Teachers don't take crap from kids in Asian Countries !!.. and I might as well add their Governments too !!
- Peter Dawson
WOW, no pressure, right? Sobering message for young minds
- Susan Beebe
Given the national scores and drop out rates, I think American kids could use some pressure, something to remind them that they are in fact, competing in the global market, whether they like it or not.
- Ray Cromwell
I think I also need one of this to put on my desk
- Ozkan Altuner
i have a friend also named ken,does he a korean or japanese?
- urin
Yes.. u can clearly see the Mac libraries I am including in the header file dhun.h. There is a lot to be said about the way the Mac OS X APIs expose functionality at the level of abstraction u wanna operate. I guess the code would have been even smaller if I had used Objective-C and some higher level APIs to play music and do the querying. This project came about after I was a few pages into Mac OS X Internals by Amit Singh and realised it would be fun to code up some of the stuff and explore the APIs.
- Deepak Jois
Deepak Jois: Amit Singh ... that brings back old memories! I was a huge fan of his KernelThread site/blog a few years back for his kernel related posts/articles. IAC why not use C++? IMO coding a real application in C is such a PITA :-)
- Ashwin Nanjappa
Ashwin: Dont really have a good answer. I like C for its simplicity. There are fewer concepts involved to fully grok a C program. C++ confuses me :).
- Deepak Jois
Homemade icecream, cool! Horlicks...err, burned out on that stuff at hospital waiting for my son to be born. Milo, and then we're talking :)
- Gary Theis
Android has an SMS API but for this app (at least this release, I may change my mind in the future), I decided to just pawn off the SMS request to the default SMS app. This allows more transparency to the users about stuff that would cost them money, i.e. sending texts. I imagine it should be possible to do the same on the iPhone - trigger the default sms app to handle sending a message, no?
- Deepak Sarda
Ah ok. It's kinda half-baked on the iPhone right now. You can delegate to the official SMS app, but you can't pre-populate the body of the SMS, just the recipient list. (However you can do so for email so its kinda weird). I try to work around it like this: http://mclov.in/2009...
- arunthampi
Don't have an Android myself but my brother does, so will be sure to tell him about Cabbie :)
- arunthampi
That's just ridiculous. This is how I do it in Android. Bonus - this works no matter what SMS app the user chooses as their preferred app! Intent i = new Intent(Intent.ACTION_VIEW); i.setType("vnd.android-dir/mms-sms"); i.putExtra("address", PHONE_NUM); i.putExtra("sms_body", BODY); i.putExtra("exit_on_sent", true); startActivity(i);
- Deepak Sarda
Cool. Yeah I'd prefer in-app SMS's because then I don't have to quit the app, but the solution you've proposed works great too.
- arunthampi
You see that 'exit_on_sent' attrib? As soon as the sms is sent in the sms app, that app exits & the user is taken back to your app. In Android terms, the task stack gets unwound! The experience is as-if the sms sending is just another screen in your app. One of the best conceptual things about Android is this idea of merging activities from different apps to create what appears to the user to be a single 'traditional app'.
- Deepak Sarda
from email
Someday, I will have an Android phone and this app will be on it, even if I almost never use cabs :)
- Balaji Dutt
@balaji: to tell you the truth, I rarely book cabs. And I haven't booked one yet with Cabbie! But I thought this idea was big enough & interesting enough to be a great intro to Android programming project
- Deepak Sarda
just tried it out - it uses the same method that I use in my app. Copies to clipboard and then the user has to manually paste in the sms compose textfield.
- arunthampi