Denotes a resource that is usable only in a pre-determined way. This can reference memory, key words or hardware.
1
vote
1answer
50 views
Accessing PHP objects using both naming with reserved characters (-,@) and indexes (0)
In PHP figured out how to use {name-with-reserved-chars} notation to access object data after JSON decode but I also have index values as well in the path (like [0]). My attempts to add the index ...
3
votes
1answer
47 views
Reserving an address of a variable array in c
I have what seems to be a simple problem, and I am sure that I have solved it before, but I am having trouble finding the answer again so hopefulley there is someone out there who can point me in the ...
0
votes
1answer
71 views
How to use reserved words without backquotes in MySQL
I would like to use reserved words such as "user" or "right" as table or column names in my databases. Until now I've been using back quotes, but i read somewhere that they are MySQL specific, and i ...
2
votes
3answers
372 views
How to check if a string is a valid python identifier? including keyword check?
Does anyone know if there is any builtin python method that will check if something is a valid python variable name, INCLUDING a check against reserved keywords? (so, ie, something like 'in' or 'for' ...
15
votes
1answer
403 views
Reserved Keywords — Hidden? JNLP
I was browsing through some details when a thread caught my eye.
https://forums.oracle.com/forums/thread.jspa?messageID=9886607
As you can see; &TOKEN=something in JNLP href is considered a ...
-1
votes
4answers
77 views
Chrome and javascript
I am using a Javascript function named top in all pages to set up a standardized heading (on almost 2000 sub-pages). But this is not working in Chrome. It claims (in Console) that
top has already ...
0
votes
1answer
63 views
Is hidden() a reserved function of javascript
Of these two, only gidden() works.
<span onclick="hidden()">hello</span>
<span onclick="gidden()">world</span>
<script type="text/javascript"><!--
function ...
0
votes
1answer
64 views
I'm not able to change my website to reserved mode in Azure
I'm trying to change my websites to the reserved mode but I can't... No matter the instance size I choose.
1
vote
1answer
194 views
Reserved character codes in Unicode
Why Unicode has several reserved character codes?
See the Unicode for two languages- Kannada and Tamil.
Both language are very old and I think there is no chance to get new characters to these ...
0
votes
1answer
66 views
NANP phone numbers available for testing
Wikipedia states that 555-01xx are available for use in fictional works. Though this block of 100 numbers can presumably be stretched over all area codes, are there any larger blocks specifically ...
6
votes
1answer
694 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 ...
0
votes
2answers
263 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 ...
1
vote
2answers
77 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
815 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?
3
votes
1answer
224 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
272 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 ...
0
votes
1answer
412 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
715 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' ...
1
vote
1answer
852 views
Is “selected” a reserved word in jQuery?
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 found.
Example:
<ul>
<li><a id="a1" class="selected" ...
3
votes
3answers
973 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 ...