Mark
|
Registered User
|
I'm a student (4th year, BSc Comp Sci), programmer, and web designer.
|
|
13h |
comment |
Black hat knowledge for white hat programmers I'd say "to the full extent". How else can you prevent attacks unless you know exactly how they are performed? |
|
13h |
accepted | How come this for-loop for displaying small images skips sometimes when uploaded? |
|
13h |
answered | How come this for-loop for displaying small images skips sometimes when uploaded? |
|
Dec 15 |
comment |
From C# to C++, good references? I doubt they expect him to know it out of the blue. The first couple assignments are usually easy enough that you can pick up the language as you do them. |
|
Dec 15 |
comment |
django fails, sometimes, very erratic behavior. Sounds kinda like [my question](stackoverflow.com/questions/1635995/…) |
|
Dec 15 |
comment |
how to pre-load images only using css no js? (And no, there isn't another solution) |
|
Dec 15 |
comment |
how to pre-load images only using css no js? Why don't you want to use CSS sprites? |
|
Dec 14 |
answered | strategy for hit detection over a net connection, like Quake or other FPS games. |
|
Dec 14 |
comment |
Need to deny all IPs except mine from accessing site and display friendly error. @alex: don't worry about it. if there's enough cranky people, they'll migrate it for you. |
|
Dec 11 |
comment |
Django: Messages Framework I say forget about the CSS file. View the outputted HTML source code, and make your own CSS based on that. |
|
Dec 11 |
comment |
Why this js code works? Truthiness is a bit of a funny word, but he means something like "truth-value test", i.e., does wysiwyg_toolbarButtons evaluate to true or false? undefined is also considered false. |
|
Dec 10 |
comment |
Should primitive datatypes be capitalized? I still agree with Steve here. I think you're restricting yourself too much by having case-insensitivity. You could always have a hybrid solution where if you have two things called Int and int then the case does matter, but if there's only one, then it doesn't. Before you say this is such a horrible idea, think about scoping in some languages. C++ lets you have constructors take arguments with the same name as member variables. It assumes you want the local one, unless you write this->. Just a thought ;) I'd still have my IDE correct it for me automatically if it's such an issue. |
|
Dec 10 |
revised |
Should primitive datatypes be capitalized? added 122 characters in body |
|
Dec 10 |
revised |
Should primitive datatypes be capitalized? edited tags; edited tags |
|
Dec 10 |
revised |
Securly Storing OpenID identifiers and OAuth tokens added 102 characters in body |
|
Dec 10 |
comment |
Securly Storing OpenID identifiers and OAuth tokens @Andrew: I guess I'm thinking of the nonces? Those are separate? |
|
Dec 10 |
comment |
How to protect intellectual property in java app +1 for 'easter egg'. That's an interesting idea. |
|
Dec 10 |
comment |
Repopulating page with previous values in rails If validation fails, the data shouldn't even be in the database. I don't know much about RoR, but it should still be sitting in the POST variable, no? |
|
Dec 10 |
comment |
I’m pursuing post graduation in cmputer science. I want some guidence about my career! @baron: I suspect he means it's the first fork in the road. After you decide 'development', then you get those options ;) |
|
Dec 10 |
answered | Securly Storing OpenID identifiers and OAuth tokens |
|
Dec 10 |
answered | jquery regular expression with custom messages |
|
Dec 10 |
comment |
What is the best strategies to write CSS for CMS generated HTML where I can’t modify HTML? I don't see the problem here. You've got ample classes to hook into. Style it however your heart desires ;) |
|
Dec 10 |
comment |
Regex to Parse Hyperlinks and Descriptions +1 for HTML Agility Pack. Someone suggested this to me recently and it worked wonderfully. |
|
Dec 10 |
comment |
Should primitive datatypes be capitalized? Oh I agree with that. I wouldn't make them "primitive" at all, but you're probably still going to have some "int" type, whether it's an object or not. You haven't commented on naming ;) |
|
Dec 10 |
comment |
Should primitive datatypes be capitalized? Cont'd: Actually, I'm not really sure what you mean. Why would you have different things named like that? I'm suggesting only one thing called Int. Any other capitalization of variable names would be up to the programmer. |
|
Dec 10 |
comment |
Should primitive datatypes be capitalized? @Chris: It's a community wiki, you could have posted that as an answer. I don't understand why you find cases so difficult to remember though. The whole idea behind this, is that its consistent so it's easier to remember, and if that's still an issue for you, any good IDE will correct the case for when you start to type it out. I very much like having a case-sensitive language. Then I could do Int int which would be short for "intelligence" in some sort of RPG game. |
|
Dec 10 |
asked | Should primitive datatypes be capitalized? |
|
Dec 8 |
answered | What is the business best practice on validating filename? |
|
Dec 8 |
comment |
Get good @font-face fonts Is @font-face reliable, or should you still be using sIFR? mikeindustries.com/blog/sifr |
|
Dec 8 |
comment |
Is Programming == Math? @HBoss: That just means it's always art :) |
|
Dec 8 |
comment |
Single vs Double datatypes "Most" applications. Could be a problem for embedded systems, or when you have millions of doubles. |
|
Dec 8 |
comment |
I see that ports(8005,8080,8009) in the eclipse are already in use. What exactly is the question? Those ports are in use. Close the program(s) that are using them. |
|
Dec 7 |
answered | String Compare “Logic” |
|
Dec 7 |
comment |
Django: Overrriding form save? @Jim: Yes... but how do I check which case it is inside the save() method? Is checking if article.id is set a reliable method? |
|
Dec 7 |
comment |
Django: Overrriding form save? Ok... I'll accept it after the mandatory 2 day waiting period, but in the meantime, is there a way to check if save() is updating an existing article, or creating a new one? |
|
Dec 7 |
answered | Django: Overrriding form save? |
|
Dec 7 |
comment |
Django: Overrriding form save? I guess the answer I'm looking for is: article = super(ArticleForm, self).save(commit=False). |
|
Dec 7 |
comment |
Computing overlaps of grids Sounds like template matching. en.wikipedia.org/wiki/Template_matching |
|
Dec 7 |
comment |
login to multiple web sites by login only once at a my site. There are OpenID libraries for PHP too of course. I've used them and got them working without too much hassle. Although I don't think this is what the OP is really after... I think he just wants to make it so his users can log into only his site, and be signed on everywhere for convenience, not provide them with another authentication method. This is better suited as a Firefox add-on IMO. |
|
Dec 7 |
asked | Django: Overrriding form save? |
|
Dec 7 |
comment |
Extending the User model with custom fields in Django That still doesn't answer anything Wahnfrieden. |
|
Dec 7 |
comment |
Nice way to pass parameters to PDO Oh. I thought 'positional' meant like the first %s refers to the first argument, and so forth... |
|
Dec 7 |
revised |
NP vs NP-Complete vs NP-Hard added 173 characters in body; deleted 171 characters in body |
|
Dec 7 |
comment |
Adding floats with javascript Dude. Why are you using toFixed before you've got the total? That turns it into a string, and then they're being appended. Your output should have clued you into that. Secondly, assuming it did work as you thought (stays as a float), you'd be lopping off precision before you got your total. |
|
Dec 7 |
answered | Nice way to pass parameters to PDO |
|
Dec 7 |
revised |
Django template get first? added 270 characters in body |
|
Dec 7 |
asked | Django template get first? |
|
Dec 6 |
accepted | trigger jquery with php? |
|
Dec 6 |
answered | trigger jquery with php? |
|
Dec 6 |
asked | Django edit form based on add form? |
