Lego Colors and Themes

For a better understanding of Gephi for visualizing graphs I used a dataset freely provided by Rebrickable. Combining the color information and themes from the Lego© sets in that database Gephi can be used to visualize which colors are used in which themes and vice versa.
Here is the result Lego© Colors and Themes.

Click the image for an interactive version. Thanks to Rebrickable for the dataset, Gephi for the awesome graph software, sigmajs for the Javascript library dedicated to graph drawing and the Oxford Internet Institute for the Gephi Export plugin.

Windows 10 unerwünschte Apps deinstallieren

Unter Windows 10 können unerwünschte Apps aus dem Startmenü entweder über Rechtsklick, Mehr, Deinstallieren entfernt werden oder aber bei einigen Programmen von Microsoft nur über die sog. Powershell. Dazu Powershell ISE mit Administrationsrechten starten und folgendes eingeben…

3D Builder deinstallieren:
Get-AppxPackage *3d* | Remove-AppxPackage
Kamera deinstallieren:
Get-AppxPackage *camera* | Remove-AppxPackage
Mail und Kalender deinstallieren:
Get-AppxPackage *communi* | Remove-AppxPackage
Nachrichten, Sport, Finanzen und Wetter deinstallieren:
Get-AppxPackage *bing* | Remove-AppxPackage
Groove-Musik, Filme & Fernsehsendungen deinstallieren:
Get-AppxPackage *zune* | Remove-AppxPackage
Kontakte deinstallieren:
Get-AppxPackage *people* | Remove-AppxPackage
Phone Companion deinstallieren:
Get-AppxPackage *phone* | Remove-AppxPackage
Fotos deinstallieren:
Get-AppxPackage *photo* | Remove-AppxPackage
Microsoft Solitaire Collection deinstallieren:
Get-AppxPackage *solit* | Remove-AppxPackage
Sprachrekorder deinstallieren:
Get-AppxPackage *soundrec* | Remove-AppxPackage
Xbox deinstallieren:
Get-AppxPackage *xbox* | Remove-AppxPackage

Einfacher Webserver unter macOS

Wenn auf die Schnelle ein Webserver uner macOS gebraucht wird kann man ganz einfach im Terminal im gewünschten Ordner folgenden Befehle eingeben:

python -m SimpleHTTPServer 8000

Anschließend mit http://localhost:8000 die Seite im Browser aufrufen. Fertig!

Access macos Sierra from older Windows Versions

From the Microsoft Support homepage

To enable a Windows 95, Windows 98, or Windows 98 Second Edition client for NTLM 2 authentication, install the Directory Services Client. To activate NTLM 2 on the client, follow these steps:

Start Registry Editor (Regedit.exe).
Locate and click the following key in the registry:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control
Create an LSA registry key in the registry key listed above.
On the Edit menu, click Add Value, and then add the following registry value:
Value Name: LMCompatibility
Data Type: REG_DWORD
Value: 3
Valid Range: 0,3
Description: This parameter specifies the mode of authentication and session security to be used for network logons. It does not affect interactive logons.
Level 0 – Send LM and NTLM response; never use NTLM 2 session security. Clients will use LM and NTLM authentication, and never use NTLM 2 session security; domain controllers accept LM, NTLM, and NTLM 2 authentication.
Level 3 – Send NTLM 2 response only. Clients will use NTLM 2 authentication and use NTLM 2 session security if the server supports it; domain controllers accept LM, NTLM, and NTLM 2 authentication.
Note To enable NTLM 2 for Windows 95 Clients, install Distributed File System (DFS) Client, WinSock 2.0 Update, and Microsoft DUN 1.3 for Windows 2000.

Quit Registry Editor.

Note For Windows NT 4.0 and Windows 2000 the registry key is LMCompatibilityLevel, and for Windows 95 and Windows 98-based computers, the registery key is LMCompatibility.

Truecrypt 7.1a unter El Capitan installieren

Bei der Installation von TrueCrypt Version 7.1a schlägt die Versionsprüfung des Betriebssystems fehl. Es kommt zur Fehlermeldung:
TC Fehler
Da TrueCrypt auch unter Mac OS X Version 10.10 fehlerfrei läuft, läßt sich diese fehlgeschlagene Prüfung leicht aushebeln. Das Disk Image starten und die dort enthaltene mpkg in ein Verzeichnis mit Schreibrechten kopieren (z.B. den Desktop). Dort mit Rechtsklick den Paketinhalt anzeigen lassen und die unter dem Ordner Contents enthaltene Datei distribution.dist mit einem Texteditor bearbeiten.
Der Inhalt der fehlerhaften Prüfung

function pm_install_check() {
if(!(system.version.ProductVersion >= ‚10.4.0‘)) {
my.result.title = ‚Error‘;
my.result.message = ‚TrueCrypt requires Mac OS X 10.4 or later.‘;
my.result.type = ‚Fatal‘;
return false;
}
return true;
}

wird entfernt und es bleibt folgender Quelltext stehen:

function pm_install_check() {
return true;
}

Speichern und anschließend kann die geänderte Installationsdatei zum Start verwendet werden.

Flash-Plugin unter Linux loswerden

Das i.d.R. mit Problemen und Sicherheitslücken behaftete Flash-Plugin kann man unter Ubuntu und anderen mit APT ausgestatteten Linux-Systemen über den Befehl sudo apt-get purge flashplugin-installer loswerden. Anschliessend noch ein sudo apt-get autoremove, um evtl. zusätzlich über Flash installierte Pakete ebenfalls zu bereinigen.