Our new Indie Games subforum is now open for business in G&T. Go and check it out, you might land a code for a free game. If you're developing an indie game and want to post about it,
follow these directions. If you don't, he'll break your legs! Hahaha! Seriously though.
Our rules have been updated and given
their own forum. Go and look at them! They are nice, and there may be new ones that you didn't know about! Hooray for rules! Hooray for The System! Hooray for Conforming!
SELECT * FROM posts WHERE tid = 'PA PROGRAMMING THREAD'
Posts
Check the thread, give it a whirl!
The PhalLounge :: Chat board for Phalla discussion and Secret Santas :: PhallAX 2013
Critical Failures IRC! :: #CriticalFailures and #mafia on irc.slashnet.org
Goooo urahonky! Dooo eeeet. You can do it!
Things are coming up honky!
Edit:
I have given it a whirl, and it is good stuff! =)
If you do join, hit me up, and I shall totally not lead you astray. Ha. Ha. Ha. Joke, ya?
Grats.
The PhalLounge :: Chat board for Phalla discussion and Secret Santas :: PhallAX 2013
Critical Failures IRC! :: #CriticalFailures and #mafia on irc.slashnet.org
Congratulations. Aside from the certification, did you find the time studying was worth it for what you learned or was the piece of paper the bulk of what you got out of it?
I'd sign up if I wasn't heading out of town for work. It sounds interesting enough.
Congrats man, good job!
I did learn a lot. However the test was definitely BS. I mean 99% of the questions you could figure out with Netbeans or Eclipse within 5 seconds.
Joe's Stream.
That would be wonderful.
Diablo 3 Profile
I can't be bothered to look back through pages
Java 1.6
key = 'roflroflrofl' while (key not in someDict.keys()): key = raw_input('Please input desired key: ') print someDict[key]Basically I'm not sure what to set key to to start with. This is sort of like a do-while I guess.
key = None while (key not in someDict): key = ...Don't call keys(), since you're now looking at a list and have to search it, instead of relying on the hashing of the key in the dict itself.
The PhalLounge :: Chat board for Phalla discussion and Secret Santas :: PhallAX 2013
Critical Failures IRC! :: #CriticalFailures and #mafia on irc.slashnet.org
So after parsing it I'll just ensure None is not a key, and if it is complain and give up. I'm already checking to make sure it isn't empty...
Stack Exchange | http://www.mpdevblog.blogspot.com
None is different from an empty string so the only way a CSV parser would put None is if you explicitly did so I would think.
The PhalLounge :: Chat board for Phalla discussion and Secret Santas :: PhallAX 2013
Critical Failures IRC! :: #CriticalFailures and #mafia on irc.slashnet.org
http://codepad.org/wRxkWKSx
It doesn't handle categorical data yet.
edit: I fixed it, so now it agrees with the Wikipedia example. The bug was, on line 74 I needed to use the probability that something was in a class in general.
Don't start with a random key that may accidentally end up in the dictionary, instead ask for the key first and then enter the while loop.
What database? Or are you asking which database to use?
You're best bet is to use an ORM like Entity Framework or nHibernate, but which one to use depends on which database you want/need to use. You can do pure ADO.NET to just do really raw database stuff, but I don't recommend it.
The PhalLounge :: Chat board for Phalla discussion and Secret Santas :: PhallAX 2013
Critical Failures IRC! :: #CriticalFailures and #mafia on irc.slashnet.org
Never mind. The problem was me being an idiot. As usual. :lol: :cry:
Stack Exchange | http://www.mpdevblog.blogspot.com
Don't make the mistake thinking it is an exam that provides anything useful! :rotate:
The PhalLounge :: Chat board for Phalla discussion and Secret Santas :: PhallAX 2013
Critical Failures IRC! :: #CriticalFailures and #mafia on irc.slashnet.org
Also my attempts at thread synchronization involve locks around objects. And never use more than 1 lock object usually.
Also thanks