blog.dasrecht.net

With a min of max the opt!

Angelesen #14


P1070783-2

Guten Morgen!

Ja heute gibts den Artikel ein bisschen früher als üblich, ich sitze gerade im Flughafen Frankfurt und warte auf meinen Anschluss in Richtung Seattle (es ist ja auch schon ende März, da darf ich das Land schon mal wieder verlassen). Uäääh und jetzt zum Gate. See you in 10 Hours 🙂

Interessant auch die Zusammenstellung von Oliver Flückiger.

But let’s get started:

Die Bezeichnung Nachrichten hat ihren Wert verloren | Udo Stiehl

Kein Ereignis hat bisher so klar vor Augen geführt, dass im Nachrichten-Journalismus handwerkliche Grundlagen abhanden gekommen sind. In der Berichterstattung über den Absturz eines Germanwings-Flugzeugs haben Vorgaben zum Sendeformat die Inhalte bestimmt – und fast überall klebte das Etikett “Nachrichten” drauf. Es waren aber kaum welche drin. Weil die Definition von Nachrichten inzwischen so verwaschen und ausgehöhlt ist, sollte die ursprüngliche Form dieses Genres zu neuem Leben erweckt werden. Nennen wir es der Einfachheit halber “Fakten“.

via Oli Flueckiger

Rsync paralelisieren

rsync is a great tool, but sometimes it will not fill up the available bandwidth. This is often a problem when copying several big files over high speed connections.

The following will start one rsync per big file in src-dir to dest-dir on the server fooserver:

cd src-dir; find . -type f -size +100000 | \
parallel -v ssh fooserver mkdir -p /dest-dir/{//}\; \
rsync -s -Havessh {} fooserver:/dest-dir/{}

encryption – Secure way to transfer public/secret key to second computer – Information Security Stack Exchange

Darüber haben Habi und ich am letzten Bloggy Monday gesprochen. Wie zum henker kriegt man einen Secret Key sicher von einem zum andern Computer ohne diesen über eine nicht vertrauliche Verbindung zu schicken.

Dieser Weg gefällt mir doch sehr (auch wenn er ein bisschen Hardcore ist).

Link natürlich von Habi

jgrahamc/httpdiff

Perform the same request against two HTTP servers and diff the results. For best results use in a terminal that supports ANSI escape sequences.

DIFF für HTTP Requests – darauf habe ich gewartet!

Stealing Data From Computers Using Heat | WIRED

In their video demonstration, they used one computer tower to initiate a command to an adjacent computer tower representing an air-gapped system. But future research might involve using the so-called internet of things as an attack vector—an internet-connected heating and air conditioning system or a fax machine that’s remotely accessible and can be compromised to emit controlled fluctuations in temperature.

Woah! Als nächstes kommt die Bleiplatte zwischen ge-Airgappte Arbeitsstationen. Wobei es da scheinbar immer noch den Angriffsvektor über die Soundkarte gäbe… Security ist schwer!

2015 Open Source Donations

We just made our Free and Open Source Software (FOSS) donations for 2015, totaling $125,000 across five projects. Thank you for all the community nominations.

Duck Duck Go hat eine Gesamtsumme von 125k $ an verschiedene FOSS Projekte gespendet. Unter anderem an Tails und die GPGTools. Grossartig!

Can’t even throw code across the wall – on open sourcing existing code

Starting a new project as open source feels like the simplest thing in the world. You just take the minimally working thing you wrote, slap on a license file, and push the repo to Github. The difficult bit is creating and maintaining a community that ensures long term continuity of the project, especially as some contributors leave and new ones enter. But getting the code out in a way that could be useful to others is easy.

Etwas wirklich zu Opensourcen ist schwer, diese Erfahrung habe ich auch schon gemacht. Guter Artikel zum Thema.

12-minute Mandelbrot: fractals on a 50 year old IBM 1401 mainframe

One complex feature of the IBM 1401 is Editing, which is kind of like printf implemented in hardware. The Edit instruction takes a number such as 00123456789 and a format string. The computer removes leading zeros and inserts commas as needed, producing an output such as 1,234,567.89. With the optional Expanded Editing feature (just $20/month more), you can obtain floating asterisks (******1,234.56) or a floating dollar sign ($1,234.56), which is convenient for printing checks. Keep in mind that this formatting is not done with a subroutine; it is implemented entirely in hardware, with the formatting applied by discrete transistors.

Der IBM 1401 ist eine Rechenmaschine die mein Nerdherz einfach höher schlagen lässt. Eine dieser Maschinen habe ich letztes Jahr in San Francisco friedlich vor sich hinrechenen sehen. Der Artikel beleuchtet einige sehr nette Details und geht danach weiter auf das Implementieren eines Programms in Assembler welches Mandelbrot Fraktale über den Zeilendrucker ausgibt.

Change the World – The New Yorker

These inward-looking places keep tech workers from having even accidental contact with the surrounding community. The design critic Alexandra Lange, in her recent e-book, “The Dot-Com City: Silicon Valley Urbanism,” writes, “The more Silicon Valley tech companies embrace an urban model, the harder it becomes for them to explain why they need to remain aloof.

Mein Longread der Woche. Über das Silicon Valley und wie es sich scheinbar Verändert hat.

Plugging a 1986 Mac Plus into the modern Web

The MacWeb developers apparently took a look at the HTTP 1.0 spec, decided, “Who would ever need name-based virtual hosting?” and left out the feature that 99 percent of the sites on the modern Web relied on. No support for virtual hostnames meant you got whatever you saw when you used the server’s IP address alone in the HTTP request, and for most sites, that was jack squat. Oh, and HTTPS, cookies, and CSS hadn’t been invented yet.

Einen 1986er Mac ans Internet Anschliessen – Ich mag solche Projekte!


2 responses to “Angelesen #14”