• Steam recently changed the default privacy settings for all users. This may impact tracking. Ensure your profile has the correct settings by following the guide on our forums.

Search results

  1. N

    [Release] 'Less Junk' Facebook

    Experiencing the same thing. Otherwise looks cool
  2. N

    Radix Sort (Updated)

    Hehe, yeah it doesn't look that bad ;)
  3. N

    Radix Sort (Updated)

    Good point. The fix is: max(abs(x) for x in items) Gotta love python :)
  4. N

    Radix Sort (Updated)

    Yeah I'm not sure why I'm using 20, 19 would work exactly the same with my algorithm. (i.e one list is empty at all times since there is no -0) (EDIT: and now mine uses 19 buckets aswell :P)
  5. N

    Radix Sort (Updated)

    Yes it does, as your algorithm (which is practically a copy of mine in another language) does so too. Although I'm thinking of a way to do it with 10 buckets instead of 20.
  6. N

    Radix Sort (Updated)

    Thank you, Moca. Just fixed that. And if the largest number is negative. (which is against the domain of log)
  7. N

    Radix Sort (Updated)

    I had to implement radix sort for my class today for my last assignment. It looked pretty cool so I thought I'd share :) from Queue import Queue from math import log def radix_sort(items): buckets = [] # our buckets highest = max(abs(x) for x in items) if highest != 0...
  8. N

    Strange OS X Boot Problem

    My advice would be to walk into an apple store and talk to a genius there. They have better diagnostic tools, provided by apple itself. They've never let me down. Although, I have no suggestions as of how you may fix your issues right now.
  9. N

    Configuration

    So I started messing around with python about a week and a half ago and I've been using this config class for my apps. Comments and suggestions would be appreciated :) import os.path import re class Config: """Config Class""" items = {} newItems = 0 newKeys = []...
  10. N

    What programming languages do you know?

    Perl, C, Java, PHP, C#, and HTML.
  11. N

    [RELEASE] M for Mature RSS Widget

    hehe Nice job there Spike I just installed it, it looks cool.
  12. N

    Starting Out.

    That's a little off topic, but since his question has been answered several times: All you need is a little effort. As long as you don't get frustrated and keep learning, it's pretty easy. It's like learning how to play an instrument, it's frustrating at the start but you get used to it after a...
  13. N

    Path Search Algorithm?

    Problem's Context: class Person { public String name; public LinkedList friends; Person (String name) { this.name = name; friends = new LinkedList(); } } Problem Implementing a "shortest path algorithm". Between two Person classes...
  14. N

    Freestyle Poems, Short-stories and etc.

    I was bored on the subway last night, so I pulled my iPhone out and started writing a short "poem".
  15. N

    [GUIDE] Making a VPS (Jail)

    Here's a pretty cool review on that question: VPS Advantages Suggestions - VPS Advantages Guide
  16. N

    Server move, unavoidable downtime.

    If you've noticed anything wrong with the forums or the site, please let us know. We will get on fixing them, right away!
  17. N

    Server move, unavoidable downtime.

    we didn't really have much of a downtime, hehe.
  18. N

    Freestyle Poems, Short-stories and etc.

    Out of all the stuff I've written, two of them are my most favorite. Only the first one was proof read, the second one (older) was written when I was in no condition to fix anything (although, I never wanted to change anything, anyway). I have a short story written too, but it's not fully...
  19. N

    Happy Birthday, EvilSeph!

    It's the 25th day of the new year and everything is looking perfect. There is a reason to day. Here is a short glimpse of our backstage: On IRC, someone will start talking about some plans that s/he has for the community. Then someone else will tell us how we should implement these...
  20. N

    Editors?

    I'd say TextMate if you're on a Mac. The `e' editor if you're on Windows. gEdit or mEdit if you're on Linux. (Note that only gEdit/mEdit are free on that list) XCode's inability to be customized stops me from using it, even for a minute. NotePad++ is always a free alternative to my suggestion...
Top