Simucal

17,548
Reputation
2526 views

Registered User

Name Simucal
Member for 1 year
Seen 19 hours ago
Website
Location US
Age 24
My name is Matthew McDole and I'm a senior at the University of Missouri studying Computer Science.

Email: Simucal [at] gmail [dot] com

Aim: Simucal
---
1d
awarded  Nice Answer
1d
accepted Just finished learning x86 assembly language. What can I do with it?
1d
answered Just finished learning x86 assembly language. What can I do with it?
Nov
20
comment how do aim bots in fps games work?
You 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.
Nov
19
comment Why do I lately have to be a master of big-O, sorting, searching, trees, graphs, large scale efficient data processing algorithms?
I'm guessing you don't have a degree then?
Nov
13
comment please can anyone check this while loop and if condition
If you happen to be looking for a second opinion, I also checked. It is indeed a while loop.
Nov
13
comment Ball to Ball Collision - Detection and Handling
Here is a link to the last version of BallBounce I worked on: dl.dropbox.com/u/638285/ballbounce.rar
Nov
13
asked What are some good resources on flocking and swarm algorithms?
Nov
13
comment write simple calculator code using java
+1 for JavaBat. Neat website.
Nov
8
awarded  Pundit
Nov
4
awarded  Popular Question
Nov
4
comment Repeat Forever a If Function
Is this an attempt at humor? lol
Nov
2
revised What is the best way to go about writing a simple x86 assembler?
Replaced naked links with inline. This makes the post much more readable.
Oct
30
revised Does outsourcing make you worry about the security of your job?
spelling
Oct
30
revised What is the best way to go about writing a simple x86 assembler?
cleaned up links, markdown
Oct
30
comment What is the best way to go about writing a simple x86 assembler?
If 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?
Oct
30
asked What is the best way to go about writing a simple x86 assembler?
Oct
30
comment In C#, Checking string length greater than zero produces error?
@Bob, No. The above code handles the null cases just fine.
Oct
30
awarded  Favorite Question
Oct
28
awarded  Notable Question
Oct
21
awarded  Stellar Question
Oct
21
awarded  Popular Question
Oct
19
revised Is there a simple way I can tokenize a string without a full-blown lexer?
deleted 69 characters in body
Oct
19
comment Is there a simple way I can tokenize a string without a full-blown lexer?
@brianpeiris, Oh, I'm not saying this isn't the answer. I was just commenting on the first line of Jani's answer, "If you don't want to write the algorithm specified on the wiki." The algorithm doesn't specify how to read in a token, it simply says "read token". So, in that way KingNestor is following the algorithm using this answer.
Oct
19
revised Is there a simple way I can tokenize a string without a full-blown lexer?
added 2 characters in body
Oct
19
comment Is there a simple way I can tokenize a string without a full-blown lexer?
He is still using the algorithm specified on the wiki page. The pseudo-code says "Read Token".
Oct
15
awarded  Popular Question
Oct
15
awarded  Favorite Question
Oct
15
revised What is the difference between monotonicity and the admissibility of a heuristic?
added 1 characters in body
Oct
14
asked What is the difference between monotonicity and the admissibility of a heuristic?
Oct
14
comment return 0 implicit
The judging is automated at the ACM competitions. So for some reason it didn't compile because of the lack of return statement. Could this of been a result of an old compiler?
Oct
14
answered Is ASP.NET MVC really only for 5% of Programmers?
Oct
14
answered ACM Problem: Coin-Flipping, help me identify the type of problem this is.
Oct
11
comment What’s the advantage of using C over C++ or is there one?
@jmucchiello, actually I'm pretty sure he has seen plenty of bad C code. Just because bad code can be written in any language does not mean all languages are equal as far as how easy it is to do so.
Oct
5
awarded  Good Answer
Oct
1
revised Dealing with Anti-Microsoft Trolls on The Internet
spelling?
Oct
1
comment What are the most important IDE features missing in Vim?
I'm curious about this, because I use VIM from time to time. Does it have any sort of "intellisense" plugin that shows a visual list of auto-complete options while I type? If there is one I want it.
Oct
1
comment Getting appropriate hash index C++
@lampshade, What are you talking about? You don't put strlen() in a loop. You find the size of the string intially, it has nothing to do with your loop.
Oct
1
comment How can I draw a “line” in a 2-D array (simulacrum for a screen)
Reminds me of the ACM programming competition questions.
Oct
1
revised How can I draw a “line” in a 2-D array (simulacrum for a screen)
added 129 characters in body
Oct
1
revised How do you persist changes to objects returned from a LINQ query to the database?
edited title
Oct
1
answered How do you persist changes to objects returned from a LINQ query to the database?
Sep
28
awarded  Popular Question
Sep
26
awarded  Nice Answer
Sep
20
comment Simple fun C++ Asterisk Hill
This has got to be homework. Hell, even I was given this exact assignment my freshman year. Make a star hill, make a diamond, etc.
Sep
18
awarded  Nice Answer
Sep
17
comment How can I find the index of the first “element” in my string using Java?
@starblue, that is what I would probably do if I were doing this, build the object structures by hand.
Sep
16
awarded  Great Answer
Sep
16
comment Is it possible to simplify this regular expression any further?
Thank you everyone! From the combined insight of Greg D, Walt W, and sepp2k we were able to come up with a valid answer.
Sep
16
comment Is it possible to simplify this regular expression any further?
@Walt W, I'm running this one through its paces but I think you are correct.