Open Side Menu Go to the Top
Register
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** ** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **

06-12-2011 , 06:15 PM
Python's status as a good teaching language doesn't really make it a *poor* choice for anything. Maybe not the most fun, though it's plenty powerful and nice if you're coming to it from C++, Java, or similar.

I don't like Python but I recognize it purely as a matter of taste. I'd never say it's not a serious choice for serious work.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-12-2011 , 06:53 PM
Quote:
Originally Posted by jukofyork
Not sure if it's the same at MIT, but I know from my own experiences that a lot of "Intro to" courses at Uni aren't necessarily taught by those who really want to be doing it so don't be too hard on him

Juk
This may be true as well. This particular instructor is taking over the class from the other instructor. I get the impression that the intro class isn't something he wishes to teach, though he seems to enjoy it on some level.

I don't want to give the impression that he is a bad teacher. He is really good. His ability to say a bunch of stuff at once yet explain it in understandable detail is amazing, but take that as a grain since I don't have much to compare him too. I went to massage school, so you can use your imagination on the teachers I am comparing to.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-13-2011 , 06:21 PM
Today I came upon the following awesome variable name, courtesy of Indian programmers:

$admin_demomode_updation_not_allowed_array
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-13-2011 , 06:26 PM
lmao.

I have to admit at times some of my variable names are probably quite comparable :S
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-13-2011 , 06:52 PM
Quote:
Originally Posted by Gullanian
lmao.

I have to admit at times some of my variable names are probably quite comparable :S
well whatever else you can say it certainly doesn't lack clarity
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-13-2011 , 07:29 PM
agree that it's perfectly clear, as long as you think "updation" is a word. ah, our friends from india.

edit: also why is it an array?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-13-2011 , 07:33 PM
it's an array of actions for which a demo user had no updation rights.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 01:21 AM
My favorite phrase from our off shore resources was "do the needful". You would get an email from them explaining a problem an encouraging you to be doing the needful to fix it. Dirtiest sounding innocuous phrase I ever heard.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 01:46 AM
I'm doing an architecture proposal for a scalable, highly available webapp. Does anyone have recommendations for caching? I know of memcached which can help alleviate db load by caching objects/query results. It's been around awhile and iirc is pretty stable and proven.

Just curious of there's anything newer and better for that type of thing.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 02:19 AM
Quote:
Originally Posted by kerowo
My favorite phrase from our off shore resources was "do the needful". You would get an email from them explaining a problem an encouraging you to be doing the needful to fix it. Dirtiest sounding innocuous phrase I ever heard.
my main contact at the company has been calling "mate" at odd times. not sure what that's about.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 02:45 AM
I make extensive use of memcached. Very simple to use. APC is pretty solid as well and can be used in tandem if you like.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 03:02 AM
APC isn't bad, but I prefer eAccelerator because it'll cache your compiled code to disk. That way a server restart doesn't slow everything down too badly.

Otherwise I agree. Memcache is great for caching data. APC/eAccelerator/whatever is great for caching code. Use both.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 03:30 AM
I have no experience with eAccelerator so I didn't mention it. APC has been useful for me and memcached is awesome, obviously. My stuff is all small/mid-sized projects, though.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 03:39 AM
Redis quite widely used now as an alternative to Memcached (although it does work slightly differently)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 06:16 AM
Quote:
Originally Posted by MrWooster
Redis quite widely used now as an alternative to Memcached (although it does work slightly differently)
What's up the the million and one different glorified hash table server/frameworks now?

Quote:
Redis is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
To my knowledge, this is essentially the same as memcached, couchdb, cassandra, big table, dynamo, etc.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 07:08 AM
The difference with Redis is that it is not written to disk. All the data is stored in memory and so it is super super fast.

Actually Redis can be periodically written to disk but at any time, the entire data structure is always available via memory
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 09:38 AM
Just paid a year upfront for a HyperV Virtual Dedicated server, love having a decent server again for once!
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 09:58 AM
Quote:
Originally Posted by kyleb
I have no experience with eAccelerator so I didn't mention it. APC has been useful for me and memcached is awesome, obviously. My stuff is all small/mid-sized projects, though.
A pretty large site I work on uses APC and memcached to keep functional despite a cluster of 6 beefy systems.

I think the APC/eAccelerator difference matters most for a smaller system. The PHP recompliation time matters more, the higher a proportion of your total resources it takes.

So for my single not-nearly-so-beefy server that's hosting for or 5 websites, most of which are vulnerable to an instalanche, I use eAccelerator.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 10:35 AM
Quote:
Originally Posted by kerowo
My favorite phrase from our off shore resources was "do the needful". You would get an email from them explaining a problem an encouraging you to be doing the needful to fix it. Dirtiest sounding innocuous phrase I ever heard.
a friend of mine is a project manager and her favorite was when one of the indian devs complained that so-and-so was "screwing my happiness".

Quote:
Originally Posted by Ankimo
What's up the the million and one different glorified hash table server/frameworks now?
inorite? it's crazy. we should just pick one, like how we've picked just one web server, servlet container, compiler, JVM, virtual machine provider, operating system, editor, revision control system, ...
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 10:45 AM
It's back to VAX/VMS for everyone.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 11:20 AM
One thing I've noticed about the Indian students in my grad classes is that none of them want to directly disagree with the professor. They appear to have collectively agreed that "I have a doubt about ..." is the best way to do this. Even when it was a simple thing like the professor forgot something and we clearly didn't have enough information to do the homework.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 11:43 AM
i think that's a fairly prevalent aspect of indian culture: deference to authority and an unwillingness to say 'no'.

(#include std_disclaimer_not_racist_but.h)

btw irishthug, i've loved your avatar for a long time but have never posted in a thread with you so my love has remained a secret. until now!

i get a lot of mileage out of my pink "unicorn power!" shirt and even wore it to the 2+2 meetup in 2009 or 2010.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 11:44 AM
Quote:
Originally Posted by Neil S
It's back to PDP-10 for everyone.
fyp.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 11:59 AM
Yeah, I'm sure that is it. I just notice it because I am the complete opposite side of this. At this point of higher education, we should be able to discuss things and share opinions. I've also gotten to the point were I can tell when a professor and I disagree on something and when asking a question isn't going to be productive.

Yeah, Perry Bible Fellowship is awesome.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
06-14-2011 , 12:12 PM
you working on a masters or ph.d.? CS? where you going to school?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote

      
m