Kategorie: Blog Blog-Beiträge
Duales Studium Wirtschaftsinformatik 2011 in Vechta
Mein Arbeitgeber bietet im kommenden Jahr 2011 wieder einen Ausbildungsplatz für eine/n duale/n Studenten/in (ok, ich spare mir die Geschlechterunterscheidung jetzt einfach mal) im Bereich Wirtschaftsinformatik an. Wer Lust hat, bei mir als Ausbilder 3 Jahre in einem erst vor wenigen Wochen eingeweihten Neubau in Vechta in die Lehre zu…
Enable Remote Desktop Connections on a remote PC
Sometimes you need to logon to a remote PC via RDP but the PC is not configured to allow remote connections. Instead of walking over to the machine and setting the needed configuration manually, you could enable RDP connections on the remote PC using regedit as follows: start regedit and…
Resize and rotate all images in a Word 2010 document
Just a little snippet to resize and rotate all images in a Word 2010 document. I needed it to create a table with multiple images per row/column from some dragged and dropped images. Option Explicit Sub ResizeAndRotateAllImages() Const ROTATION = 90 Const HEIGHT = 7 Dim n As Integer For…
Master of Engineering (M.Eng.)
Mein Abschluss ist zwar schon etwas her, aber am 22.07. fand die offizielle Abschlussveranstaltung der Fakultät efi (Elektro-, Feinwerk- und Informationstechnik) der Georg-Simon-Ohm-Hochschule Nürnberg statt. Dort wurde ich als bester Absolvent meines Jahrgangs geehrt (und zufällig bin ich sogar in der Fotogalerie der Ohm-Hochschule zu sehen). Zwei kleine Artikel zu…
Zotero plugin for DokuWiki
TYPO3: How to enable links to local files in RTE
Today I needed to link to a local file on a network share from a page in TYPO3. This link did not start with the usual http:// but instead with file:///. The problem was, that the rich text editor (RTE) in the backend of TYPO3 always prepends “invalid” links with…
Using PHP to query Zotero’s REST API
Today I tried to query Zotero’s REST API with PHP to retrieve a list of my bibliography items for further processing. The basics are pretty easy setup using phpZotero and following this guide: Mashup Guide :: Zotero REST API: early developments. However, I ran into some problems as the user…
PowerShell 2.0: Windows Update KB968930 cannot be installed on Windows XP
Our WSUS server provided my computer with Microsoft Windows Update KB968930 (Windows Management Framework and PowerShell 2.0) but it could not be installed (without giving any helpful error message). After searching the web for quite some time, I found this solution to be working in my case: Deinstall PowerShell 1.0:…
How often are functions returning an array for PHP’s foreach statement called?
Today I was asked a question regarding PHP’s foreach statement: If the array through wich a script iterates is generated by a function, how often is this function called? In this example, will getArray() be called only once or three times? $c = 0; function getArray() { global $c; echo…
Blog-Beiträge
Duales Studium Wirtschaftsinformatik 2011 in Vechta
Mein Arbeitgeber bietet im kommenden Jahr 2011 wieder einen Ausbildungsplatz für eine/n duale/n Studenten/in (ok, ich spare mir die Geschlechterunterscheidung jetzt einfach mal) im Bereich Wirtschaftsinformatik an. Wer Lust hat, bei mir als Ausbilder 3 Jahre in einem erst vor wenigen Wochen eingeweihten Neubau in Vechta in die Lehre zu…
Enable Remote Desktop Connections on a remote PC
Sometimes you need to logon to a remote PC via RDP but the PC is not configured to allow remote connections. Instead of walking over to the machine and setting the needed configuration manually, you could enable RDP connections on the remote PC using regedit as follows: start regedit and…
Resize and rotate all images in a Word 2010 document
Just a little snippet to resize and rotate all images in a Word 2010 document. I needed it to create a table with multiple images per row/column from some dragged and dropped images. Option Explicit Sub ResizeAndRotateAllImages() Const ROTATION = 90 Const HEIGHT = 7 Dim n As Integer For…
Master of Engineering (M.Eng.)
Mein Abschluss ist zwar schon etwas her, aber am 22.07. fand die offizielle Abschlussveranstaltung der Fakultät efi (Elektro-, Feinwerk- und Informationstechnik) der Georg-Simon-Ohm-Hochschule Nürnberg statt. Dort wurde ich als bester Absolvent meines Jahrgangs geehrt (und zufällig bin ich sogar in der Fotogalerie der Ohm-Hochschule zu sehen). Zwei kleine Artikel zu…
Zotero plugin for DokuWiki
TYPO3: How to enable links to local files in RTE
Today I needed to link to a local file on a network share from a page in TYPO3. This link did not start with the usual http:// but instead with file:///. The problem was, that the rich text editor (RTE) in the backend of TYPO3 always prepends “invalid” links with…
Using PHP to query Zotero’s REST API
Today I tried to query Zotero’s REST API with PHP to retrieve a list of my bibliography items for further processing. The basics are pretty easy setup using phpZotero and following this guide: Mashup Guide :: Zotero REST API: early developments. However, I ran into some problems as the user…
PowerShell 2.0: Windows Update KB968930 cannot be installed on Windows XP
Our WSUS server provided my computer with Microsoft Windows Update KB968930 (Windows Management Framework and PowerShell 2.0) but it could not be installed (without giving any helpful error message). After searching the web for quite some time, I found this solution to be working in my case: Deinstall PowerShell 1.0:…
How often are functions returning an array for PHP’s foreach statement called?
Today I was asked a question regarding PHP’s foreach statement: If the array through wich a script iterates is generated by a function, how often is this function called? In this example, will getArray() be called only once or three times? $c = 0; function getArray() { global $c; echo…