Categories
- Computers (41)
- Databases (3)
- OS (53)
- Programming (56)
- Web (36)
Calendar
May 2013 M T W T F S S « Feb 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Featured
Archives
- February 2013 (2)
- January 2013 (2)
- December 2012 (2)
- August 2012 (2)
- July 2012 (3)
- April 2012 (2)
- March 2012 (2)
- February 2012 (2)
- December 2011 (3)
- November 2011 (2)
- October 2011 (1)
- September 2011 (2)
- August 2011 (2)
- July 2011 (4)
- June 2011 (2)
- May 2011 (1)
- April 2011 (6)
- March 2011 (4)
- February 2011 (2)
- January 2011 (4)
- December 2010 (3)
- November 2010 (6)
- October 2010 (8)
- September 2010 (6)
- August 2010 (1)
- July 2010 (5)
- June 2010 (2)
- May 2010 (2)
- April 2010 (5)
- February 2010 (1)
- January 2010 (2)
- December 2009 (2)
- November 2009 (2)
- October 2009 (2)
- September 2009 (5)
- August 2009 (11)
- July 2009 (7)
Tags
.bat .net ASP.NET batch files Benchmark Bug C# c++ cmd CSS Debug DHCP Dos Error ESXi files HTML http IIS IP JavaScript Links Linux network NTFS PHP PowerShell speed STL Ubuntu Urih VC++ Vista Visual Studio VMware VS VS2010 web website Windows Windows 7 Windows API Windows Server Windows Update Windows XP-
Recent Posts
- RAID 1 (mirror) read speed as fast as RAID 0 (stripe)
- Executing very large script on Microsoft SQL Server 2008 R2 fails
- Building OpenSSL with Visual Studio 2010 for x64 / Win64 causes error
- Did you know that IP addresses (IPv4) can be written in shorter representations?
- C# / .NET MessageBox is hidden behind the Form
Recent Comments
- Ken on On production machine: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts.
- Andi on Batch script to test if folder / directory is empty
- Anonymous on Batch script to test if folder / directory is empty
- Judy on VS2010: Project not selected to build for this solution configuration
- Anonymous on IIS 7.5 error: Handler “PageHandlerFactory-Integrated” has a bad module “ManagedPipelineHandler” in its module list
Menu
Category Archives: Computers
RAID 1 (mirror) read speed as fast as RAID 0 (stripe)
To our big surprise, the new Intel Raid controller on the Motherboard Intel DX79TO (ver. AAG28805-401) with Intel X79 Express Chipset shows awesome read performance. The raid model is Intel Rapid Storage Technology enterprise 3.0 (Intel Rapid Storage enterprise – … Continue reading
Did you know that IP addresses (IPv4) can be written in shorter representations?
Did you know that IPv4 addresses can be written in shorter representations, like IPv6 addresses? Everyone have seen form of IPv6 represented as “shorter form”: Example from IPv6: 2001::7334 ::1 :: You can use our free tool ipv6-literal.com to convert … Continue reading
PowerShell in Unicode, Windows 8 RP and Windows Server 2012 RC
I was testing our software with latest version of Microsoft Windows — Windows 8 Release Preview and Windows Server 2012 Release Candidate (Windows Server 2012 RC Datacenter). There was some changed behavior in very specific cases for some rarely used … Continue reading
Posted in Computers, OS
Tagged PowerShell, Unicode, Utf-8, Windows 8, Windows Server 2012
Leave a comment
Disappearing folder – bug in Windows 7
In process of testing one of our automation software I hit interesting Windows 7 bug. First I found it in our software, and right away tested this scenario on Windows 7, and bug was there. The bug. Create folder on … Continue reading
Strange MAC addresses in your network (00:0D:3A:D7:F1:40 – 00:0D:3A:FF:FF:FF)
Today I noticed many strange MAC addresses in our LAN. The addresses looked very similar – only few bits were changing. Sometime this happens, when Ethernet cable is damaged or due to network card malfunction. Here are some sample MAC … Continue reading
On production machine: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts.
I was helping my colleagues to debug one weird bug on ASP.NET 4.0 website. Everything worked well on developer’s machine, but after publishing to IIS 7.5 Windows 2008 R2 Webserver, we always got site partially working. Everything worked, except AJAX … Continue reading
Posted in Computers, Programming, Web
Tagged Ajax, AJAX Control Toolkit, ASP.NET, Bug, Debug, IIS
1 Comment
C++ now allows to forward declare enum(s)
Thanks to recently approved standard (C++11 / C++0x), it is possible to forward declare enums. It was possible with classes for the long time, for example, “class MyClass;” in C++ [forward] declares class without providing underlying details. For enums it … Continue reading
.NET text box blank/empty/invisible/hidden when text reaches certain length
It seems, that .NET 2.0 have bug when text box (TextBox control) appears blank / empty / invisible / hidden — not showing text when text length reaches certain size. My quick tests shows, that the length of the text … Continue reading
Static code analysis for C++ for free and for Pro
Up and until Visual Studio 2010 Microsoft decided that Code Analysis tool was available only for Visual Studio Premium and Ultimate editions. I have Visual Studio 2010 Pro w/MSDN subscriptions (actually 2 of them), but can not use Code Analysis … Continue reading
COM, BSTR or _bstr_t is leaking memory
COM, BSTR or _bstr_t is leaking memory. That was my first thought when I saw increasing number in Task Manager under memory colon for the process I am developing. Searching Google for quick answer I found famous Microsoft employee and … Continue reading