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 February, 2011

Domotica – WiFi thermostaten

Posted by jpluimers on 2011/02/28

Hier wat linkjes omdat ik de huidige thermostaat van onze CV door een WiFi variant wil vervangen.

Domotica dus :-)

We hebben nu de iSense thermostaaat dat via het OpenTherm protocol de CV aanstuurt: http://shop.kamerthermostaat.com/epages/62028128.sf/nl_NL/?ObjectPath=/Shops/62028128/Categories/Remeha

Remeha Recom software: http://nl.remeha.com/index.php?id=203

EcoBee heeft een interessant product, maar het is onduidelijk of ze OpenTherm ondersteunen: http://www.ecobee.com/

Quby interfaced niet alleen via OpenTherm met je CV, maar ook met je electiciteitsmeter: http://www.quby.nl/index.php/hoe-werkt-quby

Bwired heeft ontzettend veel informatie over domotica: http://www.bwired.nl/weblog.asp?cat=Bwired

Digit’s domotica blog: http://blog.hekkers.net/; hij heeft een Remeha monitor http://www.hekkers.net/domotica/Monitor_Remeha_Calenta.aspx

Tweakers.net thread: http://gathering.tweakers.net/forum/list_messages/1346842/10

Radiothermostat in gebruik

–jeroen

Posted in LifeHacker, Power User | 6 Comments »

NTFS-3G: NTFS driver for non-Windows stack (Linux, Mac, Android, etc)

Posted by jpluimers on 2011/02/25

After not having taken a look at NTFS for Linux for a while, I recently found out that NTFS-3G supports many platforms: Linux, Mac OS X, Android, etc.

Oh: and it supports Compressed Files too.

–jeroen

Posted in *nix, Power User | 2 Comments »

Delphi friend in NZ seeks work (preferably remotely)

Posted by jpluimers on 2011/02/25

A seasoned Delphi developer friend in NZ (near Christchurch) seeks work, preferably if he can work remotely.

Please drop me an email to get more information.

–jeroen

Posted in Delphi, Development, Software Development | Leave a Comment »

Microsoft Trademarks – be careful when using product names like these

Posted by jpluimers on 2011/02/25

While some of the names on the Microsoft Trademarks list are very generic (Windows, SideWinder, Arc, Expression, just to name a few), be careful when using them in a product name.

When a company with such deep pockets comes after you, you need a have a lot of persistence and be very patient.

–jeroen

Posted in Power User | Leave a Comment »

Exception Filter – VB.NET supports this, but not C#, so write a VB.NET wrapper to expose it to C#

Posted by jpluimers on 2011/02/24

Often I explain to people that there are a lot of .NET languages, because the .NET IL is rich, so the individual languages can focus on the IL pieces they do best.

This also means, that most languages have some support for specific pieces of IL that other languages do not have support for.

The IL Exception Filter feature is one such thing. It is supported by for instance VB.NET but not by C# as Junfeng Zhang explains:

C# does not support exception filter. However, VB and IL support it. To add exception filter to C#, we can build a function in VB or IL, then call it in C#.

Read his full article for the complete code.

–jeroen

via: Exception Filter – Junfeng Zhang’s Windows Programming Notes – Site Home – MSDN Blogs.

Posted in .NET, C#, C# 2.0, C# 3.0, C# 4.0, Development, Software Development, VB.NET | Leave a Comment »