The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 4,262 other subscribers

Archive for July 11th, 2013

Rode plekken/blaren na een landelijke picknick in de zon: Berenklauw, Fototoxiciteit en Fytofotodermatitis (via: Wikipedia)

Posted by jpluimers on 2013/07/11

Afgelopen weekeinde waren we met een groep kanovaren rondom Lisse/Sassenheim. We hadden lunch aan de rand van een stukje akker waar we relatief makkelijk uit de kano’s konden komen.

Een soort landelijke picknick in de zon: altijd leuk om te doen.

Maandagavond werd ik door 1 van de deelnemers gebeld: hij had een enorme rode jeukende vlek op zijn arm met allemaal blaren, en dacht dat hij brandnetels geraakt had.

Die stonden er niet, bovendien gaat het na aanraking van brandnetels meteen branden en deze plek was pakweg een dag later gekomen. Dus het moest iets anders zijn, maar wat?

Hij is ermee naar de huisarts geweest die tot de conclusie kwam: aanraking van Berenklauw in combinatie met blootstelling aan zonlicht. Dat veroorzaakt namelijk Fytofotodermatitis door Fototoxiciteit, en kan bij veel mensen enorme brandplekken geven. Read the rest of this entry »

Posted in About, LifeHacker, Personal, Power User | Leave a Comment »

Windows Timer Resolution: Megawatts Wasted (via: Random ASCII)

Posted by jpluimers on 2013/07/11

Don’t increase your Windows Timer Resolution. And keep an eye on programs that do:

Raising the Windows timer frequency is bad. It wastes power and makes your computer slower. Routinely doing this in all sorts of programs that end up sitting idle for hours really needs to stop.

You can use ClockRes to monitor the time resolution and what programs changed it.

–jeroen

via: Windows Timer Resolution: Megawatts Wasted | Random ASCII.

Posted in .NET, Development, Opinions, Pingback, Power User, Software Development, WPF | Tagged: , , , | Leave a Comment »

Using ILDASM to determine the .NET Framework version an Assembly/DLL requires (via StackOverflow)

Posted by jpluimers on 2013/07/11

Josh Stodola wrote a nice answer on the Determine .NET Framework version for dll – Stack Overflow question for using ILDASM to show the required .NET Framework/CLR version for an assembly.

From that, I wrote this tiny batch file:

ildasm.exe %1 /metadata[=MDHEADER] /text /noil | find "Metadata section:"

It gives output like this:

ildasm.exe C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.XML.dll /metadata[=MDHEADER] /text /noil | find "Metadata section:"
// Metadata section: 0x424a5342, version: 1.1, extra: 0, version len: 12, version: v4.0.30319

The cool thing is that older ILDASM versions work on assemblies requiring newer .NET Frameworks/CLRs.

So it is relatively future proof.

–jeroen

Posted in .NET, .NET 1.x, .NET 2.0, .NET 3.0, .NET 3.5, .NET 4.0, .NET 4.5, C#, C# 1.0, C# 2.0, C# 3.0, C# 4.0, C# 5.0, Development, Software Development | Leave a Comment »