vava

3,830
Reputation
230 views

Registered User

Name vava
Member for 1 year
Seen 22 hours ago
Website
Location Sydney, Australia
Age 29

Yet another developer.

All my code samples you could find here are given freely to the public domain on an "as is" basis, but no warranty is given (implied or assumed).

Nov
9
comment Does the business layer keeps working even a session closed in the middle of process?
Wouldn't it crash when it writes to a closed stream?
Nov
8
awarded  Nice Answer
Nov
8
comment What’s the best way to get the length of the decimal representation of an int in C++?
@Thomas, I don't think loop (even small one) will be faster than logarithm calculation.
Nov
8
answered What’s the best way to get the length of the decimal representation of an int in C++?
Nov
3
awarded  Popular Question
Nov
3
revised passing url parameters to iframe, using jquery or javascript
formatting
Nov
3
revised custom delay in jQuery (cycle)
typo
Nov
1
awarded  
Oct
31
comment Scope of exception object in C++
Pointers get copied too but nobody cares usually :)
Oct
31
answered Scope of exception object in C++
Oct
29
answered What is the worst real-world macros/pre-processor abuse you’ve ever come across?
Oct
29
revised Test if string is URL encoded in PHP
improved formatting
Oct
28
comment JavaScript at bottom/top of web page?
Yes, <script> tag can be anywhere and it will be executed when encountered, so there's a good chance that everything before it will already be visible to the user (but it is not guaranteed).
Oct
24
comment Detect when mouse leaves via top of page with jquery
@vava, I'm just saying that maybe your friend has slower machine/bigger screen and moves mouse fast. That might be the reason for the difference.
Oct
24
comment Detect when mouse leaves via top of page with jquery
Have you tried moving the mouse really quick? Events sometimes doesn't fire if mouse moves quickly.
Oct
22
answered Meaning of forEach(function(tag) in JavaScript
Oct
22
comment How does compiler choose between template specializations featuring an array?
Hm, looks like despite the logic, when extent<_Tp[_Size], _UInt> matches against extent<int[1][2]>, _Tp gets int[2] not int[1]. But (int [1])[2] seems to be so more intuitive...
Oct
22
comment How does compiler choose between template specializations featuring an array?
So the second one will be chosen any time there's empty square brackets ([]) in the declaration?
Oct
22
asked How does compiler choose between template specializations featuring an array?
Oct
22
comment Not copying char arrays, function swap doesnt compile correctly and stringPtr is not modified
@sharptooth, it has constructor, that accepts char * so it will be converted to from = MyString(new char[stringLen + ]) and use default operator= to copy it.
Oct
22
comment Union query in mysql
@mjv, fixed :) Although it makes explanation more confusing.
Oct
22
revised Union query in mysql
clarification
Oct
22
comment Not copying char arrays, function swap doesnt compile correctly and stringPtr is not modified
so, you're saying void func(int & a) { a = 1; } won't modify a?
Oct
22
answered Not copying char arrays, function swap doesnt compile correctly and stringPtr is not modified
Oct
22
revised Not copying char arrays, function swap doesnt compile correctly and stringPtr is not modified
fix code formatting
Oct
22
answered Union query in mysql
Oct
22
revised Substitute MySQL result
add elt method; deleted 2 characters in body
Oct
22
answered Substitute MySQL result
Oct
21
awarded  Necromancer
Oct
20
comment How can i get the current month and previous three months using PHP
@Nathan Kleyn, I didn't about "-1 month" syntax, "last month" was just a guess that worked.
Oct
20
comment How can i get the current month and previous three months using PHP
What's wrong with it? It's working as required :)
Oct
20
answered How can i get the current month and previous three months using PHP
Oct
20
revised Pushing Items into stack with LINQ
further improve title
Oct
20
revised javascript conversion of yyyy-mm-dd hh:mm:ss aa help
fix code formatting
Oct
19
comment Creating unsafe browser XUL element from Firefox extension gives (NS_ERROR_FAILURE) [nsIWebNavigation.sessionHistory]
Unfortunately, canvas.getImageData() doesn't work when called from chrome code if canvas resides in sandboxed document.
Oct
18
asked Creating unsafe browser XUL element from Firefox extension gives (NS_ERROR_FAILURE) [nsIWebNavigation.sessionHistory]
Oct
17
answered Firefox throwing a exception with HTML Canvas putImageData
Oct
14
comment What’s the most efficient way to partition a large hash into N smaller hashes in Ruby?
Unless you implement your own smart hash :)
Oct
14
comment What’s the most efficient way to partition a large hash into N smaller hashes in Ruby?
You have to copy all the values in new hashes which makes anything less than O(n) impossible.
Oct
14
comment C: Looping without using looping statements or recursion
@sharptooth, no, it's not possible with macros, you can't make them recurse.
Oct
14
comment C: Looping without using looping statements or recursion
It's possible to wrap it in macros
Oct
12
answered Const Correctness Question in C++
Oct
12
answered D.R.Y vs “avoid macros”
Oct
12
answered Understanding the “||” OR operator in If conditionals in Ruby
Oct
12
answered extract text from pdf in Javascript
Oct
12
comment Check if a string contains a certain number
It's fast enough but just not as fast as simple substring search :)
Oct
12
comment Check if a string contains a certain number
@gnud, thanks :)
Oct
12
comment Check if a string contains a certain number
On the other hand, original string can be pre-converted to associative array, this is the fastest way possible.
Oct
12
comment Check if a string contains a certain number
@Jass, both probably slower, but explode looks better and more maintainable. Regexp is generally slow and explode will create and iterate over array. Also, guards can be pre-added, making it even faster :)
Oct
12
comment Check if a string contains a certain number
That's why I also added comma to the haystack string :)