A few days ago I got a call from someone that asked for my help.
Wednesday, December 22, 2010
Back To The Future (Why logins might fail on Google and others)
Thursday, December 09, 2010
Avoiding timeout during installation of magento
To avoid "Fatal error: Maximum execution time of" just set "max_input_time" in your php.ini,
Sunday, November 14, 2010
How to get a domain authorization code from bulkregister.com
A few months ago I decided that I am gradually going to move away all my registered domains from bulkregister.com to godaddy.com.
Wednesday, July 28, 2010
empty strings are (not) different then false
Did you know that if you are testing if a value does not equal an empty string in javascript:v!=''
might return somewhat unexpected results if v is false
var v=false;
alert(v!='')
will alert false and not true as you might expect.
At first glance I said, well o.k. this does make sense because v is a boolean so the empty string is being cast to a boolean for the comparison yielding false.
so I tried
var v=false;
alert(''!=v)
I expected that now the false value of v will be cast to the 'false' string which obviously is not an empty string and that the alert will now show true.
but that does not work either.
finally:
var v=false;
alert(''!=String(v))
does work as expected and results in true being returned.
I wander if this is also the case in ActionScript ...
Monday, July 12, 2010
Beware of javascript String.replace
Here is a problem I encountered a few days ago:
What would you expect the result of the following expression be:'abc'.replace('b','someUserInput')
Well its easy to guess that it will be the string 'asomeUserInputb'
, and indeed it will.
however what would happen if instead 'someUserInput'
we realy had some some user input?
you would expect it to return the actual user input with 'a' prefixing it and 'c' as its suffix.
I Also guess some of you knew that if instead of 'b' you used a regular expression then some tokens in the replacement string will have a special meaning as in the following table:
Characters | Replacement text |
$$ | $ |
$& | The matched substring. |
$‘ | The portion of string that precedes the matched substring. |
$’ | The portion of string that follows the matched substring. |
$n | The nth capture, where n is a single digit in the range 1 to 9 and $n is not followed by a decimal digit. If n≤m and the nth capture is undefined, use the empty String instead. If n>m, the result is implementation-defined. |
$nn | The nnth capture, where nn is a two-digit decimal number in the range 01 to 99. If nn≤m and the nnth capture is undefined, use the empty String instead. If nn>m, theresult is implementation-defined. |
What I did not know / expect is for this behavior to occur even when I was using a plain sting as the search value.
In my case I had to do some length based truncation of a user input string, append an ellipsis to it and inject it into a string instead of some place holder.
e.g.
Template string:
'<div>$userInputAfterElipsis</div>'
Original User input:
'some long string that said something and a price like 1M$ isideIt'
"luckly" for me, it turned out that the truncation logic truncated the user's input string right after the $ sign and so when I appended an … (…) to it I ended up with 'some long string that said something and a price like 1M$&helli;' as the new value for the string replacement.
i.e.
'<div>$userInputAfterElipsis</div>'.replace('$userInputAfterElipsis','some long string that said something and a price like 1M$&helli;')
which returns:
'<div>some long string that said something and a price like 1M$userInputAfterElipsishelli;</div>
having replaced the
$&
in the new value with $userInputAfterElipsis
.so that was the problem. but how should this be resolved? and why should you care?
I will start with the second Q:
You should care because if you use JavaScript you probably also use String.replace and if you do then it might fail to do what you expect in those scenarios where the replacement string is not a fixed string that you know.
As for what can/should be done, well the first thing that comes to mind is that you need to escape those $'s
so how about:
s.replace(original,replacement.replace('$','$$'))
This will not work for two reasons, the first on is that the $ replacement will only replace the first occurrence of a $ sign in the replacement string and the second is that here also the $$ will be interpreted as a single $ so what we do need is actually:
s.replace(original,replacement.replace(/[$]/g,'$$$$'))
now this will work BUT, IMHO, performance-wise it is not such a great solution.
what I ended up doing was using the following:
s.split(original).join(replacement)
this is o.k. as long as you want all the occurrences of original to be replace with replacement. If you want to replace only the first one you should use:
s.replace(original,replacement.replace('$','$$$$'))
As always I hope this will help some one out there in the sea of bits and bytes...
Monday, June 07, 2010
Solution to: Powershell never exists when executed from a batch file / fdbuild
FlashDevelop project.
and so fdbuild.exe did not continue to run.
two:
- http://www.vistax64.com/powershell/156786-powershell-starts-but-never-exits-when-invoked-wscript-shell.html#post726229
- http://powershell.com/cs/blogs/tips/archive/2009/06/02/returning-text-information-from-powershell-to-vbscript.aspx
Powershell from WScript.
its STDIN stream to close before it exists and a workaround is
suggested there that fits WScript.
from Flashdevelop/fdbuild/batch:
from STDIN I assigned NUL as its input stream.
-Noninteractive -Command "& {$postbuild = (get-item ((get-item
%1).parent.parent.Fullname + '/postbuild.ps1')); & $postbuild
-outputDir %1 -outputName %2; exit $lastexitcode}" <NUL
event using the following command line
$(OutputName)
command line but this will have to wait.
please add a link to this post if youare quoting it. Thanks.
Sunday, June 06, 2010
"Exception: Unknown project extension: Library" error when running fdbuild (flashDevelop) from the command line
This happens to me each time I install a fresh copy of flashDevelop.
Thursday, May 27, 2010
Hell is other people's CSS rules
You create perfect code, test it on FF,Chrome,IE,Safari,iPhone
So you go and change you code to rended style tags on all your divs saying that their left-margin (and right and top and bottom) are 0px, so your good now.
But then it turns out that another client has "Div {border:1px solid white}" ....
and so on (and of course this is not limited to divs...
How would you go about handling this?
Oh... and IFRAMEs are not a valid solution. Well, actually some times they are but lets assume this is not one of those times - why ?
1) Performance
2) Your generated html is required "flow" as part of the hosing page.
Any JavaScript / HTML /CSS lover out there would care to share his thoughts on this ?
Eyal
Sunday, January 03, 2010
Using PSCX from multiple users on same machine
I was having a problem with an automation script I was working on,
It used PowerShell and PowerShell community extensions (PSCX) and it worked fine of for me, but when other people used the same machine - it did not work.
after some looking around - the problem was that PSCX was installed from my user so it was automatically loaded on from my profile.
The resolution:
$pscxInstalled = $false;
$pscxLoaded = $false;
$registeredPSSnapins = Get-PSSnapin -registered
foreach ($registeredPSSnapin in $registeredPSSnapins) {
if ($registeredPSSnapin.Name -eq 'Pscx') {
write-host "PowerShell Community Extensions Found on system" -ForegroundColor green -BackgroundColor black
$pscxInstalled=$true;
$loadedPSSnapins = Get-PSSnapin
foreach ($loadedPSSnapin in $loadedPSSnapins) {
if ($loadedPSSnapin.Name -eq 'Pscx') {
$pscxLoaded=$true
write-host "PowerShell Community Extensions are loaded" -ForegroundColor green -BackgroundColor black
}
}
if (-not $pscxLoaded) {
write-host "Loading PowerShell Community Extensions from registered PSSnapin" -ForegroundColor green -BackgroundColor black
Add-PSSnapin Pscx
}
}
}