Enable Script Support Enable and Use Remote Commands in Windows PowerShell How to create a PSCredential object Remoting Out of Memory Exception PowerShell V2 Remoting on Workgroup Joined Computers
Весь день мой блог бы в дауне с ошибкой Cannot allocate memory. После установки значения в php.ini memory_limit=32М вместо 8M сайт поднялся. Извините за неудобство.
To disable the new default behavior in Windows Explorer and Internet Explorer which does not allow to pass username and password in urls, create iexplore.exe and explorer.exe DWORD values in the following registry keys and set their value data to 0. HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE P.S. Works in Windows Server 2008
jQuery has a rich set of functions including .ready() http://api.jquery.com/ready/ which is very helpful if you want to perform some operations on page ready. Initially I thought — wow! I can make whole body invisible until it’s ready (no working garbage apper). After done that I noticed that pages became very slow. After some investigation I realized that while [...]
Screencasts may be very userful to describe how to use your site or web service. Here I’ll describe some tools that I used to create a simple screencast. http://screencast-o-matic.com — an online tool for creating screencasts, free for creating videos not longer that 15 mins — very easy to use yet comprehensive. For embedding a [...]
Неплохая статья про декораторы на питоне: http://www.ibm.com/developerworks/ru/library/l-cpdecor/index.html В то же время, crystalbit на своём delphi блоге программирует, делится и обсуждает все тонкости delphi.
Странно, но я обнаружил, что дазейбленные YUI кнопки реагируют на события, не смотря на то что на YUI API сказано, что не должны: disabled — Boolean indicating if the button should be disabled. (Disabled buttons are dimmed and will not respond to user input or fire events. Does not apply to button’s of type «link.») [...]
Накнулся на интересную ссылку: как ускорить арфиметические операции за счет их преобразования. Например, x = x * 2; x = x * 64; //равно, но примерное на 300% быстрее: x = x << 1; x = x << 6; Остальные примеры: http://lab.polygonal.de/2007/05/10/bitwise-gems-fast-integer-math/
Для тестирования ява-скриптов мы используем YUITest: http://developer.yahoo.com/yui/yuitest/ — он имеет все необходимые ассертации, умеет гонять асинхронные тесты, эмулировать нажатия на кнопки и много всего прочего. Кроме того, с его помощью можно делать тестовые сюиты, и автоматически отправлять их результаты в xml-виде. Вообще, ребята из Yahoo — молодцы: столько примеров и документации на все случаи жизни [...]