Vilx-
|
Registered User
|
Just your average everyday programmer.
|
|
15h |
awarded | ● Yearling |
|
2d |
comment |
Does there exist a digital image steganography algorithm which would be resistant to image manipulation? Of course. I'm not a fan of DRM. :) |
|
2d |
comment |
Does there exist a digital image steganography algorithm which would be resistant to image manipulation? I suppose that if one knew what algorithm was being used and was determined to deliberately remove (or cripple) the watermark, it would indeed be very difficult to stop him. However the vast majority of image thieves are simple users that don't think much about these things (or so I believe - I don't have any data). It would be already a good step forward to protect against them. |
|
2d |
asked | Does there exist a digital image steganography algorithm which would be resistant to image manipulation? |
|
Nov 25 |
comment |
Calculating difference between username and email in javascript Another question - why is tes.ter bad but tester6 good? They both differ by exactly one character. Can you be more specific (formal) about what is "good" and what is not? |
|
Nov 23 |
awarded | ● Good Answer |
|
Nov 23 |
comment |
Examples of vulnerable PHP code? Not to mention storing passwords in plaintext. |
|
Nov 23 |
comment |
PHP doesn’t handle stack overflow? Sweet. Can't wait until production upgrades to PHP 5.3 then. :P |
|
Nov 23 |
comment |
PHP doesn’t handle stack overflow? As I said - it should handle it like any other unhandled runtime error (such as an uncaught exception). It should give some error message (can you say "stack overflow"?) and return a 500 HTTP status code. |
|
Nov 23 |
comment |
PHP doesn’t handle stack overflow? That's not the point. Sure I can code with many safeguards of my own. But bugs are inevitable, and sooner or later there will be a StackOverflow as well. Most likely the recursion won't be intended, like one function calling another which in turn calls the first one. Having a nondescript segfault in this case doesn't help at all. |
|
Nov 23 |
comment |
PHP doesn’t handle stack overflow? No doubt. Especially because PHP doesn't have a compiler. :p |
|
Nov 23 |
asked | PHP doesn’t handle stack overflow? |
|
Nov 23 |
answered | Why use database schemas? |
|
Nov 22 |
comment |
Does version control let you work simultaneously on two different versions of a project? Look... I don't think there is a very definitive answer here about when to use conditional compilation and when to use branches. It's pretty subjective and either approach can work. All I'm saying is that in my opinion conditional compilation would be more suited for the OP's needs than branches. |
|
Nov 22 |
comment |
Does version control let you work simultaneously on two different versions of a project? This isn't the case. If you actually have parallel versions of the product, then by all means go for branches! We do that too at my workplace. Same thing goes for version branches, ahead branches, etc. But the merging will be done by hand every time. |
|
Nov 22 |
comment |
regular expression not working when provided in double quotes in javascript Is that JQuery you are using? $() is not a standard function, so dig up the documentation of whatever it is and see what it says there about the .attr() function. |
|
Nov 22 |
comment |
Does version control let you work simultaneously on two different versions of a project? Well, that still doesn't mean it's a best practice. :) Although, to be honest, I'm not very competent on source control best practices. Still, seems to me that conditional compilation is way more suited for this job than source control. |
|
Nov 22 |
answered | Does version control let you work simultaneously on two different versions of a project? |
|
Nov 22 |
comment |
multiplication program using recursion(in C) Nope. XD Whenever I give an answer to a homework, I either give it in pseudocode, give it incomplete, or give it so twisted and "clever" that the person who asks for it has no chance of explaining how it works (if he/she decides to give it as his/her own). :) |
|
Nov 22 |
comment |
multiplication program using recursion(in C) See my other answer. |
|
Nov 22 |
revised |
multiplication program using recursion(in C) added 127 characters in body; deleted 33 characters in body |
|
Nov 22 |
comment |
multiplication program using recursion(in C) Hello? Unsigned int? |
|
Nov 22 |
answered | multiplication program using recursion(in C) |
|
Nov 22 |
answered | multiplication program using recursion(in C) |
|
Nov 22 |
comment |
multiplication program using recursion(in C) StackOverflow, here we come! XD |
|
Nov 22 |
comment |
Importance of Mainframe Nice question, but sadly not programming related. :( Maybe try ServerFault? |
|
Nov 22 |
comment |
Serialization to Disk inplace of creating a simple database… Is there a pattern or industry name for this approach? I think this is called "cargo cult programming". :P |
|
Nov 20 |
comment |
Code-Golf: What is the shortest program that compiles and crashes? Actually, semicolons are completely optional in JavaScript. Try it yourself! And yes - I suppose this might work in a whole range of dynamic scripting languages. I'm just not familiar with any others. |
|
Nov 20 |
comment |
What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language? Well... put it this way - I'm comfortable with pointers, yet when asterisks and ampersands start flying around I easily get lost in the many levels of misdirection. I have an approximate understanding of templates (based on my understanding about .NET generics), yet have never used them. The necessity and usage of the "const" keyword eludes me. Etc. My knowledge of the language's features could be best summarized as "I don't know half of you half as well as I should like; and I like less than half of you half as well as you deserve." I can write code in C++, but it will be far from elegant. |
|
Nov 20 |
answered | Code-Golf: What is the shortest program that compiles and crashes? |
|
Nov 20 |
comment |
What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language? Nice. I'll keep in mind that this is resource might have flaws, but reading it will give me already something to start on, while I search for books. |
|
Nov 20 |
comment |
What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language? Hmm... I'm not a fan of books, but I see your point. I'll see if I can get my hands on some of them. |
|
Nov 20 |
asked | What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language? |
|
Nov 20 |
comment |
Using Divs to display table-like data ...or specify font sizes in px as well, which effectively disables font sizing in browsers (zoom still works though). |
|
Nov 20 |
comment |
use of “using” keyword in c# LOL! A useful comment, Michael! :D |
|
Nov 20 |
answered | use of “using” keyword in c# |
|
Nov 20 |
answered | How not to scare programmers using Visual Source Safe :-) |
|
Nov 19 |
comment |
Ternary operator associativity in C# - can I rely on it? Try to write the whole thing WITH parentheses. Personally, I'd prefer the row of IF statements then. It's more verbose, but at least cleaner. |
|
Nov 19 |
comment |
Ternary operator associativity in C# - can I rely on it? I need to use it in one place only. I could, of course, extract it into a function, but there are many such instances in my code (it synchronizes two DB's) and I'd end up with a dozen such functions. |
|
Nov 19 |
comment |
Ternary operator associativity in C# - can I rely on it? Well... it's a fair point, of course. Would comments help? :) As I said, the reason for this is because I'm writing this in a lambda expression, so I'd like to keep it short, resembling a formula more than a piece of code. |
|
Nov 19 |
revised |
Ternary operator associativity in C# - can I rely on it? Changed "precedence" to "associativity" |
|
Nov 19 |
comment |
Ternary operator associativity in C# - can I rely on it? True, but this doesn't say anything about associativity. |
|
Nov 19 |
comment |
Ternary operator associativity in C# - can I rely on it? atzz - The values are primitive types - this shouldn't happen unless there is a warp in spacetime. Miky D - suggestions? Keep in mind that this is for a lambda expression, so I'd like to keep it short. Also I'll add comments, which should clarify things for anyone looking at the code. |
|
Nov 19 |
comment |
Ternary operator associativity in C# - can I rely on it? It's for a lambda expression. Other ways would be only marginally better IMHO. |
|
Nov 19 |
asked | Ternary operator associativity in C# - can I rely on it? |
|
Nov 19 |
asked | What browsers support Alpha channel in colors? |
|
Nov 19 |
accepted | What form is DLL & what makes it processor dependant |
|
Nov 18 |
answered | Semantic html5. Back to the 90s ? |
|
Nov 18 |
answered | What form is DLL & what makes it processor dependant |
|
Nov 17 |
answered | When should we create a new method? |
