some
|
Registered User
|
Some people write a long story about themselves here, Some don't. Some people has English as their native language, Some don't.
|
|
Dec 9 |
awarded | ● Nice Answer |
|
Dec 6 |
awarded | ● Mortarboard |
|
Nov 27 |
awarded | ● Nice Answer |
|
Nov 13 |
awarded | ● Yearling |
|
Oct 21 |
accepted | Is it possible to change the hotspot of a mouse cursor on a web page? |
|
Oct 21 |
comment |
PHP code to obfuscate HTML? Like many others has said: Don't bother. If someone wants to look at your code they can do so with the right tool. It is a lost battle. You will spend more time trying to obfuscate than someone who want to look at your code. Also, you pages will not be indexed by search enginges, your pages requires javascript. I took a peek on ioncube and saw that their code is slow (and very slow on IE). It took less than 2 minutes to make it more than twice as fast on all browsers and even faster on IE (didn't bother to profile how much) |
|
Oct 21 |
comment |
PHP code to obfuscate HTML? @Xinus: I can only see that the width-attribute of the pre-tag has been deprecated, not the tag itself. |
|
Oct 21 |
comment |
PHP code to obfuscate HTML? If you want to reduce the size even more, check if the browser supports on-the-fly compression and compress the data. |
|
Oct 20 |
comment |
Need to take two text field values and add together to another field Just a clarification: The php-code runs on the server at the time the page is downloaded by the browser. If the user change the first or last name, the php-code will not be run again and your hidden screen_name will always be empty. You have to concatenate the strings when you post the page to the server. And make sure you sanitize them at least by trimming them. |
|
Oct 20 |
comment |
Need to take two text field values and add together to another field Never ever trust the user input. Always sanitize it. At least trim it (remove white space at the beginning and at the end). Even if javascript is great and useful, make sure your pages works as much as possible even when it's not available (the user may have disabled it). |
|
Oct 20 |
comment |
Need to take two text field values and add together to another field Suggestions: Trim both the first_name and last_name since the user could have antecedently put spaces in them (and maybe put a space between the first and last name?) Maybe also make sure that the first and last name don't have characters below 31, no special chars, case-correction... |
|
Oct 16 |
comment |
Exposing database IDs - security risk? They are everywhere. Many shoppingsites use a sequential number for the order id. Place one order at one date, and one at another date and you know how many orders they got during that period. Even if you don't know how much money the orders are worth, you still get an indication of how the well the business goes. |
|
Oct 15 |
comment |
Where can I get a simple table of time zones for use in SQL server? Depends on what you are trying to do and why it is important to know. You can use javascripts date-object on the online-form to find out what timezone the user has configured their computer to be in (not necessarily where they are at the moment) |
|
Oct 14 |
comment |
What is the cleverest UI feature you have seen in a website? Can be useful in some applications but a real horror in others... And against all standards? How about the menues in windows? sure, you have to click to activate the menu, but then you navigate in submenues just by hovering (but you have to click to activate your selection). I thought the testsite was a little annoying: Sometimes I move the mouse because the pointer is over some text that I want to read, and suddenly I have navigated to a completely different place... annoying. |
|
Sep 25 |
comment |
How tell the difference between a Debit Card and a Credit Card There are 3 tracks with information. When I checked my VISA card I saw that it had my card-number and my name. Don't remember what else there was. |
|
Sep 25 |
answered | Margin not acting properly in Firefox |
|
Sep 22 |
comment |
Email address validation, again… stackoverflow.com/questions/3232/… |
|
Sep 22 |
comment |
nested quotes in javascript +1 word! |
|
Sep 19 |
comment |
How could we fool the HTTP protocol? IIRC "connection" is "closed" by default and not necessary to specify. |
|
Sep 8 |
awarded | ● Enlightened |
|
Aug 27 |
comment |
Finding DOM node index @Justin: Added some more examples. |
|
Aug 27 |
revised |
Finding DOM node index More examples, more explanation |
|
Aug 27 |
comment |
Finding DOM node index @Justin: "e=e.previousSibling" is in the middle... The for-loop declares k=0 and e=elem. Then it execute e=e.previousSibling until e===null. For every successful loop it increments k by one. And it works in FF3.5.2. Please explain what you think is wrong. |
|
Aug 25 |
accepted | What’s up with innerHTML and <embed>? |
|
Aug 20 |
comment |
What are the Top 5 Languages to localize an app for? About dates: Let the user choose what format they want it displayed in. Even if they choose a specific language (that might not be their native language) they might want the date displayed in another way. For example many people prefer the unambiguous ISO-format YYYY-MM-DD. The same goes for currency; Let the user change it to whatever they want and they will be happier! |
|
Aug 14 |
awarded | ● Good Answer |
