Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Sidoh

Pages: 1 2 [3] 4 5 ... 25
31
Blizzard, WoW and Bots / Twinking, anyone?
« on: December 20, 2008, 12:06:15 am »
So a twink guild I'm in (Alliance, 39s, Feathermoon) is in pretty desperate need of a flag carrier.  We'd like to get a druid flag carrier.  They can get up to around 6.7k health.

If anyone is interested in making one for us, we'd give you everything you needed.  We'd buy the gear you need, run you through instances, etc.  Of course, this all assumes that you'd be willing to play fairly regularly, and that you're good. :D

32
General Programming / Programming Contest
« on: December 17, 2008, 12:42:38 am »
I was just thinking today that it'd be kinda cool if we had a friendly and informal programming contest amongst ourselves.  We could all come up with what we'd work on, but it would, of course, have to be something where we could develop a meaningful way to measure programs against each other.  For example, the time it takes to complete a case, number of cases solved per minute, or if it's an AI for a game or something, maybe we could do a tournament.

We could even do a series of programs or something.

Here are some ideas:

Sudoku solver
AI for simple games (ie, checkers, othello, etc)
Captcha solving
Anagrams
Automated theorem prover

Would anyone be interested in this?  I think it'd be fun!

33
General Discussion / Happy birthday ergot!
« on: December 13, 2008, 07:56:22 pm »
:D         :D
:D         :D
:D         :D
:D :D :D :D
:D         :D      :D
:D         :D   :D
:D         :D :D

Fuck it, I give up.

Happy birthday, man.

34
General Discussion / Newegg Hard drive GB/$ Listing
« on: December 13, 2008, 01:24:09 pm »
Thought some of you might find this handy.

http://dark-wire.net/sidoh/NeweggGBPD/

Over the break, I might try to add some statistics to it (max, average, average this month, etc).

35
General Discussion / anyone handy with the shoops?
« on: December 08, 2008, 11:07:17 am »
Can anyone turn the following image into 1920x1200?  I need a new background. :)

By that, I of course mean filling in the blank areas in the canvas that size.

http://dl-client.getdropbox.com/u/49612/albg.png

I've tried copying the area at the end that looks like it repeats a bit, but I'm pretty bad at making it look like it fits.  I did "make seamless" in gimp and tiled it.  There weren't any edges, but it still looked pretty obvious, lol.

36
General Discussion / "Applicant Data"
« on: November 25, 2008, 12:02:35 pm »
I'm filling out an online job application, and there's an "optional" section entitled "Applicant Data".  Not surprisingly, it asks questions pertaining to ethnic background, sex, age, etc.

I'm wondering if it's ever beneficial to fill this out, especially when you're not a minority.  The wording they use to describe "optional" is the following:
Quote
Applicant Data (optional)

The section is optional for all candidates. If you decide not to complete this section, it will not impact the assessment of your application.

37
Entertainment District / Best Lawsuit ever?
« on: November 06, 2008, 10:18:15 pm »
I'm not sure how long this has been floating around, but it's pretty funny.  This guy sued over 700 people/things/places, including the Eiffel Tower, the King James Bible, Huggies,  The Leaning Tower of Pisa, AARP, Colin Powell, "Area 69", Kevin Bacon, Phi Beta Kappa, and the Merriam-Webster's Dictionary 10th edition, to name a few.

Here's a link: http://dockets.justia.com/docket/court-ilndce/case_no-1:2007cv04192/case_id-211173/

38
Entertainment District / John McCain on SNL
« on: November 03, 2008, 02:32:44 am »
I'm not sure how many of you watch SNL, but John McCain appeared on last night's episode.  His bits were absolutely hilarious, I thought.  Of course, Tina Fey-lin was there as well. :)

http://www.hulu.com/watch/41829/saturday-night-live-mccain-qvc-open#s-p1-st-i1
http://www.hulu.com/watch/42020/saturday-night-live-update-sen-mccain#s-p1-st-i1

39
Academic / School / Post your schedule -- SP2009
« on: November 01, 2008, 03:45:22 pm »


M 317 is basically introduction to analysis.
M 467 is second semester algebra.  I'm taking the first semester now and I've really enjoyed it.
CS 520 is the graduate algorithms course.  I'm taking the capstone senior course this year and it's definitely been my favorite class.
CS 314 is software engineering.  It's going to be boring. :(

I'm planning on registering for another class, but I'm reserving it for a stupid core curriculum course.  The only one that sounded interesting was some philosophy class that was like "history of scientific thought" or something, but it's not offered next semester, so I still need to figure out what I'm going to take.  I want to take the graduate AI course too, but I need to get these dumb core curriculum classes out of the way. :(

40
Introductions! / sup
« on: October 02, 2008, 09:06:54 pm »
I'm sidogg.  sup.

41
Entertainment District / The Last Supper
« on: September 29, 2008, 07:36:06 pm »
http://www.youtube.com/watch?v=vXqfRAcnb9k

Hahaha.  It was nice to get a few laughs in before heading to class this morning. :)

42
Math and Other Problems / Stress Testing Jars Puzzle
« on: September 27, 2008, 02:05:49 am »
This problem is taking directly from my algorithms textbook J. Kleinberg, E. Tardos. "Algorithm Design." Addison-Wesley, 2005.  Note: I'm not transcribing it directly.

You're responsible for doing stress testing on jars that your company produces.  Sometimes, you have very many jars to spare for worthy testing, in other times, your company is under fiscal strain and can only provide a handful.

The stress test involves a ladder with [tex]n[/tex] rungs.  You want to generate a report on each model telling your manager what the highest rung on the ladder is at which you can drop the jar without it breaking.  The models tend to have a lot of variance, so say you have no idea at which rung the jar will break.  For simplicity's sake, assume that for each model, there exists some rung [tex]k\leqn[/tex] at which a jar of that model will break.  Also assume that the jars are identical and that if one jar breaks at a particular rung, all of them will.

a. Imagine you are given an indefinite amount of jars to test.  What is the fastest way to find the rung at which the jars of the particular model you're testing break at?  Hint: if f(n) is the number of tries you have to take, f(n) is o(n).  That is, n dominates f(n) asymptotically, i.e. [tex]\lim_{x\to\infty}\frac{n}{f(n)}=\infty[/tex].

b. If you are given exactly one jar to test, what's the fastest way you can get a definite answer to the problem posed?  Hint: there's nothing tricky about this one.  It should be fairly obvious.

c. If you are given exactly two jars to test, you can do better than you did in (b).  Give a strategy to do this.  Hint: when I say better, I don't mean that you do better by some constant amount.  The function that tells you the upper bound on the number of tries you have to do given n actually grows much slower than the one that generates the number of moves you have to make in the situation proposed in (b).

d. Generally, if you are given [tex]k[/tex] jars to test, you can get a better bound than if you were given [tex]k-1[/tex] jars.  Formally, if [tex]g(n)[/tex] is your bound for [tex]k-1[/tex] jars and [tex]f(n)[/tex] is your bound for [tex]k[/tex] jars, then [tex]f(n)[/tex] is [tex]o(g(n))[/tex].  Give a general strategy for this.

Remarks:

Part (c) and (d) are kind of hard.  If you get (c), you should be able to derive (d) with a bit of insight.

43
General Discussion / Happy birthday, Blaze!
« on: September 26, 2008, 01:20:42 am »
Happy birthday, you liar! :D

44
General Discussion / Big Words
« on: August 21, 2008, 09:14:48 pm »
Big Words is basically a textbook source aggregator.  You give it the ISBN, title, or author of the book and it gives you a list of matches.  When you select a book, it looks for it from a variety of sources and gives you a list of the ones with the best prices.

Unfortunately, I already ordered all of my books (from AbeBooks.com, which usually has the best price anyway), but I figured I'd try to save some of you who still haven't gotten their textbooks yet some trouble.

The orange hurts my eyes, but it's still a pretty neat service.

45
Entertainment District / Batman Interviews Joker
« on: August 03, 2008, 02:14:19 am »
http://www.youtube.com/watch?v=w2yv8aT0UFc&fmt=18

This is a parody, but it's not any sort of spoiler if you haven't seen Dark Knight yet.

Pages: 1 2 [3] 4 5 ... 25