Cybis

2,671
Reputation
272 views

Registered User

Name Cybis
Member for 1 year
Seen 2 days ago
Website
Location
Age
8h
awarded  Nice Answer
Nov
27
answered Starter project to learn a new language ?
Nov
27
comment Just finished learning x86 assembly language. What can I do with it?
Damn, that sounds cool. You just made me want to relearn assembly. +1
Nov
24
awarded  Popular Question
Nov
1
awarded  Yearling
Sep
29
awarded  Necromancer
Sep
12
accepted Best way to learn First Order Logic
Sep
8
comment Worst UI You’ve Ever Used
This reminds me of Eclipse. I tried some ancient version of Eclipse once (sometime around 2002), and it was absolutely horrible, painfully slow, unintuitive, and had an ugly color scheme. I vowed never to use Eclipse again - until a school project in 2006. I didn't recognize it. By then, Eclipse was actually pretty good. Maybe GIMP has gone through the same sort of (r)evolution?
Sep
3
awarded  Popular Question
Aug
31
comment Why is the C++ syntax so complicated?
@Eduardo Leon: When I was a beginning programmer I would have strongly disagreed with you. Now that I'm a computer science graduate and worked 2 years in industry, I strongly AGREE. You can't gain the low-level understanding by dabbling only in high-level languages.
Aug
31
comment Why is the C++ syntax so complicated?
Baldur - C++ isn't only for writing console applications. You can write windowed apps, background services, embedded systems, games... basically anything. If you're writing something that's not a console app, you won't often need < iostream >.
Aug
29
comment How would you show people that programming can be interesting and fun?
David, people with absolutely zero experience programming today could still potentially become the next John Carmack someday, if only they have the motivation to start. I don't think the OP suggested he try to convince people to take a job programming, but rather convince people to just give it a try and see if they like it.
Aug
29
comment How would you show people that programming can be interesting and fun?
The iPhone is just an expensive toy. Worse, a status symbol. It kinda sickens me that people think they need the latest expensive gadgets just because everyone else has them.
Aug
29
comment How would you show people that programming can be interesting and fun?
It depends on what you're interested in. I wouldn't be interested in iPhone development, or writing some blogging engine. I still enjoy programming though - like 3d apps with OpenGL, or playing with algorithms from various AI books.
Aug
29
comment How would you show people that programming can be interesting and fun?
Game programming is fun, as long as it isn't your job.
Aug
29
answered How would you show people that programming can be interesting and fun?
Aug
29
comment IronPython and ASP.NET: ready for prime time?
You do know that stackoverflow was written with ASP.NET, don't you?
Aug
26
accepted Has this algorithm been invented already?
Aug
26
comment Has this algorithm been invented already?
Anyway, you've changed the question from "is this algorithm patented?" to "has anyone seen this before?". It's now a moot point. Unless it's been published (subscribe to the ACM journal if you want), It's impossible to determine, in general, whether someone has invented a particular algorithm before.
Aug
26
comment Has this algorithm been invented already?
My senior level "analysis of algorithms" course had an entire lecture devoted to Dijkstra's algorithm, including a proof of correctness and calculating its time complexity. I'm not about to reproduce all of that here. While it's probably the case that nobody has invented your specific implementation (i.e., how you traverse the graph, how you keep track of the next nodes to visit, how you compute the path from the costs), your still just traversing through every edge in the graph starting at "end" and keeping track of the minimum "cost" for each connecting node.
Aug
26
comment Has this algorithm been invented already?
I looked at the code again in your revision history (it's 2:00am and I can't get to sleep - I thought reading code would help) - and I think your algorithm does unnecessary processing. Any two nodes in "nodesRemaining" could be neighbors - hence, if a smaller "cost" is found a node that already exists in "nodesRemaining" would be added to "nodesRemainingTemp", thereby causing it and its neighbors to be processed at least twice.
Aug
26
comment Has this algorithm been invented already?
Hmm... I think your pseudocode version is even harder to understand. It's certainly ambiguous. Still, this looks like Dijkstra's. Granted, your "list of nodes whose neighbors need checking" isn't exactly what's spelled out in the Wikipedia article, but it serves precisely the same purpose as a "visited nodes list" - to keep track of the fringe (although, dijkstra's doesn't require a visited nodes list - it just needs to mark nodes as visited or not. Whether you use a list for that is just an implementation detail).
Aug
26
revised Has this algorithm been invented already?
added 136 characters in body; added 8 characters in body
Aug
26
revised Has this algorithm been invented already?
deleted 18 characters in body
Aug
26
comment Has this algorithm been invented already?
I should have read the comments before posting an answer. A pseudocode (or even Python) snippet would have been much easier to recognize, but regardless, this is just an implementation of Dijkstra's algorithm except you begin at "end" rather than "start".
Aug
26
answered Has this algorithm been invented already?
Jul
27
asked How can visiting a webpage infect your computer?
Jul
21
comment How do you handle “special-case” data when modeling a database?
This project was 7 months ago, at a place I no longer work. Thanks though, it'll be useful in the future.
Jul
5
comment Use of Haskell state monad a code smell?
I accepted based on the paper he linked to, not the answer itself (I agree the answer alone was quite poor). Now that I've thought about it again, that probably wasn't a good enough reason. Proper use of monads is about both modularity (your answer) and abstraction (Norman Ramsey's answer). If I accept this, both will be at the top. That would be best.
Jul
4
comment Trying to add ajax TabContainer, getting error “The Controls collection cannot be modified because the control contains code blocks (i.e. <% … %>).”
Accepted answer changed, considering you're the first to actually answer the question correctly. Thank you! However, there's no need for me to learn ASP.NET MVC now. I lost my job recently. Probably a good thing in the long run though, I can't stand web development anymore.
Jul
4
comment Use of Haskell state monad a code smell?
Very nice answer, though I'm not sure it's proper to change the "accepted" answer two months later. Much thanks regardless.
Jun
25
awarded  Good Answer
Jun
20
answered When do you believe software AIs will truly be able to pass the Turing Test?
Jun
6
awarded  Nice Answer