rmeador

8,404
Reputation
584 views

Registered User

Name rmeador
Member for 1 year
Seen 1 hour ago
Website
Location
Age 25
Nov
25
accepted better way to communicate between ad hoc wifi windows mobile devices
Nov
24
comment How can I play continuous music in the background when my iPhone app is running?
please have a way to turn off the music. most people get very annoyed by apps (and especially web pages) that play music they can't turn off.
Nov
23
awarded  Popular Question
Nov
23
comment Examples of vulnerable PHP code?
all this proves is that there is no one easy fix. You actually have to understand the vulnerabilities and think when you implement so that you apply the correct fix to the specific problem you have.
Nov
23
comment format of for loops
I can't disagree with you more. I expect that knowing prefix vs postfix increment is among the absolute minimum of knowledge that I would accept for a maintenance programmer. I think it should be used when it can be, because it's very easy to mistype i = i + 1 in a way that the compiler won't catch.
Nov
20
comment Vim Spell options
I want to find an option that makes it ignore identifiers in my source that are found within string literals or comments... right now it marks them as spelling errors, even though the comment is often about the very thing it says is misspelled.
Nov
20
comment what is best port for program
I agree with you that it's a dangerous game, but it's also sometimes necessary in order to make your service available from within a very restricted network. IIRC, AIM will attempt to use a bunch of different ports to get out if its normal ports are blocked. I've seen it settle on both port 80 and port 23. A number of filesharing apps use this technique as well.
Nov
20
answered what are the recommended methods to create online 3d gaming engine ?
Nov
19
comment SVN Repository Structure
this has been my experience as well. +1
Nov
19
comment sql query tree like structure
+1 preorder traversal is definitely the way to go
Nov
17
comment how to turn off a unit test in CPPUnit
I'm afraid I don't understand what you mean by "testSuite_* code". AFAIK, there is no code that looks like that in my test app. I am using the convenience macros, so possibly what you mean is obfuscated by that...
Nov
17
comment CruiseControl.NET conflicts with other build tools, leaves SVN WC broken
I still don't know the original cause of this problem, but it did again manifest while CC was disabled, so it was not to blame after all.
Nov
17
asked how to turn off a unit test in CPPUnit
Nov
17
comment Prefix “Is” in Method Name for Verification Methods
I have never considered this idea... I like it a lot. I worry that it is dissimilar enough from most people's expectations that it will make the code hard for others to use/maintain, however.
Nov
17
answered Draw on screen border in Commodore 64
Nov
14
awarded  Popular Question
Nov
14
accepted Is the board game “Go” NP complete?
Nov
12
answered Is the board game “Go” NP complete?
Nov
12
comment Prime Factorization
IIRC, the elliptic curve algorithm published by the NSA was discovered to have a something that could be a back door, so maybe that's why they were pushing its use? schneier.com/essay-198.html
Nov
11
accepted Subversion whitespace-removal commit hook
Nov
10
awarded  Nice Answer
Nov
10
accepted Can (Should) I put 3rd party libraries in version control?
Nov
10
answered Can (Should) I put 3rd party libraries in version control?
Nov
9
answered Subversion whitespace-removal commit hook
Nov
6
comment Database Design: Is it bad to keep delimited strings in a database
+1. I can speak from extended personal experience with comma-delimited and URL-encoded strings stored in the database that they are the WORST IDEA EVER. If I was in charge, I'd instantly fire anyone who checked in code that did such a thing.
Nov
6
comment Boolean Concatenation? What’s the real term for this pattern?
if your functions are both performing the validation and marking the UI, they're doing too many things. Those are separate concerns.
Nov
6
comment Why the name main for function main()
@David: there is some evidence that the side of the road you drive on does have a slight effect on safety. This is because of the dominant eye of the people driving. en.wikipedia.org/wiki/…
Nov
6
comment Inspiration needed: Selecting large amounts of data for a highscore.
So as you iterate over the result set to print the high scores, don't increment the "rank" counter if the next value is the same as the current value :)
Nov
5
answered How does programming languages differ between different parts of the world?
Nov
5
comment Inspiration needed: Selecting large amounts of data for a highscore.
Your comment leads me to believe you have missed an essential point of my answer. You will be getting rid of the rank column, as you say, but you will not be "generating it on runtime". You do not generate a rank at all. If you have some sort of absolute score stored in the database, the database is capable of sorting on that column, so you can retrieve the players in order of score whenever you want. "Rank" becomes entirely implicit in the query you use to retrieve the information.
Nov
5
accepted Inspiration needed: Selecting large amounts of data for a highscore.
Nov
5
answered Inspiration needed: Selecting large amounts of data for a highscore.
Nov
5
answered Determine If a User Is Idented On IRC
Nov
4
comment Does stack grow upward or downward?
good point, hadn't considered that. but it still suffices as a proof that the compiler can reorder them, since we know it can do it at least some of the time :)
Nov
4
comment Does stack grow upward or downward?
In fact, I know the compiler can reorder them, because it's also free to not allocate them at all. It can just put them into registers and not use any stack space whatsoever.
Nov
4
answered Does stack grow upward or downward?
Nov
4
comment Cross-Platform equivalent to windows events
I think your Windows-specific code is using a mutex under the hood. It just abstracts that away.
Nov
4
comment Is R language interpreted?
+1 for raising very important points. It's especially important to dispel the OP's apparent notion that interpreted/static/dynamic are three possible values for the same attribute of a language. The latter two are completely orthogonal.
Nov
4
comment how to encrypt string data so that it can only be decoded by the computer it resides on ?
+1 for HTTPS. that is the correct solution.
Nov
4
answered find, replace and escape string linux
Nov
4
comment cache addressing
wow, why such a violet response? I can understand what he's getting at, he just hasn't given nearly enough info for it to be answerable. Give the OP a chance to flesh out the question in response to the comments. I'll be coming back to vote up/vote to reopen/answer if it gets edited.
Nov
4
comment C++ Data Member Alignment and Array Packing
not just safer, but clearer and gets rid of a magic number. +1
Nov
4
comment How can I send an auto-generated email every x-days with php mail(), without access to cron?
if you take this approach, be VERY careful that you write your "secret" script to check the last time it was activated and not do anything if 15 days hasn't elapsed. You don't want someone discovering your secret URL and repeatedly requesting it to spam your clients.
Nov
4
comment Fast 4x4 Matrix Multiplication in C
that point #2 seems very important. +1
Nov
3
comment detect duplicate insert
the JS trick is great for reducing the load on your server, but it isn't going to protect you. What about users who have JS turned off, or even maliciously submit multiple requests?
Oct
30
answered svn: differences between tags and a revision number reference
Oct
30
comment Ubiquitous way to get the root directory an application is running in via C#
I'm not a C# programmer, and I haven't looked up the docs, but just from the name of that I would expect it to return the path to the executable file, rather than the current working directory. I suspect the OP wants the working directory.
Oct
29
comment Why Component Object Model (COM)? Is it Language Dependent?
I think the reason you see so many C++ examples is the in-memory layout of a COM object is exactly the same as a C++ class with virtual functions. There may be some minor differences that I don't remember, but C++ can use COM objects directly, as least most of the time.
Oct
29
comment Does .Net have any built in constants for common numbers like million, billion etc?
excuse me, I did my math wrong. That should have been 163000000000. Note that this will not fit in a 32 bit integer.
Oct
29
comment Does .Net have any built in constants for common numbers like million, billion etc?
@Gurdas: going along with what @Heinzi said, if your language supports lazy evaluation and/or symbolic evaluation, it's entirely possible to create expressions where the πs cancel out and you're left with an exact result.