User Firas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T18:18:56Zhttp://stackoverflow.com/feeds/user/23153http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1854824/rails-if-object-in-an-array/1854838#18548381Answer by Firas for rails if object in an arrayFiras2009-12-06T09:09:41Z2009-12-06T09:09:41Z<p><code>@line_items & @quote_items</code> should return an array that includes the common items between them. @<code>line_items - @quote_items</code> return items that are in <code>@line_items</code> but not in <code>@quote_items</code>.Your code should work though, are you sure there are common items between them? Note that item equality is checked by the == operator, so you might need to provide that for your item class. </p>
http://stackoverflow.com/questions/1840154/rpg-dialogue-engine-structure/1843171#18431711Answer by Firas for RPG dialogue engine / structureFiras2009-12-03T21:50:25Z2009-12-03T21:50:25Z<p>You can certainly use a scripting language to handle dialogue. Basically a script might look like this:</p>
<pre><code>ShowMessage("Hello " + hero.name + ", how can I help you?")
choices = { "Open the door for me", "Tell me about yourself", "Nevermind" }
chosen = ShowChoices(choices)
if chosen == 0
if hero.inventory["gold key"] > 0
ShowMessage("You have the key! I'll open the door for you!")
isGateOpen = true
else
ShowMessage("I'm sorry, but you need the gold key")
end if
else if chosen == 1
if isGateOpen
ShowMessage("I'm the gate keeper, and the gate is open")
else
ShowMessage("I'm the gate keeper and you need gold key to pass")
end if
else
ShowMessage("Okay, tell me if you need anything")
end if
</code></pre>
<p>This is fine for most games. The scripting language can be simple and you can write more complicated logical branches. Your engine will have some representation of the world that is exposed to the scripting language. In this example, this means the name of the hero and the items in the inventory, but you could expose anything you like. You also define functions that could be called by scripts to do things like show a message or play some sound effect. You need to keep track of some global data that is shared between scripts, such as whether a door is open or a quest is done (perhaps as part of the map and quest classes).</p>
<p>In some games however, scripting could get tedious, especially if the dialogue is more dynamic and depends on many conditions (say, character mood and stats, npc knowledge, weather, items, etc.) Here it is possible to store your dialogue tree in some format that allows easily specifying preconditions and outcomes. I don't know if this is the way to do it, but I've once asked a <a href="http://stackoverflow.com/questions/372915/game-logic-in-xml-files">question about storing game logic in XML files</a>. I've found this approach to be effective for my game (in which dialogue is heavily dependent on many factors). In particular, in the future I could easily make a simple dialogue editor that doesn't require much scripting and allow you to simply define dialogue and branches with a graphical user interface.</p>
http://stackoverflow.com/questions/1794079/intuitive-3d-math-resources/1794781#17947811Answer by Firas for Intuitive 3D Math ResourcesFiras2009-11-25T05:09:54Z2009-11-25T05:16:33Z<p>Get <a href="http://rads.stackoverflow.com/amzn/click/1556229119" rel="nofollow">3D Math Primer for Graphics and Game Development</a>. It's not a free online tutorial, but I seriously doubt you could find any online tutorial that covers 3D math in such detail while still being very accessible and beginner-friendly. It's got the best coverage of quaternions that I've come across, and it also introduces all the mathematical formulas with a geometric interpretation so that you know how they relate to computer graphics.</p>
<p>Other than that, here's a good basic <a href="http://chortle.ccsu.edu/VectorLessons/vectorIndex.html" rel="nofollow">Vector Math Tutorial</a>. For Quaternions there's the <a href="http://en.wikipedia.org/wiki/Quaternions%5Fand%5Fspatial%5Frotation" rel="nofollow">Wikipedia article</a> and some other resources you could find with google, but they all seem too brief or tied to a certain technology. Again, just buy that book (or alternatively <a href="http://rads.stackoverflow.com/amzn/click/1584502770" rel="nofollow">this one</a> which covers more topics but spends less time on the basics).</p>
http://stackoverflow.com/questions/1753573/does-anyone-have-any-ideas-for-an-assignment-in-game-programming/1754512#17545121Answer by Firas for Does anyone have any ideas for an assignment in game programming?Firas2009-11-18T08:42:34Z2009-11-18T08:42:34Z<p>Write a simple 2d top down view game where you control some aircraft and have to avoid infrared guided missiles by making them collide into each other, shooting them yourself, or using decoys. The missiles (and your aircraft) should go in curvy paths so you'll need to use some trigonometry to make things look nice. You can add all sorts of things like power ups, new types of missiles, other ships, better tracking AI, etc. You could also make it 3D or multiplayer.</p>
http://stackoverflow.com/questions/1656677/how-do-i-find-a-integer-max-integer-in-an-array-for-ruby-and-return-the-indexed-p/1656733#16567331Answer by Firas for How do I find a integer/max integer in an array for ruby and return the indexed position?Firas2009-11-01T09:29:50Z2009-11-02T02:14:51Z<pre><code>names[ages.index(ages.max)]
</code></pre>
<p>What it does is find the maximum value in ages (ages.max), get the index of the first matching value in ages, and use it to get the corresponding person. Note that if two or more people have the same age which is the maximum, it'll only give you the name of the first one in the array.</p>
<p>Edit: To address your comment, I'm not sure why you need this parallel arrays structure (it'd be much easier if you just had a person object). Nevertheless, you can try something like:</p>
<pre><code>indices = []
ages.each_with_index { |age, i| indices << i if age < 20 }
indices.each { |i| puts names[i] }
</code></pre>
http://stackoverflow.com/questions/1656595/sorting-tables-lua/1656629#16566292Answer by Firas for Sorting Tables - LuaFiras2009-11-01T07:53:06Z2009-11-01T07:53:06Z<p>Assuming you want to compare by HP if name isn't available, how about you change the sort comparison function to:</p>
<pre><code>function(x, y)
if x.Name == nil or y.Name == nil then return x.HP < y.HP
else return x.Name < y.Name and x.HP < y.HP
end
end
</code></pre>
<p>Your problem is that Name isn't a real key if it's not available all the time.</p>
http://stackoverflow.com/questions/1655466/can-you-tell-iostreams-which-characters-to-treat-as-whitespace/1655508#16555085Answer by Firas for Can you tell iostreams which characters to treat as whitespace?Firas2009-10-31T20:19:21Z2009-10-31T20:19:21Z<p>I don't think you can change the default delimiter without creating a new locale, but that seems hackish. What you can use do is use <a href="http://www.cplusplus.com/reference/iostream/istream/getline/" rel="nofollow">getline</a> with a third parameter specifying the delimiter character or you could read the delimiters and not do anything with them (e.g. ss >> h >> d >> m >> d >> s >> d >> f). </p>
<p>You could also write your own parsing class that handles splitting strings for you. Or better yet, use <a href="http://www.boost.org/doc/libs/1%5F36%5F0/doc/html/string%5Falgo/usage.html#id3483755" rel="nofollow">boost::split</a> from Boost's <a href="http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/string%5Falgo.html" rel="nofollow">String Algorithms Library</a>.</p>
http://stackoverflow.com/questions/1654830/using-axis-and-angle-of-rotation-in-glrotate/1654841#16548412Answer by Firas for Using axis and angle of rotation in glrotateFiras2009-10-31T16:22:34Z2009-10-31T16:22:34Z<p>If the axis is defined by the variables x, y, z, and the rotation angle is in the variable angle, then it's as simple as <a href="http://www.opengl.org/documentation/specs/man%5Fpages/hardcopy/GL/html/gl/rotate.html" rel="nofollow">glRotatef(angle, x, y, z)</a></p>
http://stackoverflow.com/questions/1653932/i-need-to-plot-a-graph-on-microsoft-visual-c-2008/1653947#16539470Answer by Firas for i need to plot a graph on microsoft visual c++ 2008Firas2009-10-31T10:03:29Z2009-10-31T10:03:29Z<p>Unfortunately you can't do that with standard C++ alone. You'll have to use some library for graph plotting. You either use something general and low level like GDI or OpenGL, or you use a dedicated graph drawing library. Check this question for a list of such libraries: <a href="http://stackoverflow.com/questions/492893/graph-drawing-c-library">Graph Drawing C++ Library</a>.</p>
http://stackoverflow.com/questions/1653895/should-i-learn-vb-net-or-c/1653913#16539131Answer by Firas for Should I learn VB.NET or C#?Firas2009-10-31T09:46:20Z2009-10-31T09:46:20Z<p>Learn both! It's mostly a matter of personal preference and which syntax you prefer. With that said, from a career point view C# makes you more attractive to recruiters, according to <a href="http://www.codinghorror.com/blog/archives/000128.html" rel="nofollow">this coding horror article</a>, C# programmers are paid more than VB.NET programmers.</p>
<p>Whatever you choose to learn, make sure you know enough of the other language to be able to read its code samples. It's really not that hard to learn both of them and still use the one you like.</p>
http://stackoverflow.com/questions/1651722/2d-map-based-tile-game-engine/1652721#16527212Answer by Firas for 2d Map based tile game engineFiras2009-10-30T23:03:21Z2009-10-30T23:03:21Z<p>Try <a href="http://mapeditor.org/" rel="nofollow">Tiled</a>, it supports isometric maps and produces XML map files. It's also free software, so you could easily modify it to suit your game.</p>
http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books/194837#19483718Answer by Firas for List of freely available programming booksFiras2008-10-11T23:36:28Z2009-09-18T05:15:15Z<p><a href="http://www.ember.co.nz/resources/whys-poignant-guide-to-ruby/" rel="nofollow">Why's (Poignant) Guide to Ruby</a>, Creative Commons license</p>
http://stackoverflow.com/questions/1383069/warning-c4552-operator-has-no-effect-expected-operator-with-side-effect/1383078#138307812Answer by Firas for warning C4552: '<=' : operator has no effect; expected operator with side-effect (C Programming)Firas2009-09-05T11:14:53Z2009-09-05T11:42:42Z<p>You're using the wrong syntax for the for loop in the code you posted, did you mean something like this?</p>
<pre><code>for (; i <= what birthday; ++i) {...
</code></pre>
<p>If you didn't care about incrementing i after every iteration, you could use a while loop instead.</p>
<pre><code>while (i <= what_birthday) { ...
</code></pre>
<p>The code shouldn't have compiled at all without the semicolons. You get that warning for things like:</p>
<pre><code>for (i <= what birthday; ++i;)
</code></pre>
<p>Because while it is valid code, it's probably not what you intended.</p>
http://stackoverflow.com/questions/1327319/which-loop-to-use-for-or-do-while/1327335#13273358Answer by Firas for Which loop to use, for or do/while?Firas2009-08-25T10:19:54Z2009-08-25T10:32:26Z<p>How about the best of both worlds:</p>
<pre><code>for (int iLoop = 0; iLoop < int.MaxValue && !Criteria; iLoop++)
</code></pre>
<p>Edit: Now that I think about it, I suppose comparing against int.MaxValue wasn't part of the criteria, but something to emulate an endless for loop, in that case you could just use:</p>
<pre><code>for (int iLoop = 0; !Criterea; iLoop++)
</code></pre>
http://stackoverflow.com/questions/1325374/research-into-advantages-of-having-a-standard-coding-style/1325415#13254153Answer by Firas for Research into Advantages of Having a Standard Coding StyleFiras2009-08-25T00:09:34Z2009-08-25T00:09:34Z<blockquote>
<p>Our studies support the claim that knowledge of programming plans and rules of programming discourse can have a significant impact on program comprehension. In their book called [The] Elements of [Programming] Style, Kernighan and Plauger also identify what we would call discourse rules. Our empirical results put teeth into these rules: It is not merely a matter of aesthetics that programs should be written in a particular style. Rather there is a psychological basis for writing programs in a conventional manner: programmers have strong expectations that other programmers will follow these discourse rules. If the rules are violated, then the utility afforded by the expectations that programmers have built up over time is effectively nullified. The results from the experiments with novice and advanced student programmers and with professional programmers described in this paper provide clear support for these claims.</p>
</blockquote>
<p><a href="http://www.ics.uci.edu/~redmiles/inf233-FQ07/oldpapers/SollowayEhrlich.pdf" rel="nofollow">Empirical Studies of Programming Knowledge. Soloway and Ehrlich.</a></p>
http://stackoverflow.com/questions/1111155/what-exactly-is-the-halting-problem/1115411#11154110Answer by Firas for What exactly is the halting problem?Firas2009-07-12T06:26:46Z2009-07-12T06:26:46Z<p>It's a variant of the <a href="http://everything2.com/node/1147561" rel="nofollow">halting dog problem</a>, except with programs instead of dogs and halting instead of barking.</p>
http://stackoverflow.com/questions/1094040/how-to-backup-sql-server-agent-jobs2How to backup SQL Server Agent jobs?Firas2009-07-07T18:37:39Z2009-07-07T18:47:20Z
<p>How can I backup and restore SQL Server 2005 Agent job schedules?</p>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/249970#2499703Answer by Firas for Fibonacci Code GolfFiras2008-10-30T12:15:34Z2009-07-07T11:36:08Z<p>Ruby (30 characters):</p>
<pre><code>def f(n)n<2?n:f(n-1)+f(n-2)end
</code></pre>
http://stackoverflow.com/questions/1068614/double-ended-priority-queue/1068706#10687063Answer by Firas for Double ended priority queueFiras2009-07-01T11:48:20Z2009-07-01T12:02:44Z<p>You can use a Min-Max Heap as described in the paper <a href="http://www.cs.otago.ac.nz/staffpriv/mike/Papers/MinMaxHeaps/MinMaxHeaps.pdf" rel="nofollow">Min-Max Heaps and Generalized Priority Queues</a>:</p>
<blockquote>
<p>A simple implementation of
double ended priority queues is
presented. The proposed structure,
called a min-max heap, can be built in
linear time; in contrast to
conventional heaps, it allows both
FindMin and FindMax to be performed in
constant time; Insert, DeleteMin, and
DeleteMax operations can be performed
in logarithmic time.</p>
</blockquote>
http://stackoverflow.com/questions/1068110/identifying-last-loop-when-using-for-each/1068544#10685440Answer by Firas for Identifying last loop when using for eachFiras2009-07-01T11:12:54Z2009-07-01T11:12:54Z<p>Similar to kgiannakakis's answer:</p>
<pre><code>list.first(list.size - 1).each { |i| puts "Looping: " + i }
puts "Last one: " + list.last
</code></pre>
http://stackoverflow.com/questions/1054106/code-golf-adding-non-negative-numbers-from-a-set/1054322#10543220Answer by Firas for Code golf: adding non negative numbers from a setFiras2009-06-28T05:28:02Z2009-06-28T12:29:14Z<p>Ruby (73 characters):</p>
<pre><code>p (1..$*[0].to_i).map{|i|STDIN.gets.to_i}.select{|i|i>0}.inject{|s,i|s+i}
</code></pre>
<p>Update #1 (64 characters):</p>
<pre><code>p (1..$*[0].to_i).map{STDIN.gets.to_i}.inject(0){|s,i|i>0?s+i:s}
</code></pre>
<p>Update #2 (59 characters):</p>
<pre><code>b=0;(1..$*[0].to_i).each{a=STDIN.gets.to_i;b+=a>0?a:0};p b;
</code></pre>
http://stackoverflow.com/questions/949569/how-to-recover-or-reset-ssis-package-password2How to Recover or Reset SSIS Package Password?Firas2009-06-04T09:50:32Z2009-06-12T08:35:32Z
<p>I have a few SSIS packages that were password-protected (their protection level is apparently EncryptAllWithPassword) by a developer who left the company and can't be reached anymore, and trying to open them gives the following error since the password can't be supplied:</p>
<blockquote>
<p>Error loading 'Package.dtsx' : Failed to remove package protection
with error 0xC0014037 "The package is
encrypted with a password. The
password was not specified, or is not
correct.". This occurs in the
CPackage::LoadFromXML method. </p>
</blockquote>
<p>Is there any any way to open these packages? I have access to the administrator account originally used to create these packages and have other packages encrypted by the same person but using a different password that I know.</p>
<p>I have contacted a local Microsoft representative about the issue and so far they have only linked me to a <a href="http://msdn.microsoft.com/en-us/library/ms141747%28SQL.90%29.aspx" rel="nofollow">a page describing how to set or change a password</a>, which doesn't help because I need to open the package first or provide the old password. Has anyone been in a similar situation before or knows a way around this issue?</p>
http://stackoverflow.com/questions/914495/how-to-use-jpl-bidirectional-java-prolog-interface-on-windows1How to use JPL (bidirectional Java/Prolog interface) on windows?Firas2009-05-27T08:00:21Z2009-06-06T08:27:18Z
<p>I'm interested in embedding a Prolog interpreter in Java. One option is using <a href="http://www.swi-prolog.org/packages/jpl/java_api/index.html" rel="nofollow">JPL</a>, but the download links on the JPL site are broken, and the <a href="http://www.swi-prolog.org/packages/jpl/installation.html" rel="nofollow">installation page</a> mentions a jpl.zip that I can't find. I downloaded SWI-Prolog which seems to include JPL (it lists it as a component when installing), but I'm still not sure how I'd use it along with Java.</p>
<p>Any ideas on how to use JPL on Windows? Is there another library I could use to achieve the same thing? I've come across a few but they don't seem as stable as JPL.</p>
http://stackoverflow.com/questions/951374/using-traveling-salesman-solver-to-decide-hamiltonian-path1Using Traveling Salesman Solver to Decide Hamiltonian PathFiras2009-06-04T15:43:32Z2009-06-04T15:52:32Z
<p>This is for a project where I'm asked to implement a heuristic for the traveling salesman optimization problem and also the Hamiltonian path or cycle decision problem. I don't need help with the implementation itself, but have a question on the direction I'm going in.</p>
<p>I already have a TSP heuristic based on a genetic algorithm: it assumes a complete graph, starts with a set of random solutions as a population, and works to improve the population for a number of generations. Can I also use it to solve the Hamiltonian path or cycle problems? Instead of optimizing to get the shortest path, I just want to check if there is a path. </p>
<p>Now any complete graph will have a Hamiltonian path in it, so the TSP heuristic would have to be extended to any graph. This could be done by setting the edges to some infinity value if there is no path between two cities, and returning the first path that is a valid Hamiltonian path.</p>
<p>Is that the right way to approach it? Or should I use a different heuristic for Hamiltonian path? My main concern is whether it's a viable approach since I can be somewhat sure that TSP optimization works (because you start with solutions and improve them) but not if a Hamiltonian path decider would find any path in a fixed number of generations.</p>
<p>I assume the best approach would be to test it myself, but I'm constrained by time and thought I'd ask before going down this route... (I could find a different heuristic for Hamiltonian path instead)</p>
http://stackoverflow.com/questions/949569/how-to-recover-or-reset-ssis-package-password/950123#9501230Answer by Firas for How to Recover or Reset SSIS Package Password?Firas2009-06-04T12:08:15Z2009-06-04T12:08:15Z<p>It seems that the package was also stored on SQL Server (msdb database), exporting it from Integration Services into the file system allows us to open it (with a warning about losing sensitive data). This solution works perfectly for this particular situation; we mainly needed to know what happens in these packages.</p>
http://stackoverflow.com/questions/949568/are-there-any-ruby-language-features-you-avoid/949584#9495848Answer by Firas for Are there any Ruby language features you avoid?Firas2009-06-04T09:54:23Z2009-06-04T09:54:23Z<p>I generally refrain from going overboard with <a href="http://en.wikipedia.org/wiki/Monkey%5Fpatch" rel="nofollow">monkey patching</a> because it could lead to some maintainability and readability issues. It's a great feature if used correctly, but it's easy to get carried away.</p>
http://stackoverflow.com/questions/145676/how-to-approach-something-complex7How to approach something complex?Firas2008-09-28T11:22:07Z2009-06-01T20:07:04Z
<p>You know that particular part of your code that is essential for the project but will probably take a lot of time to get it done? Do you ever get the feeling that you'd rather work on something else (probably less important) or not code at all instead of working on that part? That beast you try so hard to avoid and use every lazy trick you know to delay its inevitable implementation? </p>
<p>Now, I'm probably just being lazy, but I've always had to deal with code like that. Write something I don't feel like writing (and it's worse if you're doing it for fun and not getting paid!). A large system that will take a lot of time to get it into a stage where you get back any useful results or indication of it working. How do you start coding something like that? Most people would probably suggest divide and conquer and similar architectural techniques, but this isn't about how you do it; it's about how you get yourself started on doing it. What's the very first steps you'd take?</p>
http://stackoverflow.com/questions/914557/recommended-reading-for-game-development/914676#9146762Answer by Firas for Recommended reading for Game DevelopmentFiras2009-05-27T08:49:29Z2009-05-27T08:49:29Z<p>There are plenty of good game programming books, but it depends on your level of expertise and what you're looking for. Some are introductionary texts to many subjects, while others are more advanced and focused on certain technologies. Any recommended programming book is a recommended game programming book, so stuff like Code Complete or the Pragmatic Programmer will still help you become a better game programmer. Even something like The C++ Programming Language is recommended if you program in C++.</p>
<p>That said, you should check the <a href="http://rads.stackoverflow.com/amzn/click/1584500492" rel="nofollow">Game Programming Gems</a> series for a variety of articles written by notable game programmers. <a href="http://rads.stackoverflow.com/amzn/click/1584506806" rel="nofollow">Game Coding Complete</a> is a good read, although I'm not sure how relevant it is today. <a href="http://rads.stackoverflow.com/amzn/click/0131020099" rel="nofollow">Core Techniques and Algorithms in Game Programming</a> offers a more advanced review of many game programming topics. If you're interested in 3D math then <a href="http://rads.stackoverflow.com/amzn/click/1584502770" rel="nofollow">Mathematics for 3D Game Programming and Computer Graphics</a> is what you need. For an advanced book on computer graphics, check <a href="http://rads.stackoverflow.com/amzn/click/1568814240" rel="nofollow">Real Time Rendering</a>. There are many more great books, but like I said, it depends on what you want to learn about.</p>
http://stackoverflow.com/questions/880850/laws-of-computer-science-and-programming/881330#8813307Answer by Firas for Laws of Computer Science and ProgrammingFiras2009-05-19T06:59:33Z2009-05-19T06:59:33Z<p><a href="http://en.wikipedia.org/wiki/Linus%27s_Law" rel="nofollow">Linus's Law</a>:</p>
<blockquote>
<p>Given enough eyeballs, all bugs are
shallow.</p>
</blockquote>
http://stackoverflow.com/questions/880850/laws-of-computer-science-and-programming/881323#8813238Answer by Firas for Laws of Computer Science and ProgrammingFiras2009-05-19T06:58:02Z2009-05-19T06:58:02Z<p><a href="http://en.wikipedia.org/wiki/Greenspun%27s_Tenth_Rule" rel="nofollow">Greenspun's Tenth Rule of Programming</a>:</p>
<blockquote>
<p>Any sufficiently complicated C or
Fortran program contains an ad hoc,
informally-specified, bug-ridden, slow
implementation of half of Common Lisp.</p>
</blockquote>
http://stackoverflow.com/questions/1753573/does-anyone-have-any-ideas-for-an-assignment-in-game-programming/1754512#1754512Comment by Firas on Does anyone have any ideas for an assignment in game programming?Firas2009-11-18T21:24:28Z2009-11-18T21:24:28Z@Click Upvote: Like if you could release missiles or other objects that would attract the attention of the guided missiles and distract them for a while. Normal guided missiles would go for your decoys but more advanced guided missiles might have better systems that don't respond to decoys as easily.http://stackoverflow.com/questions/1656677/how-do-i-find-a-integer-max-integer-in-an-array-for-ruby-and-return-the-indexed-p/1656733#1656733Comment by Firas on How do I find a integer/max integer in an array for ruby and return the indexed position?Firas2009-11-02T02:22:22Z2009-11-02T02:22:22ZHmm.. the problem with that code is that by using each_index you are comparing indices with 20, and doing nothing with it (each_index just executes the block passing it each index, but your block evaluates to true or false without side effects). Furthermore, each_index returns the array, and you can't use an array as index for another array. I've updated my answer with code that should do what you want (prints Bill and Aimee only, because Bob is 20, and 20 is not less than 20).http://stackoverflow.com/questions/1653936/single-developer-for-a-social-networking-site/1654005#1654005Comment by Firas on single developer for a social networking siteFiras2009-10-31T10:53:41Z2009-10-31T10:53:41ZThis is the sort of questions where if you need to ask it, then the answer is probably no.http://stackoverflow.com/questions/1588385/good-collection-of-libraries-for-c/1588414#1588414Comment by Firas on Good collection of libraries for C?Firas2009-10-19T12:29:51Z2009-10-19T12:29:51ZThose are C++ libraries, not Chttp://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language/187751#187751Comment by Firas on What is your favorite esoteric programming language?Firas2009-09-30T01:10:48Z2009-09-30T01:10:48ZInternet humor is so lame. LOLZ EPIC PHAIL XDhttp://stackoverflow.com/questions/1367958/how-do-you-know-you-are-a-bad-developerComment by Firas on How do you know you are a bad developer?Firas2009-09-02T14:16:39Z2009-09-02T14:16:39ZYou know that you're a good developer when you know that you're a bad developer.http://stackoverflow.com/questions/1327319/which-loop-to-use-for-or-do-while/1327335#1327335Comment by Firas on Which loop to use, for or do/while?Firas2009-08-25T10:28:13Z2009-08-25T10:28:13Z@Stevo3000: Yeah, it depends on what you want to do. I was referring to your for loop example where you had "may do work here" comments before and after the check for criteria.http://stackoverflow.com/questions/1327319/which-loop-to-use-for-or-do-while/1327335#1327335Comment by Firas on Which loop to use, for or do/while?Firas2009-08-25T10:23:38Z2009-08-25T10:23:38Z@Daphna Shezaf: You're right, but you'd still need to have an if condition inside a while loop if you want to do some work before and after checking ithttp://stackoverflow.com/questions/1152105/is-this-a-bug-in-dotnet-regex-parserComment by Firas on Is this a bug in dotnet Regex-Parser?Firas2009-07-20T07:34:54Z2009-07-20T07:34:54ZIf you see hoof prints, think horses—not zebras. The OS is probably not broken. And the database is probably just fine. —Andy Hunt and Dave Thomas :)http://stackoverflow.com/questions/1130830/does-a-net-bool-use-one-bit-or-one-byte-per-item/1130835#1130835Comment by Firas on Does a .net bool[] use one bit or one byte per item?Firas2009-07-15T12:06:19Z2009-07-15T12:06:19ZThe size of bool in C++ isn't specified. It is only guaranteed that it should be at least the size of char (at least 8 bits), and at most equal to the size of long. I think really old versions of VC++ and g++ implemented it as an enum typedef, which would make it as big as int. In newer versions of VC++, it is a built-in type of size 1 byte; it's probably the same for newer versions of g++ as well.http://stackoverflow.com/questions/1094039/when-might-multiple-inheritance-be-the-only-reasonable-solutionComment by Firas on When might multiple inheritance be the only reasonable solution?Firas2009-07-07T18:41:22Z2009-07-07T18:41:22ZA similar question: <a href="http://stackoverflow.com/questions/573913/a-use-for-multiple-inheritance" rel="nofollow" title="a use for multiple inheritance">stackoverflow.com/questions/573913/…</a>http://stackoverflow.com/questions/1078770/array-searching-code-challenge/1078851#1078851Comment by Firas on Array Searching code challengeFiras2009-07-03T12:06:25Z2009-07-03T12:06:25ZOh, I forgot about to_s's format. How about inspect?http://stackoverflow.com/questions/1078770/array-searching-code-challenge/1078851#1078851Comment by Firas on Array Searching code challengeFiras2009-07-03T11:29:12Z2009-07-03T11:29:12ZI was writing something similar (def t(a,b)(i=a.to_s.index(b.to_s))?[true, i]:[false, -1]end), but you beat me to it. +1!http://stackoverflow.com/questions/1068110/identifying-last-loop-when-using-for-each/1069123#1069123Comment by Firas on Identifying last loop when using for eachFiras2009-07-01T13:39:28Z2009-07-01T13:39:28ZGood idea, but you're comparing by value, so a list like ['A', 'B', 'C', 'D', 'C'] will get two last ones. Perhaps if you used !x.equal?(list.last)http://stackoverflow.com/questions/1068110/identifying-last-loop-when-using-for-each/1068144#1068144Comment by Firas on Identifying last loop when using for eachFiras2009-07-01T11:04:08Z2009-07-01T11:04:08ZNice. You could also use list[0...-1] and list[-1] instead of list[0, list.length-1] and list[list.length-1] respectively.