The default-values tag has no wiki summary.
4
votes
5answers
432 views
The Default State of Unused Memory
In an embedded device, during the initializing of memory locations, is there any convention that are being practiced.
I mean, say setting every byte to zero or 0xFF or any other value.
2
votes
1answer
124 views
Does automatic returning affect performance?
There's a bunch of languages that automatically return the last value in a function (mostly functional) like Ruby, Haskell, Lisp, etc.
Does this feature (or what do you call it) affect the ...
1
vote
3answers
206 views
Checking at javascript level vs checking in PHP?
Setup:
We've got a form with default text values present within the text box itself which "goes away" when I click on them and enter a value (not if I dont enter a value). Currently the 'default' ...
1
vote
1answer
153 views
is this javascript property defaulting pattern horrible? [closed]
In some javascript code I'm working on refactoring I've handled cases where I wanted to default an object property to true without having to go through the code-base and add the property to every ...