User Cybis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T23:46:10Zhttp://stackoverflow.com/feeds/user/32998http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810339/starter-project-to-learn-a-new-language/1810349#18103493Answer by Cybis for Starter project to learn a new language ?Cybis2009-11-27T19:35:12Z2009-11-27T19:35:12Z<p>You could always solve some problems on <a href="http://projecteuler.net" rel="nofollow">Project Euler</a>. My favorite starter project, however, is usually a sudoku solver or tic-tac-toe bot. </p>
http://stackoverflow.com/questions/289106/are-there-any-static-duck-typed-languages3Are there any static duck-typed languages?Cybis2008-11-14T02:47:35Z2009-11-11T20:16:44Z
<p><a href="http://stackoverflow.com/questions/286584/can-i-specify-interfaces-when-i-declare-a-member#287669">Can I specify interfaces when I declare a member?</a></p>
<p>After thinking about this question for a while, it occurred to me that a static-duck-typed language might actually work. Why can't predefined classes be bound to an interface at compile time? Example:</p>
<pre><code>public interface IMyInterface
{
public void MyMethod();
}
public class MyClass //Does not explicitly implement IMyInterface
{
public void MyMethod() //But contains a compatible method definition
{
Console.WriteLine("Hello, world!");
}
}
...
public void CallMyMethod(IMyInterface m)
{
m.MyMethod();
}
...
MyClass obj = new MyClass();
CallMyMethod(obj); // Automatically recognize that MyClass "fits"
// MyInterface, and force a type-cast.
</code></pre>
<p>Do you know of any languages that support such a feature? Would it be helpful in Java or C#? Is it fundamentally flawed in some way? I understand you could subclass MyClass and implement the interface or use the Adapter design pattern to accomplish the same thing, but those approaches just seem like unnecessary boilerplate code.</p>
http://stackoverflow.com/questions/1186228/how-can-visiting-a-webpage-infect-your-computer0How can visiting a webpage infect your computer? [closed]Cybis2009-07-27T02:56:01Z2009-11-04T14:51:22Z
<p>My mother's computer recently became infected with some sort of rootkit. It began when she received an email from a close friend asking her to check out some sort of webpage. I never saw it, but my mother said it was just a blog of some sort, nothing interesting.</p>
<p>A few days later, my mother signed in on the Paypal homepage. Paypal gave some sort of security notice which stated that to prevent fraud, they needed some additional personal information. Among some of the more normal information (name, address, etc...), they asked for her SSN and bank pin number! She refused to submit that information and complained to Paypal that they shouldn't ask for it. Paypal said they would never ask for such information and that it wasn't their webpage. There was no such "security notice" when she logged in from a different computer, only from her's. It wasn't a phishing attempt or redirection of some sort, since I.E. clearly showed an SSL connection to <a href="https://www.paypal.com/" rel="nofollow">https://www.paypal.com/</a></p>
<p>She remembered that strange email and asked her friend about it - the friend never sent it! Obviously, something on her computer was intercepting the paypal homepage and that email was the only other strange thing to happen recently. She entrusted me to fix everything. I nuked the computer from orbit since it was the only way to be sure (i.e., reformatted her hard drive and did a clean install). That seemed to work fine. </p>
<p>But that got me wondering... my mother didn't download & run anything. There were no weird ActiveX controls running (she's not computer illiterate and knows not to install them), and she only uses webmail (i.e., no Outlook vulnerability). When I think webpages, I think content presentation - javascript, HTML, and maybe some flash. How could that possibly install and execute arbitrary software on your computer? It seems kinda weird/stupid that such vulnerabilities exist.</p>
http://stackoverflow.com/questions/357138/trying-to-add-ajax-tabcontainer-getting-error-the-controls-collection-cannot-be1Trying to add ajax TabContainer, getting error "The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>)."Cybis2008-12-10T18:53:40Z2009-10-21T12:59:03Z
<p>I want to add an ajax:TabContainer to my webpage. I don't get any build errors, but when I try to browse to the page, it gives me the error: "The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).".</p>
<p>I re-downloaded the Ajax Control Toolkit for the sample sites, opened the solution in VS, ran the sample for the TabContainer, and it worked fine. I thought it was perhaps a different version of the Ajax Control Toolkit - but no. The AjaxControlToolkit.dll files being referenced by the two sites are identical. Why can't I get the TabContainer to work on my site?</p>
<p>There is one more issue, but I don't know whether it's related. I just recently installed Visual Studio 2008. As soon as I opened my website, VS automatically created the tab "AJAX Controls" in the toolbox and filled it with all the ajax controls. In the source code, all controls are prefixed with "ajax" - i.e., "< ajax:TabContainer runat="server" ... >".</p>
<p>However, when I opened the sample website, Visual studio created another tab in the toolbox - "AjaxControlToolkit Components", filled with all the same controls as in "AJAX Controls". I don't know why it added the same controls twice (but, strangely enough, with different icons for them in the toolbox). In the source code, all controls are prefixed with "ajaxToolkit" - i.e., "< ajaxToolkit:TabContainer runat="server" ... >". What's going on here? I just want the darn TabContainer to work on my site.</p>
http://stackoverflow.com/questions/1350097/how-would-you-show-people-that-programming-can-be-interesting-and-fun/1350112#13501124Answer by Cybis for How would you show people that programming can be interesting and fun?Cybis2009-08-29T01:12:29Z2009-08-29T01:12:29Z<p>I think video games are what turn most people on to programming. Create something fun (an Unreal Tournament mutator perhaps?) and show it off to people. </p>
<p>I learned programming by trying to make Quake 2 mods. I really didn't know C++, but still managed to do some awesome stuff (Rocket-launcher machinegun, baby!)</p>
http://stackoverflow.com/questions/1332600/has-this-algorithm-been-invented-already/1332850#13328506Answer by Cybis for Has this algorithm been invented already?Cybis2009-08-26T07:09:11Z2009-08-26T07:25:23Z<p>This looks very much like <a href="http://en.wikipedia.org/wiki/Dijkstra%27s%5Falgorithm" rel="nofollow">Dijkstra's algorithm</a>. There might be some minor differences and I'm not about to prove whether your algorithm is correct. From what I can tell, you loop through each node starting at the "end", loop through each connecting node out from the current node, and keep track of the minimum distance from each connecting node to "end". </p>
<p>Personally, I believe simple algorithms like this should be unpatentable, because any shortest path algorithm you come up with will likely work in a similar way*. Patents are for protecting your idea, not for preventing other people from independently arriving at a similar solution for a similar problem.</p>
<p>*EDIT: Unless, of course, you invent some crazy complex heuristic meant for quickly processing a special case of the "shortest path" problem.</p>
http://stackoverflow.com/questions/306328/when-should-correct-answers-get-downvoted17When should correct answers get downvoted? [closed]Cybis2008-11-20T18:25:04Z2009-08-21T16:32:32Z
<p>Lately, I've seen quite a few correct answers get downvoted simply because someone didn't think they were the <em>best</em> answer. For example: someone asks for a regular expression to parse a url in their Python script. You give a relatively simple 1-liner that does exactly that. Then you get downvoted for not recommending the "urlparse" module instead of a regex.</p>
<p>Should we more carefully consider whether to down-vote? Or is this question simply "much ado about nothing"?</p>
http://stackoverflow.com/questions/345021/how-do-you-handle-special-case-data-when-modeling-a-database5How do you handle "special-case" data when modeling a database?Cybis2008-12-05T20:27:15Z2009-07-21T07:55:41Z
<p>Our organization provides a variety of services to our clients (e.g., web hosting, tech support, custom programming, etc...). There's a page on our website that lists all available services and their corresponding prices. This was static data, but my boss wants it all pulled from a database instead.</p>
<p>There are about 100 services listed. Only two of them, however, have a non numeric value for "price" (specifically, the strings "ISA" and "cost + 8%" - I really don't know what they're supposed to mean, so don't ask me). </p>
<p>I'd hate to make the "price" column a varchar just because of these two listings. My current approach is to create a special "price_display" field, which is either blank or contains the text to display in place of the price. This solution feels too much like a dirty hack though (it would needlessly complicate the queries), so is there a better solution?</p>
http://stackoverflow.com/questions/607830/use-of-haskell-state-monad-a-code-smell8Use of Haskell state monad a code smell?Cybis2009-03-03T19:44:31Z2009-07-05T04:05:53Z
<p>God I hate the term "code smell", but I can't think of anything more accurate.</p>
<p>I'm designing a high-level language & compiler to <a href="http://compsoc.dur.ac.uk/whitespace/" rel="nofollow">Whitespace</a> in my spare time to learn about compiler construction, language design, and functional programming (compiler is being written in Haskell).</p>
<p>During the code generation phase of the compiler, I have to maintain "state"-ish data as I traverse the syntax tree. For example, when compiling flow-control statements I need to generate unique names for the labels to jump to (labels generated from a counter that's passed in, updated, & returned, and the old value of the counter must never be used again). Another example is when I come across in-line string literals in the syntax tree, they need to be permanently converted into heap variables (in Whitespace, strings are best stored on the heap). I'm currently wrapping the entire code generation module in the state monad to handle this.</p>
<p>I've been told that writing a compiler is a problem well suited to the functional paradigm, but I find that I'm designing this in much the same way I would design it in C (you really can write C in any language - even Haskell w/ state monads). </p>
<p>I want to learn how to think in Haskell (rather, in the functional paradigm) - not in C with Haskell syntax. Should I really try to eliminate/minimize use of the state monad, or is it a legitimate functional "design pattern"?</p>
http://stackoverflow.com/questions/1014909/when-do-you-believe-software-ais-will-truly-be-able-to-pass-the-turing-test/1021099#10210990Answer by Cybis for When do you believe software AIs will truly be able to pass the Turing Test?Cybis2009-06-20T06:35:35Z2009-06-20T06:35:35Z<p>Passing the Turing test isn't a precise measure of the state of artificial intelligence science/technology. It would depend on the examiner & the topic of discussion.</p>
<p>A fundamental problem that isn't often brought up is that computers are deterministic - little more than state machines, actually - but we don't know yet whether humans are or not. If humans are capable of free choice, then we are by definition non-deterministic, which means there's a possibility that we can solve a wider class of problems than any Turing machine. If that's the case, deterministic computers will never achieve human-level intelligence. </p>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/921860#92186020Answer by Cybis for Worst UI You've Ever UsedCybis2009-05-28T16:30:19Z2009-05-28T16:30:19Z<ol>
<li><p>Automatically putting focus on the "user-name" field of a login form. I can't tell you how many times I entered part of my password in the "user-name" field just because I didn't want to wait for the page to finish loading. </p></li>
<li><p>Flash websites. They're slow, annoying with all the animation, and you can't right-click / "open in new tab" the hyperlinks.</p></li>
</ol>
http://stackoverflow.com/questions/919333/how-to-write-a-simple-game-using-visual-studio-c-2005/919349#9193490Answer by Cybis for How to write a simple game using visual studio c++ 2005Cybis2009-05-28T05:44:55Z2009-05-28T05:44:55Z<p>I used to make side scrolling shoot-em-up's using GDI+ - I got about 20 to 30 frames per second animation, looked pretty good (this was in Visual Basic .NET, btw). Experiment with the TextureBrush class - that's the secret to easy & fast animation.</p>
<p>My knowledge is a bit dated, however. No doubt you'll get people here saying you should download the Express Edition of Visual Studio 2008 and play around with WPF (probably not a bad idea, though I've never touched WPF yet).</p>
http://stackoverflow.com/questions/916978/python-equivalent-of-maplist/917520#9175202Answer by Cybis for Python equivalent of maplist?Cybis2009-05-27T19:13:39Z2009-05-27T19:13:39Z<p>Eewww... Slicing a list is a linear-time operation. All of the solutions posted thus far have O(n^2) time complexity. Lisp's maplist, I believe, has O(n).</p>
<p>The problem is, Python's list type isn't a linked list. It's a dynamically resizable array (i.e., like C++ STL's "vector" type). </p>
<p>If maintaining linear time complexity is important to you, it isn't possible to create a "maplist" function over Python lists. It would be better to modify your code to work with indices into the list, or convert the list into an actual linked list (still a linear-time operation, but would have a lot of overhead).</p>
http://stackoverflow.com/questions/912161/how-to-handle-it-if-the-management-just-keep-on-giving-me-spec-after-spec-non-sto/912665#9126651Answer by Cybis for how to handle it if the management just keep on giving me spec after spec non-stop?Cybis2009-05-26T20:45:34Z2009-05-26T20:45:34Z<p>I'm in exactly the same boat as you. I studied computer science because it was interesting. Now, I kinda regret it because I don't think I could ever learn to handle being forced to program all day, every friggin day, until I retire, regardless of how I spend my precious little free time.</p>
<p>I'd suggest you find a career counselor. Some universities will even provide free career counseling to its recent graduates. A professional in these matters will likely give you better advice than random people on stackoverflow.</p>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/899157#8991577Answer by Cybis for What is your longest-held programming assumption that turned out to be incorrect?Cybis2009-05-22T18:00:44Z2009-05-22T18:00:44Z<p>That bytes and characters were the practically same thing - "ascii" was just a way of mapping a byte value to a glyph on the screen.</p>
<p>Reading about unicode really opened my eyes (although I still don't fully understand it).</p>
http://stackoverflow.com/questions/841792/what-is-meant-by-the-statement-that-functional-programs-are-more-tractable-mathe/841824#8418248Answer by Cybis for What is meant by the statement that functional programs are "more tractable mathematically"?Cybis2009-05-08T21:14:52Z2009-05-08T21:14:52Z<p>It means that you can more easily prove a program correct (e.g., through mathematical induction). Programs that are stateful (like most programs written in object-oriented languages) are extremely difficult to model through equations, hence it's difficult to reason about them through equations and mathematical theorems. </p>
<p>This may sound like theoretical mumbo-jumbo, but has important applications. Software that people depend their lives on (air traffic control, missile guidance systems, etc...) need to be proven correct, because traditional testing simply cannot cover all possible situations.</p>
http://stackoverflow.com/questions/783738/why-dont-files-automatically-get-checked-out-from-vss-when-i-edit-them0Why don't files automatically get checked out from VSS when I edit them?Cybis2009-04-23T22:10:09Z2009-04-23T22:18:00Z
<p>This is driving me crazy and has resulted in lost work (not much, at least).</p>
<p>Normally, when I edit a file in Visual Studio, it's supposed to automatically check that file out in source safe. On multi-project solutions (e.g., web app with class libraries), sometimes none of the files in one project would automatically get checked out, though exiting & reloading visual studio may fix that problem temporarily. Furthermore, project files are never automatically checked out. Whenever I add/remove code files, I have to remember to explicitly check out the project file as well (otherwise we'll have issues with code files not showing up in the solution explorer, or trying to load non-existing files).</p>
<p>We're using VS-2008 and VSS 2005. Do you have any idea how I might fix this? There are no more visual-studio updates/fixes on Microsoft Update.</p>
http://stackoverflow.com/questions/696102/should-focus-be-given-to-a-control-when-a-webpage-finishes-loading8Should focus be given to a control when a webpage finishes loading?Cybis2009-03-30T05:45:24Z2009-03-30T18:48:58Z
<p>Here are some examples of what I mean:</p>
<p>google.com - focus is set on the "search" box</p>
<p>gmail.google.com - focus is set on the "user name" field (actually, most web email clients do this).</p>
<p>stackoverflow, ask a question - focus is set on the "title" box.</p>
<p>Sometimes, this is a convenient feature - e.g., on Google. From a usability standpoint, however, is it really considered a good feature to have on login pages? </p>
<p>Personally, I have often entered my user name, started to enter my password, then the page finished loading and had focus put back onto the user name field. Unfortunately, since I have complex passwords that force me to look at the keyboard while typing, I fail to notice when focus shifts. I often wind up typing my password in the unmasked user name field for anyone standing behind me to see. </p>
<p>Another situation, less dangerous but still annoying, is when I'm typing a url in my address bar while my homepage is still loading. As soon as it finishes, however, and if I'm not done entering the url, focus is stolen from me and put on some other field. </p>
<p>Should websites and/or browsers be programmed so that focus won't change if the user is already interacting with the site or the browser? Do problems like this bother ordinary (i.e., non-programmer) users?</p>
http://stackoverflow.com/questions/698493/utilizing-algorithms-in-academic-papers/698515#6985151Answer by Cybis for Utilizing algorithms in academic papersCybis2009-03-30T18:42:38Z2009-03-30T18:42:38Z<p>I would probably contact the author in this situation.</p>
http://stackoverflow.com/questions/691148/pythonic-way-to-implement-a-tokenizer/691187#6911872Answer by Cybis for Pythonic way to implement a tokenizerCybis2009-03-27T19:30:49Z2009-03-27T19:30:49Z<p>"Is there a better alternative to just simply returning a list of tuples?"</p>
<p>That's the approach used by the "tokenize" module for parsing Python source code. Returning a simple list of tuples can work very well.</p>
http://stackoverflow.com/questions/691093/a-reasonable-use-of-threading-in-c/691141#6911410Answer by Cybis for A reasonable use of threading in C#?Cybis2009-03-27T19:19:22Z2009-03-27T19:19:22Z<p>It might work, but nobody could say for sure without an understanding of the third-party API. Aborting the thread like that could leave the component in some invalid state that it might not be able to recover from, or maybe it won't free resources that it allocated (think - what if one of your routines just stopped executing half-way through. Could you make any guarantees about the state your program would be in?).</p>
<p>As Cicil suggested, it might be a good idea to ping the server first. </p>
http://stackoverflow.com/questions/691021/sql-join-on-vs-equals/691076#6910761Answer by Cybis for SQL JOIN: ON vs EqualsCybis2009-03-27T19:01:53Z2009-03-27T19:01:53Z<p>While there is no difference technically, you need to be extra careful about doing joins using the first method. If you get it wrong by accident, you could end up doing a cartesian join between your a and b tables (a very long, memory & cpu intensive query - it will match each single row in a with all rows in b. Bad if a and b are large tables to begin with). Using an explicit INNER JOIN is both safer and easier to read.</p>
http://stackoverflow.com/questions/663870/c-class-why-need-main/663932#6639321Answer by Cybis for c++ class why need main?Cybis2009-03-19T20:31:11Z2009-03-19T20:31:11Z<pre><code>class animal
{
public:
animal();
~animal();
public:
method1(int arg1);
private:
int var1;
};
</code></pre>
<p>Notice you didn't put a semi-colon at the end of the class declaration. C++ requires it and sometimes gives confusing/misleading error messages if you forget it.</p>
http://stackoverflow.com/questions/649274/why-dont-haskell-list-comprehensions-cause-an-error-when-pattern-match-fails4Why don't Haskell list comprehensions cause an error when pattern match fails?Cybis2009-03-16T04:34:10Z2009-03-17T15:22:39Z
<p>I'm trying to understand how Haskell list comprehensions work "under the hood" in regards to pattern matching. The following ghci output illustrates my point:</p>
<pre><code>Prelude> let myList = [Just 1, Just 2, Nothing, Just 3]
Prelude> let xs = [x | Just x <- myList]
Prelude> xs
[1,2,3]
Prelude>
</code></pre>
<p>As you can see, it is able to skip the "Nothing" and select only the "Just" values. I understand that List is a monad, defined as (source from Real World Haskell, ch. 14):</p>
<pre><code>instance Monad [] where
return x = [x]
xs >>= f = concat (map f xs)
xs >> f = concat (map (\_ -> f) xs)
fail _ = []
</code></pre>
<p>Therefore, a list comprehension basically builds a singleton list for every element selected in the list comprehension and concatenates them. If a pattern match fails at some step, the result of the "fail" function is used instead. In other words, the "Just x" pattern doesn't match so [] is used as a placeholder until 'concat' is called. That explains why the "Nothing" appears to be skipped.</p>
<p>What I don't understand is, how does Haskell know to call the "fail" function? Is it "compiler magic", or functionality that you can write yourself in Haskell? Is it possible to write the following "select" function to work the same way as a list comprehension?</p>
<pre><code>select :: (a -> b) -> [a] -> [b]
select (Just x -> x) myList -- how to prevent the lambda from raising an error?
[1,2,3]
</code></pre>
http://stackoverflow.com/questions/649454/what-is-the-best-way-to-average-two-colors-that-define-a-linear-gradient/649561#6495611Answer by Cybis for What is the best way to average two colors that define a linear gradient?Cybis2009-03-16T07:29:56Z2009-03-16T08:08:09Z<p>Yes. You can average two colors together like that. It's the approach used by OpenGL to blend colors together (e.g., in creating mip maps for rendering distant objects, or rendering a 50% transparent texture). It is fast, simple, and "good enough" for many situations. It isn't completely realistic, however, and probably wouldn't be used on photograph-quality images.</p>
http://stackoverflow.com/questions/649378/non-stop-exceptions-in-c/649410#6494101Answer by Cybis for Non-Stop Exceptions in C#Cybis2009-03-16T06:15:28Z2009-03-16T06:15:28Z<p>There's no such thing as a "non-stop" exception in C#. To control what happens during an exception, you use a try-catch block.</p>
<pre><code>HttpWebRequest request = (HttpWebRequest)WebRequest.Create(String.Format("{0}?{1}",
URLToHit,
queryString));
request.Method = "GET";
request.Timeout = 1000; // set 1 sec. timeout
request.ProtocolVersion = HttpVersion.Version11; // use HTTP 1.1
try
{
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
// Code here runs if GetResponse() was successful.
}
catch (WebException ex)
{
// Code here runs if GetResponse() failed.
}
// Code here is always run unless another exception is thrown.
</code></pre>
<p>The reason there are no "non-stop exceptions" is because, if there is an exception, your code can't possibly do what you intended. For example, what would you expect the "response" variable to contain? What would you do with it? The try-catch block gives you full control over this.</p>
http://stackoverflow.com/questions/608166/how-often-and-with-whom-do-you-discuss-design-patterns/608224#6082240Answer by Cybis for How often and with whom do you discuss design patterns?Cybis2009-03-03T21:16:18Z2009-03-03T21:16:18Z<p>There's very little collaboration where I work. Everyone is assigned to a different project so it's difficult to debate the suitability of various design patterns for any particular project. My only chance to discuss design patterns, or anything programming related, is on stackoverflow.</p>
http://stackoverflow.com/questions/555342/how-to-convince-management-on-the-importance-of-teamwork4How to convince management on the importance of teamwork?Cybis2009-02-17T02:28:25Z2009-02-17T05:20:39Z
<p>I've worked for a state agency for over 1.5 years (arguably far longer than I should have, but that's another matter). Most of what we do is create & maintain ASP.NET web applications for other agencies. In the time that I've been here, I haven't seen any team projects. It's always 1 project per developer (although projects do tend to migrate from developer to developer). If the developers were highly skilled, maybe this wouldn't be a problem, but it seems we still have a lot to learn (myself included - I'm no expert and have done my fair share of wtf's). I've seen databases that were badly normalized (all columns nullable, even those that seemed to be used as primary keys), cascading style sheet-based security (making certain controls invisible until people login), and lots of code duplication. </p>
<p>Furthermore, we're usually expected to start coding even while major requirements issues are still being decided upon, and only the developer, the client, and sometimes a non-technical business analyst is responsible for testing. It's easy for buggy code to go into production.</p>
<p>Rather than give up/quit, I want to see if I can improve working conditions. At the next "team" meeting, I want to suggest that they assign 2-3 developers per project rather than one, so that we can finally learn from each other. I want to be able to discuss architectural decisions and best practices with someone who is as responsible for the project as I.</p>
<p>My question is: can our department be more productive with multiple developers per project (realize, this would mean we'd work on fewer projects concurrently), or should I be arguing for something else instead (e.g., code reviews or agile practices - although none of us know how to do agile)? What resources could I provide to convince management?</p>
<p>EDIT:</p>
<p>Some responses thus far ignore an important matter: many of the developers I've worked with have been laid off recently due to a budget crunch. There are only two developers left that I've worked with before (and one only telecommutes now). There are other developers in the department though, but I've never met them before (yes, after 1.5 years, most of the people there are still strangers to me. There really isn't much opportunity to socialize). I honestly have no idea whether other devs would support my idea, and I don't know how to introduce it to them. </p>
http://stackoverflow.com/questions/543877/if-you-could-take-one-computer-science-course-now-what-would-it-be/543925#5439252Answer by Cybis for If you could take one computer science course now, what would it be?Cybis2009-02-12T23:04:41Z2009-02-12T23:04:41Z<p>Either Computer Networks or Compiler Construction - both were electives at my school which I never quite had the opportunity to take due to schedule conflicts.</p>
<p>(Technically, several of my classes taught various elements of compiler construction - parsing, managing symbol tables, activation records - but they were more about machine/language theory than about how to actually build a compiler).</p>
http://stackoverflow.com/questions/522754/programming-school-vs-professional/522940#5229401Answer by Cybis for Programming: School vs ProfessionalCybis2009-02-07T01:51:04Z2009-02-07T01:51:04Z<ol>
<li><p>Algorithm design & analysis, data structures, lots of courses dealing with processor architecture, OO design, operating systems, databases, compilers, and we worked with a wide variety of languages (x86 & MIPS assembler, C++, java, C#, Scheme, Common Lisp, Prolog). I also loved my AI and computer graphics classes (computer graphics was heavy on the mathematics behind 3d rendering, but we did have a few OpenGL-based projects). </p></li>
<li><p>The business side of the field. I learned quickly after graduating that being a professional programmer is only about providing business solutions. As a software engineer, you solve business problems, not intellectual ones. You don't play with AI, write ray tracers, or build compilers - you build seemingly useless web apps for your clients based solely on vague, conflicting requirements. It's also your job, not your client's, to determine what your client wants out of a product. You only do what makes money, not what's actually interesting. I loved CS while I was blind to this business aspect - now I kinda wish I never chose that as my major.</p></li>
<li><p>Not that I can think of.</p></li>
</ol>
http://stackoverflow.com/questions/1809783/just-finished-learning-x86-assembly-language-what-can-i-do-with-it/1810220#1810220Comment by Cybis on Just finished learning x86 assembly language. What can I do with it?Cybis2009-11-27T19:32:05Z2009-11-27T19:32:05ZDamn, that sounds cool. You just made me want to relearn assembly. +1http://stackoverflow.com/questions/1495768/mysql-5-1-client-keyboard-settingComment by Cybis on mysql 5.1 client keyboard settingCybis2009-09-30T02:02:58Z2009-09-30T02:02:58Ztranslate.google.com: MySQL 5.1 client after the keys into the key emerging economies such as characters, rather than go to line ~ the top or the last.http://stackoverflow.com/questions/1495768/mysql-5-1-client-keyboard-setting/1495774#1495774Comment by Cybis on mysql 5.1 client keyboard settingCybis2009-09-30T01:57:33Z2009-09-30T01:57:33ZWhat is the sound, on the one hand not clapping?http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238245#238245Comment by Cybis on Worst UI You've Ever UsedCybis2009-09-08T21:03:25Z2009-09-08T21:03:25ZThis 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?http://stackoverflow.com/questions/1355803/why-is-the-c-syntax-so-complicatedComment by Cybis on Why is the C++ syntax so complicated?Cybis2009-08-31T04:59:27Z2009-08-31T04:59:27Z@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.http://stackoverflow.com/questions/1355803/why-is-the-c-syntax-so-complicatedComment by Cybis on Why is the C++ syntax so complicated?Cybis2009-08-31T04:54:41Z2009-08-31T04:54:41ZBaldur - 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 >.http://stackoverflow.com/questions/1350097/how-would-you-show-people-that-programming-can-be-interesting-and-fun/1350184#1350184Comment by Cybis on How would you show people that programming can be interesting and fun?Cybis2009-08-29T04:39:32Z2009-08-29T04:39:32ZDavid, 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. http://stackoverflow.com/questions/1350097/how-would-you-show-people-that-programming-can-be-interesting-and-fun/1350111#1350111Comment by Cybis on How would you show people that programming can be interesting and fun?Cybis2009-08-29T01:32:11Z2009-08-29T01:32:11ZThe 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.http://stackoverflow.com/questions/1350097/how-would-you-show-people-that-programming-can-be-interesting-and-fun/1350111#1350111Comment by Cybis on How would you show people that programming can be interesting and fun?Cybis2009-08-29T01:25:21Z2009-08-29T01:25:21ZIt 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.http://stackoverflow.com/questions/1350097/how-would-you-show-people-that-programming-can-be-interesting-and-fun/1350109#1350109Comment by Cybis on How would you show people that programming can be interesting and fun?Cybis2009-08-29T01:18:15Z2009-08-29T01:18:15ZGame programming is fun, as long as it isn't your job.http://stackoverflow.com/questions/1343679/ironpython-and-asp-net-ready-for-prime-time/1350056#1350056Comment by Cybis on IronPython and ASP.NET: ready for prime time?Cybis2009-08-29T01:08:14Z2009-08-29T01:08:14ZYou do know that stackoverflow was written with ASP.NET, don't you? http://stackoverflow.com/questions/1332600/has-this-algorithm-been-invented-already/1332850#1332850Comment by Cybis on Has this algorithm been invented already?Cybis2009-08-26T18:55:52Z2009-08-26T18:55:52ZAnyway, 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. http://stackoverflow.com/questions/1332600/has-this-algorithm-been-invented-already/1332850#1332850Comment by Cybis on Has this algorithm been invented already?Cybis2009-08-26T18:48:34Z2009-08-26T18:48:34ZMy 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. http://stackoverflow.com/questions/1332600/has-this-algorithm-been-invented-already/1332850#1332850Comment by Cybis on Has this algorithm been invented already?Cybis2009-08-26T09:02:56Z2009-08-26T09:02:56ZI 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. http://stackoverflow.com/questions/1332600/has-this-algorithm-been-invented-already/1332850#1332850Comment by Cybis on Has this algorithm been invented already?Cybis2009-08-26T08:44:00Z2009-08-26T08:44:00ZHmm... 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).