Logogistiks Logo Logogistiks Logo

Logogistiks

Materialien

Resources

Hier gibt es verschiedene Sachen zum Lesen, Anschauen und Herunterladen. Manches nützlich, manches interessant und manches einfach unterhaltsam.
Diese Sammlung wird gelegentlich erweitert, also gerne mal wieder vorbeischauen!

Here you can find various things to read, watch, and download. Some useful, some interesting, and some just entertaining.
This collection is updated occasionally, so feel free to check back!


Dokumente/Artikel

Documents/Articles

Nützliche Dokumente/Webseiten, ohne bestimmte Reihenfolge oder gemeinsames Thema

Useful documents/websites, in no particular order or common theme

WWWBit Twiddling Hacks

Eine umfangreiche Sammlung von Code-Snippets zur effizienten Manipulation von Bits um Aussagen über Variablen zu treffen, zum Beispiel ob zwei Zahlen das gleiche Vorzeichen haben oder ob eine Zahl eine Zweierpotenz ist.

A comprehensive collection of code snippets for efficient bit manipulation to make statements about variables, such as whether two numbers have the same sign or whether a number is a power of two.

https://graphics.stanford.edu/~seander/bithacks.html[🇬🇧]

PDFLATEX Mathematical Symbols

Cheatsheet mit LATEX-Befehlen für allerlei mathematische Symbole und Notationen.

Cheatsheet with LATEX commands for various mathematical symbols and notations.

https://www.cmor-faculty.rice.edu/~heinken/latex/symbols.pdf[🇬🇧]

WWWWebdesign Satirewebdesign satire

Eine Reihe von aufeinander aufbauenden satirischen "Artikeln", die eine humorvolle Kritik an modernem Webdesign liefern. Definitiv eine unterhaltende Lektüre:

A series of satirical "articles" that provide a humorous critique of modern web design. Definitely an entertaining read:

  1. https://motherfuckingwebsite.com/
  2. http://bettermotherfuckingwebsite.com/
  3. https://thebestmotherfucking.website/
  4. https://perfectmotherfuckingwebsite.com/
  5. https://ultimatemotherfuckingwebsite.com/

Werkzeuge / Programme

Tools / Programs

Hilfreiche und zuverlässige Software die ich gerne verwende und weiterempfehlen kann

Helpful and reliable software that I like to use and recommend

WWWYoutube Downloader

Ein Open-Source Programm zum Herunterladen von Youtube-Videos. Unterstützt verschiedene Audio- und Videoformate und Auflösungen.
Funktioniert besser/einfacher als andere Tools die ich bisher getestet habe.

An open-source program for downloading videos and playlists from Youtube and other platforms. Supports various formats and resolutions, including audio-only downloads.
Works better/easier than other tools I have tested so far.

https://github.com/Tyrrrz/YoutubeDownloader[🇬🇧]

Videos

Empfehlungen für interessante, unterhaltsame oder lehrreiche Videos/Playlists, auf die ich gerne aufmerksam machen möchte

Recommendations for interesting, entertaining, or educational videos/playlists which I would like to draw attention to

Kommt bald
Coming Soon

Von mir

Own stuff

Verschiedene Dateien von mir, die ich hier zum Herunterladen anbieten möchte.
Vielleicht sind sie ja jemandem von Nutzen

Some stuff i created that I would like to offer for download here
I hope they might be of use to someone

BashLogo's shell aliases

Dieses Skript für Debian-basierte Linux-Distributionen fügt der ~/.bash_aliases Datei ein paar meiner must-have Aliasse hinzu und löscht sich danach selbst.

This script for Debian-based Linux distributions adds a few of my must-have aliases to the ~/.bash_aliases file and then deletes itself.

Im folgenden habe ich meinen üblichen Setup-Prozess zusammengefasst:

Below is my usual setup process:

  1. Im home-Verzeichnis (cd ~) die Datei per wget abrufen (wget logogistiks.de/logoaliases).
  2. Das Skript ausführen (bash logoaliases).
  3. Die ~/.bashrc Datei neu laden (source .bashrc).
  1. In the home directory (cd ~) fetch the file using wget (wget logogistiks.de/logoaliases).
  2. Run the script (bash logoaliases).
  3. Reload the ~/.bashrc file (source .bashrc).

https://logogistiks.de/assets/download/logo_aliases.sh

PDFSeminararbeitSeminar paper

Meine Seminararbeit "Aspera - Die Stadt auf dem Mond" für den Seminarkurs "Stadtplanung" in der 11. Klasse.
Ich habe hier mehr über die Arbeit und den Kurs geschrieben.

My seminar paper "Aspera - Die Stadt auf dem Mond ("Aspera - The City on the Moon") for the seminar course "Urban Planning" in 11th grade.
I wrote more about the paper and the course here.

Die Arbeit: The paper: https://logogistiks.de/assets/download/Seminararbeit_Mondstadt.pdf[🇩🇪]

Der praktische Teil (Blender-Datei): The practical part (Blender file): https://logogistiks.de/assets/download/wohneinheit.blend

ShowAbifeier LichtGraduation party lights

Kommt bald
Coming Soon

Commands / Shortcuts

Nützliche Befehle und Tastenkombinationen für die Kommandozeile oder das Betriebssystem

Useful commands and keyboard shortcuts for the command line or operating system

CMDIns BIOS bootenBoot to BIOS

Wer kennt das Problem nicht: Man will einfach nur schnell ins BIOS, muss beim neustarten aber alle möglichen Tasten drücken weil man nicht weiß welche am aktuellen PC die richtige ist, und es klappt dann immer noch nicht.
Anstatt das jedesmal zu machen, gibt es unter Windows folgenden Command dafür:

Who hasn't experienced this problem: You just want to quickly access the BIOS, but you have to spam all sorts of keys during restart because you don't know which is the right one for your current PC, and then it still doesn't work.
Instead of doing that every time, Windows offers the following command for this:

shutdown /r /f /fw /t 0
  • /r: Neustart
  • /f: Alle Anwendungen ohne Warnung schließen
  • /fw: Neustart führt zur Firmware-Benutzer­oberfläche
  • /t 0: 0 Sekunden Wartezeit (Sofortiger Neustart)
  • /r: Restart
  • /f: Force close all applications without warning
  • /fw: Restart to firmware user interface
  • /t 0: 0 seconds timeout (immediate restart)

Alternativ gibt es auch noch den Parameter /o statt /fw, damit führt der Neustart zum erweiterten Startmenü.

Alternatively, there is also the parameter /o instead of /fw, which will take you to the advanced boot options upon restart.


Das Linux-Äquivalent (systemd) zu shutdown /r /fw ist:


The Linux equivalent (systemd) to shutdown /r /fw is:

systemctl reboot --firmware-setup

Sonstiges

Other