Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
167 views

javaScript reserved keywords

I am wondering how JavaScript's reserved keywords / functions are managed. Example: According to: http://www.quackit.com/javascript/javascript_reserved_words.cfm delete is a reserved keyword ...
3
votes
1answer
141 views

How can I write a hard drive sector as reserved?

I am hex editing a hard disk and I would like to mark some hard drive sectors as reserved so that they are not overwritten by Windows (Vista or 7). I think this is possible, since during a defrag, the ...
3
votes
1answer
140 views

Reserved Memory Addresses?

Is there a list of reserved memory addresses out there - a list of addresses that the memory of a user-space program could never be allocated to? I realize this is most likely per-OS or ...
3
votes
3answers
714 views

SQLite non-exclusive RESERVED lock?

I've been looking into improving SQLite performance for my site, especially with regard to transactions. In essence what I'm looking for is a way to defer database writes in a process so that they can ...
1
vote
2answers
54 views

file_exists with reserved filenames bug

Ok here's my code $ref = $_GET['ref']; if (file_exists('views/'.$ref.'.php')) { $this->prepare($ref); } elseif (!file_exists('views/'.$ref.'.php')) { ...
1
vote
5answers
203 views

Php Reserved names functions

I'd like to create a function called "new" and a class called "case". Can I do that in PHP?
0
votes
2answers
101 views

Javascript replace several character including '/'

Im using this snippet to replace several characters in a string. var badwords = eval("/foo|bar|baz/ig"); var text="foo the bar!"; document.write(text.replace(badwords, "***")); But one of the ...
0
votes
1answer
277 views

PHP - Paypal product timeout

I have finally got my paypal system working using IPN and a reservation system to ensure that two people do not buy the same product. The problem is, the reservations last for 10 mins on my ...
0
votes
1answer
539 views

MSBuild: Evaluating reserved properties with ReadLinesFromFile

I'm using MSBuild to customize the build process of Visual Studio, WiX, SandCastle, ... projects. To keep it as generic as possible I'd like to use text files defining some 'project specific' ...
0
votes
1answer
553 views

jquery reserved words

Is there a list of jQuery reserved words published somewhere? I ask because jQuery won't return a value for a class I'm using called "selected". If I change the class name to something else it is ...