Rams – Teaser (Objects)

A short teaser for the documentary RAMS, about legendary German designer Dieter Rams. A film by Gary Hustwit (Helvetica, Objectified, Urbanized), with original music by Brian Eno.

http://bit.ly/2H0pB5K

For over fifty years, Dieter Rams has left an indelible mark on the field of product design and the world at large with his iconic work at Braun and Vitsoe. The objects Dieter has designed have touched the lives of millions of people––so many of us have had a Braun coffeemaker, shaver, stereo, calculator, speakers, or alarm clock. Or an Oral-B toothbrush. Or a Vitsoe 606 shelving system. Or any of the hundreds of other products Dieter has designed or overseen the design of. His work has influenced the way most of today’s consumer products look and function.

But one of the most interesting parts of Dieter’s story is that he now looks back on his career with some regret. „If I had to do it over again, I would not want to be a designer,“ he has said. „There are too many unnecessary products in this world.“ He has long been an advocate for the ideas of environmental consciousness and long-lasting products. RAMS is a design documentary, but it’s also a rumination on consumerism, materialism, and sustainability. Dieter’s philosophy is about more than just design, it’s a about a way to live. It’s about getting rid of distractions and visual clutter, and just living with what you need.

The film is currently in production as will be released later in 2018.

via http://bit.ly/2oJMBj1

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

Gabrielle & Wolfgang & Malukah: The Dragonborn Comes (Skyrim)

It’s cover version main theme song of Skyrim – „The Dragonborn Comes“.

Video 1: Malukah – The Dragonborn Comes (Skyrim)
Video 2: Malukah & Wolfgang: The Dragonborn Comes

And, I created video 3: Malukah & Wolfgang & Gabrielle: „The Dragonborn Comes“ with my vocal and piano.

I do not claim any credit for anything.
It’s cover!
And beautiful music, thanks for this Malukah & Wolfgang!!!

„Gabrielle Wagner, a vocalist, keyboardist and composer. Her music could be described as something similar to Enya, but with more bite — at times much more.“ Ultimate-guitar.com

Facebook: http://bit.ly/2gLOPYL

via http://bit.ly/2fFkcYA

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.

Maze

Scottish Ballet dancers Madeline Squire and Javier Andreu discover each other as they explore a labyrinthine derelict Glaswegian swimming pool. A high-energy piece choreographed by Sophie Laplane, with music by British-born, Boston-based electro musician John Xela.

Maze was created as part of the Scottish Ballet: Creative scheme: http://bit.ly/2aocmOG

via http://bit.ly/2a9mKNk

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.