Categories

Mr. Fusion

That was easier than I expected. After a bit of googling and hand-crafting libtool archives, Rygel’s plugins now work on Windows as well. Now I just need to clean-up all [...]

1.21 Gigawatts

The beast is alive… Well. Sort of. Plugins still missing…

$ ./rygel.exe -g 5
** (rygel.exe:8080): WARNING **: Failed to load user configuration: Es wurde keine g³ltige Schl³sselwertedatei in den Suchordnern gefunden
** (rygel.exe:8080): DEBUG: new network context {C457B4A8-2516-46B9-837A-F5167D574A2E} (192.168.200.64) available.

** (rygel.exe:8080): WARNING **: Failed to create context for host/IP ‘{C57C8A03-20D6-4A0F-8C5D-946804401865}’: Der Vorgang wurde erfolgreich beendet.

** (rygel.exe:8080): WARNING **: [...]

Making putty look nice on Windows

I don’t like the default look of putty on windows, so I usually do two things:

Download the DejaVu fonts
Get this PowerShell skript to tangoify the putty palette
Note: On Windows 7 you might need to enable yourself to be able to execute [...]

How to examine binary registry dumps in Linux

Say you have a binary registry export or dump from Windows and need to have a look at its contents. What do you do? The solution I came up with is:

WINEPREFIX=/tmp/dump regedit *.reg

Which gives you nice plain-text ini-style registries to examine in /tmp/dump. That obviously needs [...]

Using postfix and ActiveDirectory

Quick reference for using postfix as a “shield” server to Exchange to check valid mailboxes against ActiveDirectory (SBS edition):

create a LDAP configuration file:

server_host = ad-server.your.domain
search_base = ou=MyBusiness,dc=your,dc=domain
query_filter = (&(objectClass=*) (proxyAddresses=smtp:%s))
result_attribute = sAMAccountName
bind=yes
bind_dn = dn of user account
bind_pw = pw [...]

Is that all, bob?

No, it isn’t. You don’t only get the mingw version of gupnp, there will be a shiny version compatible with MSVC! Lo and behold, the [...]

Mono vs. COM

Please. I have nothing against C# in general or Mono. But please, please do not encourage the use of something as broken as COM, even if it’s to ease the bridging between C# and C++.

Thank you for [...]

Concerning gnupg…

I wrote earlier about compiling libgpgme for use with Visual Studio. Forgot to mention that this is an useless effort because the filedescriptor passing does not work and as such you can only encrypt decrypt from or [...]

Samba as AD client

If net ads join ever again fails with Failed to join domain: failed to find DC for domain just throw the stupid NetBIOS name of the ActiveDirectory server into the hosts file, will [...]

GUPnP on windows howto

I threw together some instructions on how to build the GUPnP stack [...]