User Simucal - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T05:05:55Zhttp://stackoverflow.com/feeds/user/2635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/644099/what-programming-languages-do-the-top-tier-universities-teach43What programming languages do the top tier Universities teach?Simucal2009-03-13T18:51:07Z2009-12-16T01:40:31Z
<p>I'm constantly being inundated with articles and people talking about how most of today's Universities are nothing more than Java vocational schools churning out mediocre programmer after mediocre programmer.</p>
<p>Our very own Joel Spolsky has his famous article, "<a href="http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html" rel="nofollow">The Perils of Java Schools</a>."</p>
<p>Similarly, <a href="http://stackoverflow.com/users/48710/alan-kay">Alan Kay</a>, a famous Computer Scientist (and SO member) has said this in the past:</p>
<blockquote>
<p>"I fear — as far as I can tell — that
most undergraduate degrees in computer
science these days are basically Java
vocational training." - Alan Kay (<a href="http://lambda-the-ultimate.org/node/531" rel="nofollow">link</a>)</p>
</blockquote>
<p>If the languages being taught by the schools are considered such a contributing factor to the quality of the school's program then I'm curious what languages <em>do</em> the "top-tier" computer science schools teach (MIT, Carnegie Mellon, Stanford, etc)? </p>
<p>If the average school is performing so poorly due in large part the languages (or lack of) that they teach then what languages do the supposed "good" cs programs teach that differentiate them?</p>
<p>If you can, provide the name of the school you attended, followed by a list of the languages they use throughout their coursework.</p>
<p><hr /></p>
<p>Edit: </p>
<p>Shog-9 asks why I don't get this information directly from the schools websites themselves. I would, but many schools websites don't discuss the languages they use in their class descriptions. Quite a few will say, "using high-level languages we will...", without elaborating on which languages they use. </p>
<p>So, we should be able to get a pretty accurate list of languages taught at various well known institutions from the various SO members who have attended at them.</p>
http://stackoverflow.com/questions/345838/ball-to-ball-collision-detection-and-handling38Ball to Ball Collision - Detection and HandlingSimucal2008-12-06T03:24:00Z2009-12-12T00:14:00Z
<p>With the help of the Stack Overflow community I've written a pretty basic-but fun physics simulator.</p>
<p><img src="http://img67.imageshack.us/img67/4323/ballbounce2uk2.png" alt="alt text"></p>
<p>You click and drag the mouse to launch a ball. It will bounce around and eventually stop on the "floor".</p>
<p>My next big feature I want to add in is ball to ball collision. The ball's movement is broken up into a x and y speed vector. I have gravity (small reduction of the y vector each step), I have friction (small reduction of both vectors each collision with a wall). The balls honestly move around in a surprisingly realistic way.</p>
<p>I guess my question has two parts:</p>
<ol>
<li><strong>What is the best method to detect ball to ball collision?</strong><br>
Do I just have an O(n^2) loop that iterates over each ball and checks every other ball to see if it's radius overlaps?</li>
<li><strong>What equations do I use to handle the ball to ball collisions? Physics 101</strong><br>
How does it effect the two balls speed x/y vectors? What is the resulting direction the two balls head off in? How do I apply this to each ball?</li>
</ol>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/2/2c/Elastischer%5Fsto%C3%9F%5F2D.gif" alt="alt text"></p>
<p>Handling the collision detection of the "walls" and the resulting vector changes were easy but I see more complications with ball-ball collisions. With walls I simply had to take the negative of the appropriate x or y vector and off it would go in the correct direction. With balls I don't think it is that way.</p>
<p>Some quick clarifications: for simplicity I'm ok with a perfectly elastic collision for now, also all my balls have the same mass right now, but I might change that in the future.</p>
<p>In case anyone is interested in playing with the simulator I have made so far, <strike>I've uploaded the source <a href="http://www.filedropper.com/ballbounce" rel="nofollow">here</a></strike> (EDIT: Check the updated source below). </p>
<p><hr></p>
<p>Edit: Resources I have found useful</p>
<p>2d Ball physics with vectors: <a href="http://www.geocities.com/vobarian/2dcollisions/2dcollisions.pdf" rel="nofollow">2-Dimensional Collisions Without Trigonometry.pdf</a><br>
2d Ball collision detection example: <a href="http://geekswithblogs.net/robp/archive/2008/05/15/adding-collision-detection.aspx" rel="nofollow">Adding Collision Detection</a></p>
<p><hr></p>
<h2>Success!</h2>
<p>I have the ball collision detection and response working great!</p>
<p>Relevant code:</p>
<p>Collision Detection:</p>
<pre><code>for (int i = 0; i < ballCount; i++)
{
for (int j = i + 1; j < ballCount; j++)
{
if (balls[i].colliding(balls[j]))
{
balls[i].resolveCollision(balls[j]);
}
}
}
</code></pre>
<p>This will check for collisions between every ball but skip redundant checks (if you have to check if ball 1 collides with ball 2 then you don't need to check if ball 2 collides with ball 1. Also, it skips checking for collisions with itself).</p>
<p>Then, in my ball class I have my colliding() and resolveCollision() methods:</p>
<pre><code>public boolean colliding(Ball ball)
{
float xd = position.getX() - ball.position.getX();
float yd = position.getY() - ball.position.getY();
float sumRadius = getRadius() + ball.getRadius();
float sqrRadius = sumRadius * sumRadius;
float distSqr = (xd * xd) + (yd * yd);
if (distSqr <= sqrRadius)
{
return true;
}
return false;
}
public void resolveCollision(Ball ball)
{
// get the mtd
Vector2d delta = (position.subtract(ball.position));
float d = delta.getLength();
// minimum translation distance to push balls apart after intersecting
Vector2d mtd = delta.multiply(((getRadius() + ball.getRadius())-d)/d);
// resolve intersection --
// inverse mass quantities
float im1 = 1 / getMass();
float im2 = 1 / ball.getMass();
// push-pull them apart based off their mass
position = position.add(mtd.multiply(im1 / (im1 + im2)));
ball.position = ball.position.subtract(mtd.multiply(im2 / (im1 + im2)));
// impact speed
Vector2d v = (this.velocity.subtract(ball.velocity));
float vn = v.dot(mtd.normalize());
// sphere intersecting but moving away from each other already
if (vn > 0.0f) return;
// collision impulse
float i = (-(1.0f + Constants.restitution) * vn) / (im1 + im2);
Vector2d impulse = mtd.multiply(i);
// change in momentum
this.velocity = this.velocity.add(impulse.multiply(im1));
ball.velocity = ball.velocity.subtract(impulse.multiply(im2));
}
</code></pre>
<p><img src="http://img511.imageshack.us/img511/654/ballbounce3ee5.jpg" alt="alt text"></p>
<p>Source Code: <a href="http://www.filedropper.com/src%5F2" rel="nofollow">Complete source for ball to ball collider.</a><br>
Binary: <a href="http://www.filedropper.com/ballbouncebin" rel="nofollow">Compiled binary in case you just want to try bouncing some balls around.</a></p>
<p>If anyone has some suggestions for how to improve this basic physics simulator let me know! One thing I have yet to add is angular momentum so the balls will roll more realistically. Any other suggestions? Leave a comment!</p>
http://stackoverflow.com/questions/1851293/what-are-some-advanced-and-modern-resources-on-exploit-writing14What are some advanced and modern resources on exploit writing?Simucal2009-12-05T06:05:33Z2009-12-06T04:11:44Z
<p>I've read and finished both <a href="http://rads.stackoverflow.com/amzn/click/0764574817" rel="nofollow">Reversing: Secrets of Reverse Engineering</a> and <a href="http://rads.stackoverflow.com/amzn/click/1593271441" rel="nofollow">Hacking: The Art of Exploitation</a>. They both were illuminating in their own way but I still feel like a lot of the techniques and information presented within them is outdated to some degree.</p>
<p>When the infamous Phrack Article, <a href="http://insecure.org/stf/smashstack.html" rel="nofollow">Smashing the Stack for Fun and Profit</a>, was written 1996 it was just before what I sort of consider the Computer Security "golden age".</p>
<p>Writing exploits in the years that followed was relatively easy. Some basic knowledge in C and Assembly was all that was required to perform buffer overflows and execute some arbitrary shell code on a victims machine.</p>
<p>To put it lightly, things have gotten <em>a lot</em> more complicated. Now security engineers have to contend with things like <a href="http://en.wikipedia.org/wiki/Address%5Fspace%5Flayout%5Frandomization" rel="nofollow">Address Space Layout Randomization (ASLR)</a>, <a href="http://en.wikipedia.org/wiki/Data%5FExecution%5FPrevention" rel="nofollow">Data Execution Prevention (DEP)</a>, <a href="http://en.wikipedia.org/wiki/Buffer%5Foverflow%5Fprotection" rel="nofollow">Stack Cookies</a>, Heap Cookies, and much more. The complexity of writing exploits went up at least an order of magnitude.</p>
<p>You can't event <em>run</em> most of the buffer overrun exploits in the tutorials you'll find today without compiling with a bunch of flags to turn off modern protections.</p>
<p>Now if you want to write an exploit you have to devise ways to turn off DEP, spray the heap with your shell-code hundreds of times and attempt to guess a random memory location near your shellcode. Not to mention the pervasiveness of managed languages in use today that are much more secure when it comes to these vulnerabilities.</p>
<p>I'm looking to extend my security knowledge beyond writing toy-exploits for a decade old system. I'm having trouble locating resources that help address the issues of writing exploits in the face of all the protections I outlined above.</p>
<p>What are the more advanced and prevalent papers, books or other resources devoted to contending with the challenges of writing exploits for modern systems?</p>
http://stackoverflow.com/questions/466790/assembly-code-vs-machine-code-vs-object-code2Assembly code vs Machine code vs Object code?Simucal2009-01-21T20:17:27Z2009-12-05T23:46:14Z
<p>What is the difference between object code, machine code and assembly code?</p>
<p>Can you give a visual example of their difference?</p>
http://stackoverflow.com/questions/454048/what-is-the-difference-between-encrypting-and-signing-in-asymmetric-encryption2What is the difference between encrypting and signing in asymmetric encryption?Simucal2009-01-17T21:07:43Z2009-12-02T09:16:40Z
<p>What is the difference between encrypting some data vs signing some data (using RSA)? </p>
<p>Does it simply reverse the role of the public-private keys? </p>
<p>For example, I want to use my private key to generate messages so only I can possibly be the sender. I want my public key to be used to read the messages and I do not care who reads them. I want to be able to encrypt certain information and use it as a product-key for my software. I only care that I am the only one who can generate these. I would like to include my public key in my software to decrypt/read the signature of the key. I do not care who can read the data in the key, I only care that I am the only verifiable one who can generate them.</p>
<p>Is signing useful in this scenario?</p>
http://stackoverflow.com/questions/1809783/just-finished-learning-x86-assembly-language-what-can-i-do-with-it/1810220#181022019Answer by Simucal for Just finished learning x86 assembly language. What can I do with it?Simucal2009-11-27T18:54:07Z2009-11-27T18:54:07Z<p>One of my favorite hobbies is Reverse Engineering. </p>
<p>It requires a solid knowledge of assembly and the use of disassemblers/debuggers to walk through compiled code. This allows you to alter, understand and reverse compiled programs. Each new program is like a puzzle waiting to be solved!</p>
<p>For example, a lot of people reverse games like Minesweeper when they are first starting out. </p>
<p>Here is a screenshot of a key section of code in Minesweeper I reversed awhile back (comments on right-hand side):
<img src="http://imgur.com/bFrcA.png" alt="alt text"></p>
<p>This was located by placing a breakpoint on calls to the <code>rand()</code> function and stepping backwards in the callstack. After some digging it becomes obvious that:</p>
<ol>
<li>Minefield Height is located in 0x1005338</li>
<li>Minefield Width is located in 0x1005334</li>
<li>Minefield Baseaddress is located at 0x1005340</li>
</ol>
<p>With this knowledge it becomes easy to determine the location of any given mine in the minefield by:</p>
<pre><code>cellAddress = mapBaseAddress + (32 * (y+1)) + (x+1);
</code></pre>
<p>Then, with a simple loop and some calls to <code>ReadProcessMemory()</code> you've got the ultimate Minesweeper hack!</p>
<p>Reading hand-written assembly is far easier than reading machine generated assembly. Modern compilers do some magical and crazy things to the code for optimization that can sometimes be difficult to follow. So, this will definitely push your assembly knowledge!</p>
<p>There are tons of activities that can branch off from this:</p>
<ol>
<li>Reverse hidden API's in libraries</li>
<li>Write advanced game hacks using DLL Injection, Code Caves, Function Hooking and more!</li>
<li>Understand the limitations of various protection schemes employed by software</li>
<li>Reverse a fileformat that isn't published or known and write code to read this format for interoperability purposes.</li>
<li>Write emulators for various systems (including older game systems!)</li>
<li>Understand how a well-known program does a particular task.</li>
<li>Reverse malware and viruses to see how and what they do. </li>
</ol>
<p>And more!</p>
<p>If you are interested, I highly suggest the book: <a href="http://rads.stackoverflow.com/amzn/click/0764574817" rel="nofollow">Reversing: Secrets of Reverse Engineering</a></p>
http://stackoverflow.com/questions/1651874/what-is-the-best-way-to-go-about-writing-a-simple-x86-assembler6What is the best way to go about writing a simple x86 assembler?Simucal2009-10-30T19:37:02Z2009-11-26T22:46:28Z
<p>I'm interested in writing an x86 assembler for a hobby project. </p>
<p>At first it seemed fairly straight forward to me but the more I read into it, the more unanswered questions I find myself having. I'm not totally inexperienced: I've used MIPs assembly a fair amount and I've written a toy compiler for a subset of C in school.</p>
<p>My goal is to write a simple, but functional x86 assembler. I'm not looking to make a commercially viable assembler, but simply a hobby project to strengthen my knowledge in certain areas. So I don't mind if I don't implement every available feature and operation.</p>
<p>I have many questions such as: Should I use a one-pass or two-pass method? Should I use ad-hoc parsing or define formal grammars and use a parser-generator for my instructions? At what stage, and how do I resolve the addresses of my symbols?</p>
<p>Given my requirements, can anyone suggest some general guidelines for the methods I should be using in my pet-project assembler?</p>
http://stackoverflow.com/questions/270138/how-do-i-draw-lines-using-xna6How do I draw lines using XNA?Simucal2008-11-06T20:32:02Z2009-11-24T11:30:26Z
<p>I've read a bunch of tutorials involving XNA (and it's various versions) and I still am a little confused on drawing primitives. Everything seems to be really convoluted.</p>
<p>Can someone show me, using code, the simplest XNA implementation of drawing one or two lines on to the screen? Perhaps with a brief explanation (including the boilerplate)?</p>
<p>I'm not a games programmer and I have little XNA experience. My ultimate goal is to draw some lines onto the screen which I will eventually transform with rotations, etc (by hand). However, for this first step.. I need to simply draw the lines! I remember back in my ancient OpenGL days it was fairly straightforward when drawing a line with a few method calls. Should I simply revert to using unmanaged directx calls?</p>
http://stackoverflow.com/questions/518026/zip-code-to-city-state-and-vice-versa-in-a-database2Zip Code to City/State and vice-versa in a database?Simucal2009-02-05T21:28:17Z2009-11-22T07:08:53Z
<p>I'm new to SQL and relational databases and I have what I would imagine is a common problem.</p>
<p>I'm making a website and when each user submits a post they have to provide a location in either a zip code or a City/State.</p>
<p>What is the best practice for handling this? Do I simply create a Zip Code and City and State table and query against them or are there ready made solutions for handling this?</p>
<p>I'm using SQL Server 2005 if it makes a difference.</p>
<p>I need to be able to retrieve a zip code given a city/state or I need to be able to spit out the city state given a zip code.</p>
http://stackoverflow.com/questions/573695/folder-structure-for-many-projects-in-one-svn-repository4Folder structure for many projects in one SVN repository?Simucal2009-02-21T20:33:45Z2009-11-20T02:44:19Z
<p>I just created a <a href="http://code.google.com/" rel="nofollow">Google Code</a> SVN repository for storing my school projects and homework, and to allow easy transferring between school and home.</p>
<p>Its default directories it creates are:</p>
<blockquote>
<p>https://simucal-projects.googlecode.com/svn/trunk/<br />
https://simucal-projects.googlecode.com/svn/tags/<br />
https://simucal-projects.googlecode.com/svn/branches/ </p>
</blockquote>
<p>I've never used a repository for more than one project, but after reading: <a href="http://stackoverflow.com/questions/252459/one-svn-repository-or-many/252553">One svn repository or many?</a> I've decided to have a single repository for all of my random school projects.</p>
<p>Should I just replicate the folder structure above, but for each project?</p>
<blockquote>
<p>https://simucal-projects.googlecode.com/svn/projectA/trunk/<br />
https://simucal-projects.googlecode.com/svn/projectA/tags/<br />
https://simucal-projects.googlecode.com/svn/projectA/branches/ </p>
<p>https://simucal-projects.googlecode.com/svn/projectB/trunk/<br />
https://simucal-projects.googlecode.com/svn/projectB/tags/<br />
https://simucal-projects.googlecode.com/svn/projectB/branches/ </p>
</blockquote>
<p>Is this what you multi-project-in-one-repo people do?</p>
http://stackoverflow.com/questions/1727375/what-are-some-good-resources-on-flocking-and-swarm-algorithms2What are some good resources on flocking and swarm algorithms?Simucal2009-11-13T05:52:18Z2009-11-19T01:06:35Z
<p>Awhile ago I read the novel <a href="http://rads.stackoverflow.com/amzn/click/0066214122" rel="nofollow">Prey</a>. Even though it is definitely in the realm of fun science fiction, it piqued my interest in swarm/flock AI. I've been seeing some examples of these demos recently on reddit such as the <a href="http://chrisbenjaminsen.com/stuff/boidsas3.swf" rel="nofollow">Nvidia plane flocking video</a> and <a href="http://www.reddit.com/r/programming/comments/a3qky/just%5Ffor%5Fyou%5Freddit%5Fa%5Fflocking%5Fsandbox%5Fin%5Fflash/" rel="nofollow">Chris Benjaminsen's flocking sandbox</a> (<a href="http://chrisbenjaminsen.com/stuff/boidsas3.zip" rel="nofollow">source</a>).</p>
<p>I'm interested in writing some simulation demos involving swarm or flocking AI. I've taken Artificial Intelligence in college but we never approached the subject of simulating swarming/flocking behaviors and a quick flip through my textbook reveals that it isn't dicussed.</p>
<p><img src="http://imgur.com/MruF2.png" alt="alt text"><br>
<sub>Flocking Sandbox</sub></p>
<p>What are some solid resources for learning some of the finer points around flock/swarm algorithms? Does anyone have any experience in this field so they could point me in the right direction concerning a well suited AI book or published papers?</p>
http://stackoverflow.com/questions/1183600/what-tool-should-i-use-to-automate-my-deployment-of-my-asp-net-mvc-application4What tool should I use to automate my deployment of my ASP.NET MVC application?Simucal2009-07-26T02:41:53Z2009-11-18T08:03:23Z
<p>I've written a site for my summer internship using ASP.NET MVC. The progress is going well but one thing I have found painful is deployments. Particularly, because we have frequent deployments and I've been doing them by hand.</p>
<p>I'm looking for sort of the "standard" .NET deployment tool that can be utilized with an ASP.NET MVC project to automate our deployment process.</p>
<p>Some things I would like the tool to be able to do (that I do manually now):</p>
<ul>
<li>Set compile mode to "Release"</li>
<li>Publish my ASP.NET MVC Web Application project</li>
<li>Ensure debug mode = "Off" in my Web Config</li>
<li>Change the connection strings for our database from dev db to prod db's info</li>
<li>Transfer the Website to the web server</li>
<li>Ideally, it would be nice if it stopped the IIS site and replaced the existing site with the new files, then restarted it.</li>
</ul>
<p>Given sort of these soft requirements, what tool would you suggest I use to tackle this problem? I'm using II7 if it matters.</p>
http://stackoverflow.com/questions/1030992/how-can-i-write-a-clean-repository-without-exposing-iqueryable-to-the-rest-of-my5How can I write a clean Repository without exposing IQueryable to the rest of my application?Simucal2009-06-23T06:51:02Z2009-11-17T12:58:47Z
<p>So, I've read all the Q&A's here on SO regarding the subject of whether or not to expose IQueryable to the rest of your project or not (see <a href="http://stackoverflow.com/questions/164342/should-repositories-implement-iqueryablet">here</a>, and <a href="http://stackoverflow.com/questions/741490/repository-pattern-pocos-or-iqueryable">here</a>), and I've ultimately decided that I don't want to expose IQueryable to anything but my Model. Because IQueryable is tied to certain persistence implementations I don't like the idea of locking myself into this. Similarly, I'm not sure how good I feel about classes further down the call chain modifying the actual query that aren't in the repository. </p>
<p>So, does anyone have any suggestions for how to write a clean and concise Repository without doing this? One problem I see, is my Repository will blow up from a ton of methods for various things I need to filter my query off of.</p>
<p>Having a bunch of:</p>
<pre><code>IEnumerable GetProductsSinceDate(DateTime date);
IEnumberable GetProductsByName(string name);
IEnumberable GetProductsByID(int ID);
</code></pre>
<p>If I was allowing IQueryable to be passed around I could easily have a generic repository that looked like:</p>
<pre><code>public interface IRepository<T> where T : class
{
T GetById(int id);
IQueryable<T> GetAll();
void InsertOnSubmit(T entity);
void DeleteOnSubmit(T entity);
void SubmitChanges();
}
</code></pre>
<p>However, if you aren't using IQueryable then methods like GetAll() aren't really practical since lazy evaluation won't be taking place down the line. I don't want to return 10,000 records only to use 10 of them later.</p>
<p>What is the answer here? In <a href="http://blog.wekeroad.com/mvc-storefront/" rel="nofollow">Conery's MVC Storefront</a> he created another layer called the "Service" layer which received IQueryable results from the respository and was responsible for applying various filters. </p>
<p>Is this what I should do, or something similar? Have my repository return IQueryable but restrict access to it by hiding it behind a bunch of filter classes like GetProductByName, which will return a concrete type like IList or IEnumerable?</p>
http://stackoverflow.com/questions/513126/what-is-a-good-barebones-linux-distro-for-beginner-kernel-development5What is a good barebones linux distro for beginner kernel development?Simucal2009-02-04T20:23:47Z2009-11-12T11:30:27Z
<p>In my Operating Systems class we are looking to modify a Linux kernel with some simple system calls of our own in C.</p>
<p>What would be a good distro suited for this purpose? We don't need any frills, no GUI, a vanilla kernel, etc. The more basic the better.</p>
http://stackoverflow.com/questions/340209/generate-colors-between-red-and-green-for-a-power-meter7Generate colors between red and green for a power meter?Simucal2008-12-04T10:56:25Z2009-11-08T14:48:49Z
<p>I'm writing a java game and I want to implement a power meter for how hard you are going to shoot something. </p>
<p>I need to write a function that takes a int between 0 - 100, and based on how high that number is, it will return a color between Green (0 on the power scale) and Red (100 on the power scale).</p>
<p>Similar to how volume controls work:<br />
<img src="http://img258.imageshack.us/img258/4458/124200845040ampn5.png" alt="alt text" /></p>
<p>What operation do I need to do on the Red, Green, and Blue components of a color to generate the colors between Green and Red?</p>
<p>So, I could run say, getColor(80) and it will return an orangish color (its values in R, G, B) or getColor(10) which will return a more Green/Yellow rgb value.</p>
<p>I know I need to increase components of the R, G, B values for a new color, but I don't know specifically what goes up or down as the colors shift from Green-Red.</p>
<p><hr /></p>
<p>Progress:</p>
<p>I ended up using HSV/HSB color space because I liked the gradiant better (no dark browns in the middle).</p>
<p>The function I used was (in java):</p>
<pre><code>public Color getColor(double power)
{
double H = power * 0.4; // Hue (note 0.4 = Green, see huge chart below)
double S = 0.9; // Saturation
double B = 0.9; // Brightness
return Color.getHSBColor((float)H, (float)S, (float)B);
}
</code></pre>
<p>Where "power" is a number between 0.0 and 1.0. 0.0 will return a bright red, 1.0 will return a bright green.</p>
<p>Java Hue Chart:<br />
<img src="http://mindprod.com/image/jgloss/hue.png" alt="alt text" /></p>
<p>Thanks everyone for helping me with this!</p>
http://stackoverflow.com/questions/464313/how-can-i-program-mips-assembly-from-x86-linux3How can I program MIPS assembly from x86 linux?Simucal2009-01-21T07:14:08Z2009-11-06T16:11:02Z
<p>Are there any command line interpreters around for x86 linux inorder to run MIPS assembly programs?</p>
<p>I'd like to be able to write simple MIPS assembly programs and run them from the console on my local machine.</p>
<p>I know of SPIM but it <strike>requires X Windows</strike> and I'm curious if there are better options out there.</p>
<p>Edit: Turns out it doesn't require X Windows. I still have issues with SPIM. Not the best in my humble opinion. Qemu / Cross compiled toolchain is a little more work but I have less quirks.</p>
http://stackoverflow.com/questions/1568600/what-is-the-difference-between-monotonicity-and-the-admissibility-of-a-heuristic3What is the difference between monotonicity and the admissibility of a heuristic?Simucal2009-10-14T19:56:06Z2009-10-15T06:52:03Z
<p>I'm reading over my AI textbook and I'm curious about what the difference is between monotonicity and admissibility of heuristics (I know they aren't mutually exclusive).</p>
<p>As far as I can tell, an admissible heuristic simply means you are ensured to get the shortest path to a solution if one exists.</p>
<p>What I'm struggling with is the concept of the monotonic property. Can someone describe this to me in a way I might understand?</p>
<p>Similarly, how can I determine if a given heuristic is monotonic/admissible? One of the examples given in the book is the 8-Piece Sliding Puzzle. One heuristic I'm considering is the # of out of place tiles, and intuitively I can say that I know that it is admissible but I have no formal way of showing if it is admissible/monotonic.</p>
http://stackoverflow.com/questions/1566377/is-asp-net-mvc-really-only-for-5-of-programmers/1566401#15664014Answer by Simucal for Is ASP.NET MVC really only for 5% of Programmers?Simucal2009-10-14T13:58:01Z2009-10-14T13:58:01Z<p>It sounds about right to me. I think you are seeing some selection bias. The people who are likely to use ASP.NET MVC right now can still be considered early adopters and I think a disproportionate number of Stackoverflow users fall into that category.</p>
<p>So while you are seeing a lot of MVC questions being posted, it is still the tip of the ASP.NET iceberg.</p>
<p>Also, it might be argued that there are already a considerable body of tutorials/questions for ASP.NET asked and answered on the internet which means there are more resources for those who search for their problem. MVC being the newer technology will therefore generate more questions right now because there is less material out there on how to do certain things.</p>
http://stackoverflow.com/questions/235003/acm-problem-coin-flipping-help-me-identify-the-type-of-problem-this-is9ACM Problem: Coin-Flipping, help me identify the type of problem this is. Simucal2008-10-24T19:40:30Z2009-10-14T13:44:44Z
<p>I'm practicing for the upcoming ACM programming competition in a week and I've gotten stumped on this programming problem.</p>
<p><strong>The problem is as follows:</strong></p>
<p><hr /></p>
<p>You have a puzzle consisting of a square grid of size 4. Each grid square holds a single coin; each coin is showing either heads (H) and tails (T). One such puzzle is shown here:</p>
<blockquote>
<p>H H H H<br />
T T T T<br />
H T H T<br />
T T H T </p>
</blockquote>
<p>Any coin that is current showing Tails (T) can be flipped to Heads (H). However, any time we flip a coin, we must also flip the adjacent coins direct above, below and to the left and right in the same row. Thus if we flip the second coin in the second row we must also flip 4 other coins, giving us this arrangment (coins that changed are shown in bold).</p>
<blockquote>
<p>H <strong>T</strong> H H<br />
<strong>H</strong> <strong>H</strong> <strong>H</strong> T<br />
H <strong>H</strong> H T<br />
T T H T </p>
</blockquote>
<p>If a coin is at the edge of the puzzle, so there is no coin on one side or the other, then we flip fewer coins. We do not "wrap around" to the other side. For example, if we flipped the bottom right coin of the arragnement above we would get:</p>
<blockquote>
<p>H T H H<br />
H H H T<br />
H H H <strong>H</strong><br />
T T <strong>T</strong> <strong>H</strong> </p>
</blockquote>
<p>Note: Only coins showing (T) tails can be selected for flipping. However, anytime we flip such a coin, adjacent coins are also flipped, regardless of their state.</p>
<p>The goal of the puzzle is to have all coins show heads. While it is possible for some arragnements to not have solutions, all the problems given will have solutions. The answer we are looking for is, for any given 4x4 grid of coins what is the least number of flips in order to make the grid entirely heads.</p>
<p>For Example the grid:<br />
H T H H<br />
T T T H<br />
H T H T<br />
H H T T </p>
<p>The answer to this grid is: 2 flips.</p>
<p><hr /></p>
<p>What I have done so far:</p>
<p>I'm storing our grids as two-dimensional array of booleans. Heads = true, tails = false.
I have a <strong>flip(int row, int col)</strong> method that will flip the adjacent coins according the rules above and I have a <strong>isSolved()</strong> method that will determine if the puzzle is in a solved state (all heads). So we have our "mechanics" in place.</p>
<p>The part we are having problems with is how should we loop through, going an the least amount of times deep?</p>
http://stackoverflow.com/questions/235003/acm-problem-coin-flipping-help-me-identify-the-type-of-problem-this-is/1566323#15663230Answer by Simucal for ACM Problem: Coin-Flipping, help me identify the type of problem this is. Simucal2009-10-14T13:44:44Z2009-10-14T13:44:44Z<p>I sat down and attempted my own solution to this problem (based on the help I received in this thread). I'm using a 2d array of booleans, so it isn't as nice as the people using 16bit integers with bit manipulation.</p>
<p>In any case, here is my solution in Java:</p>
<pre><code>import java.util.*;
class Node
{
public boolean[][] Value;
public Node Parent;
public Node (boolean[][] value, Node parent)
{
this.Value = value;
this.Parent = parent;
}
}
public class CoinFlip
{
public static void main(String[] args)
{
boolean[][] startState = {{true, false, true, true},
{false, false, false, true},
{true, false, true, false},
{true, true, false, false}};
List<boolean[][]> solutionPath = search(startState);
System.out.println("Solution Depth: " + solutionPath.size());
for(int i = 0; i < solutionPath.size(); i++)
{
System.out.println("Transition " + (i+1) + ":");
print2DArray(solutionPath.get(i));
}
}
public static List<boolean[][]> search(boolean[][] startState)
{
Queue<Node> Open = new LinkedList<Node>();
Queue<Node> Closed = new LinkedList<Node>();
Node StartNode = new Node(startState, null);
Open.add(StartNode);
while(!Open.isEmpty())
{
Node nextState = Open.remove();
System.out.println("Considering: ");
print2DArray(nextState.Value);
if (isComplete(nextState.Value))
{
System.out.println("Solution Found!");
return constructPath(nextState);
}
else
{
List<Node> children = generateChildren(nextState);
Closed.add(nextState);
for(Node child : children)
{
if (!Open.contains(child))
Open.add(child);
}
}
}
return new ArrayList<boolean[][]>();
}
public static List<boolean[][]> constructPath(Node node)
{
List<boolean[][]> solutionPath = new ArrayList<boolean[][]>();
while(node.Parent != null)
{
solutionPath.add(node.Value);
node = node.Parent;
}
Collections.reverse(solutionPath);
return solutionPath;
}
public static List<Node> generateChildren(Node parent)
{
System.out.println("Generating Children...");
List<Node> children = new ArrayList<Node>();
boolean[][] coinState = parent.Value;
for(int i = 0; i < coinState.length; i++)
{
for(int j = 0; j < coinState[i].length; j++)
{
if (!coinState[i][j])
{
boolean[][] child = arrayDeepCopy(coinState);
flip(child, i, j);
children.add(new Node(child, parent));
}
}
}
return children;
}
public static boolean[][] arrayDeepCopy(boolean[][] original)
{
boolean[][] r = new boolean[original.length][original[0].length];
for(int i=0; i < original.length; i++)
for (int j=0; j < original[0].length; j++)
r[i][j] = original[i][j];
return r;
}
public static void flip(boolean[][] grid, int i, int j)
{
//System.out.println("Flip("+i+","+j+")");
// if (i,j) is on the grid, and it is tails
if ((i >= 0 && i < grid.length) && (j >= 0 && j <= grid[i].length))
{
// flip (i,j)
grid[i][j] = !grid[i][j];
// flip 1 to the right
if (i+1 >= 0 && i+1 < grid.length) grid[i+1][j] = !grid[i+1][j];
// flip 1 down
if (j+1 >= 0 && j+1 < grid[i].length) grid[i][j+1] = !grid[i][j+1];
// flip 1 to the left
if (i-1 >= 0 && i-1 < grid.length) grid[i-1][j] = !grid[i-1][j];
// flip 1 up
if (j-1 >= 0 && j-1 < grid[i].length) grid[i][j-1] = !grid[i][j-1];
}
}
public static boolean isComplete(boolean[][] coins)
{
boolean complete = true;
for(int i = 0; i < coins.length; i++)
{
for(int j = 0; j < coins[i].length; j++)
{
if (coins[i][j] == false) complete = false;
}
}
return complete;
}
public static void print2DArray(boolean[][] array)
{
for (int row=0; row < array.length; row++)
{
for (int col=0; col < array[row].length; col++)
{
System.out.print((array[row][col] ? "H" : "T") + " ");
}
System.out.println();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1502171/how-do-you-persist-changes-to-objects-returned-from-a-linq-query-to-the-database/1502235#15022353Answer by Simucal for How do you persist changes to objects returned from a LINQ query to the database?Simucal2009-10-01T06:35:00Z2009-10-01T06:35:00Z<p>You want to use the <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.submitchanges.aspx" rel="nofollow">SubmitChanges()</a> method available on your DataContext.</p>
<p>Quick example:</p>
<pre><code>public void updateLoadDate(int id)
{
using(LinqDataContext db = new LinqDataContext())
{
var myObject = (from object in db.objects
where object.id == id
select object).SingleOrDefault();
myObject.lastloaded = DateTime.Now();
db.SubmitChanges();
}
}
</code></pre>
http://stackoverflow.com/questions/838083/what-is-the-best-book-for-programming-language-theory6What is the best book for Programming Language Theory?Simucal2009-05-08T03:17:58Z2009-09-29T20:09:34Z
<p>What is a good book that covers the topics of grammars (<a href="http://en.wikipedia.org/wiki/Context-free%5Fgrammar" rel="nofollow">context-free</a> and <a href="http://en.wikipedia.org/wiki/Context-sensitive%5Fgrammar" rel="nofollow">context-sensitive</a>) and their notations (<a href="http://en.wikipedia.org/wiki/Extended%5FBackus%E2%80%93Naur%5Fform" rel="nofollow">EBNF</a>, <a href="http://en.wikipedia.org/wiki/Backus%E2%80%93Naur%5FForm" rel="nofollow">BNF</a>, etc), syntax, type and programming language theory, etc?</p>
<p>I'm not really digging the textbook we used at my school for our "Programming Languages" class and I'm looking to supplement some of the topics we covered with a different text. </p>
<p>If you have had good experience with a PL theory book that covers these topics please suggest it!</p>
http://stackoverflow.com/questions/510315/how-should-i-implement-user-membership-in-my-asp-net-mvc-site7How should I implement user membership in my ASP.NET MVC site?Simucal2009-02-04T06:48:54Z2009-09-22T23:54:42Z
<p>I'm creating an ASP.NET MVC site and I need to implement login and membership functionality. </p>
<p>Is this something where I roll my own? I already have a members table in my database, should I create a username and password hash field and just check against it? What about keeping the user logged in with a cookie that expires? </p>
<p>Is this an instance when you would use ASP.NET's built in Membership service? </p>
<p>ASP.NET MVC neophyte seeks help.</p>
http://stackoverflow.com/questions/500024/are-there-any-alternatives-to-paypal-that-still-have-a-robust-api11Are there any alternatives to Paypal that still have a robust API?Simucal2009-02-01T02:07:02Z2009-09-17T03:37:10Z
<p>I currently sell a small software program and we use Paypal to handle receiving payment via Credit Cards.</p>
<p>Its fees are really high and some of their policies are a little overreaching.</p>
<p>What alternatives are there that still have a robust API? For example, when we make a sale we have Paypal notify our server when the payment clears so we can send out a persons activation key automatically. </p>
<p>Requirements:</p>
<ul>
<li>We must be able to <strong>take payment within our own website</strong> on our own form. No redirecting to a 3rd parties website to place payment and then come back.</li>
<li>It must <strong>notify our server when a sale goes through</strong> so we can automatically send out a license code email. We do this with PayPal currently.</li>
<li>Must have a <strong>reasonable chargeback policy</strong> and be willing to work with the sellers on issues.</li>
<li>It's <strong>fees must be less than that of PayPal's</strong>. As a small-time developer, I've already paid PayPal $2k in fees. I'd like to cut these costs somewhat.</li>
<li>Must be <strong>trusted by customers</strong>. I don't want some obscure money handler that will scare off my customers.</li>
</ul>
<p>I've heard that one can even get setup to process credit card sales directly and have the charges deposited into a bank account. I'm not sure if this would be ideal or not as I have no experience with it. I would think you would be losing all the nice features most services provide.</p>
<p>So tell me SO, how should I take payment as a small time developer?</p>
http://stackoverflow.com/questions/1434993/is-it-possible-to-simplify-this-regular-expression-any-further4Is it possible to simplify this regular expression any further?Simucal2009-09-16T19:28:19Z2009-09-17T00:09:37Z
<p>I'm working on some homework for my compiler class and I have the following problem:</p>
<p>Write a regular expression for all strings of <em>a</em>'s and <em>b</em>'s that contain an odd number of <em>a</em>'s or an odd number of <em>b</em>'s (or both).</p>
<p>After a lot of whiteboard work I came up with the following solution:</p>
<pre><code>(aa|bb)* (ab|ba|a|b) ((aa|bb)* (ab|ba) (aa|bb)* (ab|ba) (aa|bb)*)*
</code></pre>
<p>However, Is this is the most simplified I can get it? I've considered constructing the DFA trying to minimize the number of states there to see if it would help me simplify but I figured I would ask the regex gurus on SO first.</p>
http://stackoverflow.com/questions/535785/preparing-for-a-cs-degree-and-college-any-tips/536089#53608958Answer by Simucal for Preparing for a CS degree and college. Any tips?Simucal2009-02-11T09:31:47Z2009-09-16T19:48:57Z<p>Enjoy your first year. Go out, have fun, party, stay up late.</p>
<p>However, when it comes time to buckle down you <em>have</em> to be disciplined. This is the stage I've seen so many of my peers fail at that I think it is important to mention it.</p>
<p><em>Especially</em> for people who sailed through high school. The people who never had to study, who completed their homework before the period ended or who aced all their tests. All that talk about not having "study habits" ends up being true. Some really smart people end up figuring this out too late when their grades are shot or are severely behind.</p>
<p>I'm going to tell you the <strong>secret to success</strong> in higher education:</p>
<p>Treat school like a 9am - 5pm job. Even if you don't have class until noon, wake up at the same time every day to keep the same sleep schedule. Go to the library or favorite study place and do homework until your class starts. Same if you get out of class before 5. Go finish your homework or your assigned reading until 5.</p>
<p>This is a really neat psychological trick. When 5 o-clock rolls around you can call it quits and do fun stuff your <em>entire</em> evening. Play video games, flirt with girls at the other end of the dorm, whatever. Everyone else you see will be stressing, doing assignments until the wee hours of the night. They'll look at you and wonder if you ever study. </p>
<p>This same advice was given to me before I went and it has served me well.</p>
http://stackoverflow.com/questions/1397206/should-i-use-backgroundworker-or-threads-when-i-need-to-scrape-a-website2Should I use BackgroundWorker or Threads when I need to scrape a website?Simucal2009-09-09T01:56:14Z2009-09-09T15:28:36Z
<p>I'm going to screen-scrape a gaming website for some data. I'd like to be able to send multiple requests so I can screen-scrape several pages at once. I've emailed the site administrator and gotten permission to scrape at a moderate rate (a few requests per second).</p>
<p>As far as I know BackgroundWorker uses the thread-pool which I think would be desirable.<br />
Does it make sense to use BackgroundWorker for this use-case, or use actual Threads?</p>
http://stackoverflow.com/questions/552529/is-there-a-reason-why-i-shouldnt-use-nvarchar-in-sql-server2Is there a reason why I shouldn't use NVARCHAR in Sql Server?Simucal2009-02-16T07:50:05Z2009-09-09T05:04:19Z
<p>I'm designing a database scheme right now and I figure just to be safe I should use nvarchar for my textual column's datatypes (for unicode support). While I don't expect non-english text I figure it would be better to have support it from the begining just in case.</p>
<p>Is there any reason why I should stick with plain varchar? Performance?</p>
http://stackoverflow.com/questions/1391909/as-a-net-beginner-what-should-i-learn-and-where-can-i-find-open-source-projects/1392000#13920000Answer by Simucal for As a .NET beginner, what should I learn and where can I find open source projects?Simucal2009-09-08T04:43:39Z2009-09-08T04:43:39Z<p>SO Question: <a href="http://stackoverflow.com/questions/143088/open-source-c-projects-that-have-high-code-quality">Open Source C# Projects That Have High Code Quality?</a></p>
http://stackoverflow.com/questions/143088/open-source-c-projects-that-have-high-code-quality73Open source C# projects that have high code quality?Simucal2008-09-27T05:57:57Z2009-09-05T22:43:59Z
<h2>Question:</h2>
<p>What are some open source C# projects I can download that implement many best-practices and have a relatively high code quality?</p>
<p>Please accompany your answer with some of the reasons you consider the code is of high quality.</p>
<p><hr /></p>
<h2>Suggestions so far:</h2>
<ul>
<li><a href="http://www.codeplex.com/SharpDevelop" rel="nofollow">SharpDevelop</a></li>
<li><a href="http://www.hibernate.org/428.html" rel="nofollow">NHibernate</a></li>
<li><a href="http://boo.codehaus.org/" rel="nofollow">Boo</a></li>
<li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a></li>
<li><a href="http://www.go-mono.com/mono-downloads/download.html/" rel="nofollow">Mono</a></li>
<li><a href="http://www.paint.net/" rel="nofollow">Paint.NET</a> - <a href="http://paintdotnet.forumer.com/viewtopic.php?f=27&t=28275" rel="nofollow">Not Open Source</a></li>
<li><a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC Framework</a></li>
<li><a href="http://referencesource.microsoft.com/netframework.aspx" rel="nofollow">.Net Framework Source Code</a></li>
<li><a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source%2BCode" rel="nofollow">The Weekly Source Code</a> (Scott Hanselman's Series)</li>
<li><a href="http://msdn.microsoft.com/en-us/practices/default.aspx" rel="nofollow">Microsoft's Pattern and Practices</a></li>
</ul>
http://stackoverflow.com/questions/482574/whats-the-advantage-of-using-c-over-c-or-is-there-one/482727#482727Comment by Simucal on What's the advantage of using C over C++ or is there one?Simucal2009-12-11T22:42:50Z2009-12-11T22:42:50Z@Matt Fichman, I think you sort of missed his point. There are some fine C++ programmers. But, when you are dealing with groups of programmers of varying skill level (like the people working on an open source project) then it can be too easy to shoot yourself in the foot with less-experienced programmers. He found that C was the better choice in that case. He just said it colorfully.http://stackoverflow.com/questions/1874971/do-you-feel-that-writing-on-paper-helps-you-develop-better/1874996#1874996Comment by Simucal on Do you feel that writing on paper helps you develop better?Simucal2009-12-10T14:44:30Z2009-12-10T14:44:30ZGood answer. Also, I'm perfectly capable of pulling out key points in a block of text without being inundated with bold ;).http://stackoverflow.com/questions/1854720/algorithm-needed-in-any-laguage-related-to-arrays/1854752#1854752Comment by Simucal on Algorithm needed in any laguage - Related to Arrays...Simucal2009-12-06T08:37:24Z2009-12-06T08:37:24ZI agree. If you want to make a post of this sort then that is what the comments are for.http://stackoverflow.com/questions/1837179/should-i-place-jquery-files-on-my-web-server-or-just-refer-to-them-via-jquery-com/1837188#1837188Comment by Simucal on Should I place Jquery files on my web server or just refer to them via jquery.com in my PHP files, which is better?Simucal2009-12-03T02:10:29Z2009-12-03T02:10:29Z+1, Cletus is correct. Google's jquery files are hosted on a pretty crazy CDN that is routed among many locations to get the file to your users as fast as possible.http://stackoverflow.com/questions/1809783/just-finished-learning-x86-assembly-language-what-can-i-do-with-it/1809818#1809818Comment by Simucal on Just finished learning x86 assembly language. What can I do with it?Simucal2009-11-30T20:13:31Z2009-11-30T20:13:31ZYou might want to add a link to MikeOS also. It is a small operating system written in Assembly that is designed as a learning tool to see how simple operating systems work. It has well commented code and documentation: <a href="http://mikeos.berlios.de/" rel="nofollow">mikeos.berlios.de</a>http://stackoverflow.com/questions/1791232/i-am-not-the-most-logically-organized-person-do-i-have-any-chance-at-being-a-gooComment by Simucal on I am not the most logically-organized person. Do I have any chance at being a good 'low-level' programmer?Simucal2009-11-29T20:59:56Z2009-11-29T20:59:56ZSeriously? I must be pretty stuck in my Reddit/HackerNews bubble because I thought most people knew what tl;dr meant.http://stackoverflow.com/questions/1749597/how-do-aim-bots-in-fps-games-work/1749661#1749661Comment by Simucal on how do aim bots in fps games work?Simucal2009-11-20T04:15:15Z2009-11-20T04:15:15ZYou don't need DLL Injection to access a programs memory. DLL Injection is used to execute code in the same address space as the target process. You can then use it to call upon functions that are internal to that process or trap certain calls.http://stackoverflow.com/questions/1760748/why-do-i-lately-have-to-be-a-master-of-big-o-sorting-searching-trees-graphsComment by Simucal on Why do I lately have to be a master of big-O, sorting, searching, trees, graphs, large scale efficient data processing algorithms?Simucal2009-11-19T04:57:17Z2009-11-19T04:57:17ZI'm guessing you don't have a degree then?http://stackoverflow.com/questions/1727289/please-can-anyone-check-this-while-loop-and-if-condition/1727401#1727401Comment by Simucal on please can anyone check this while loop and if conditionSimucal2009-11-13T06:17:20Z2009-11-13T06:17:20ZIf you happen to be looking for a second opinion, I also checked. It is indeed a while loop.http://stackoverflow.com/questions/345838/ball-to-ball-collision-detection-and-handlingComment by Simucal on Ball to Ball Collision - Detection and HandlingSimucal2009-11-13T05:53:35Z2009-11-13T05:53:35ZHere is a link to the last version of BallBounce I worked on: <a href="http://dl.dropbox.com/u/638285/ballbounce.rar" rel="nofollow">dl.dropbox.com/u/638285/ballbounce.rar</a>http://stackoverflow.com/questions/1719560/write-simple-calculator-code-using-java/1719592#1719592Comment by Simucal on write simple calculator code using javaSimucal2009-11-13T00:44:12Z2009-11-13T00:44:12Z+1 for JavaBat. Neat website.http://stackoverflow.com/questions/1684798/why-am-i-unable-to-return-an-xml-string-as-a-contentresult-in-asp-net-mvc/1684811#1684811Comment by Simucal on Why am I unable to return an XML string as a ContentResult in ASP.NET MVC?Simucal2009-11-06T01:24:02Z2009-11-06T01:24:02ZI've considered XmlResult, but as far as I know it is part of the MVC-Contrib library. I don't mind having to utilize this but I would really like to know what I'm doing wrong as well.http://stackoverflow.com/questions/1670992/repeat-forever-a-if-function/1671037#1671037Comment by Simucal on Repeat Forever a If FunctionSimucal2009-11-04T00:35:07Z2009-11-04T00:35:07ZIs this an attempt at humor? lolhttp://stackoverflow.com/questions/1651874/what-is-the-best-way-to-go-about-writing-a-simple-x86-assembler/1651898#1651898Comment by Simucal on What is the best way to go about writing a simple x86 assembler?Simucal2009-10-30T19:48:51Z2009-10-30T19:48:51ZIf you read my question, it isn't my first compiler. I've used Lex/Yacc before, and I have a general understanding of ANTLR. It seems many resources online and even on SO suggest using Ad-hoc parsing when writing an assembler. Do you agree or disagree?http://stackoverflow.com/questions/1651490/in-c-checking-string-length-greater-than-zero-produces-error/1651509#1651509Comment by Simucal on In C#, Checking string length greater than zero produces error?Simucal2009-10-30T18:29:40Z2009-10-30T18:29:40Z@Bob, No. The above code handles the null cases just fine.