• Martin Thoma
  • Home
  • Categories
  • Tags
  • Archives
  • Support me

Recent Posts

Check File Systems maximum path depth

Check File Systems maximum path depth

Today, I've wondered how deep a path could be at maximum. I've guessed the file system may be limiting that, but perhaps also some tools that I use for basic operations like listing a folders contents would fail before. So I've created the following C-Snippet to test it: #include Read More »
Cyclic references kill Nautilus

Cyclic references kill Nautilus

I just wanted to answer an assignment and noticed that cyclic references kill Nautilus. What I did mkdir testFolder cd testFolder touch testFile.txt ln -s testFile.txt mySoftlink rm testFile.txt ln -s mySoftlink testFile.txt ls -l total 0 lrwxrwxrwx 1 moose moose 10 2013-01-20 21:20 … Read More »
Adressierung

Adressierung

Dies ist eine Zusammenfassung von mir zu dem Themen Caches, Addressierung und TLB. Ich habe insbesondere bei dem letzem Teil (Cache-Typen und TLBs) das Gefühl, dass ich das noch nicht richtig verstanden habe, deshalb ist der Inhalt hier mit Vorsicht zu genießen. Bitte meldet mir Fehler oder Unstimmigkeiten (per E-Mail … Read More »
Linux Scheduler

Linux Scheduler

Der folgende Text wurde von Moritz Klammler, einem Informatik-Studenten am KIT, als E-Mail an die interne Mailingliste der Vorlesung geschrieben. Ich habe nur ein paar Kleinigkeiten umformuliert und die Formattierung geändert. Mailinglisten-Beitrag Der in der Vorlesung vorgestellte $\mathcal{O}(1)$ Scheduler[1] wurde vom 2.6er Linux Kernel bis Version … Read More »
How do Bitmasks work?

How do Bitmasks work?

What are Bitmasks? In computer science, a mask is data that is used for bitwise operations. Essentially it is a variable. They are very often used in C programs. Bit operators These are the bit operators: ~ Bitwise NOT (not to be confused with Logical NOT ‘!’) & Bitwise AND (not to be … Read More »
  • Martin Thoma - A blog about Code, the Web and Cyberculture
  • E-mail subscription
  • RSS-Feed
  • Privacy/Datenschutzerklärung
  • Impressum
  • Powered by Pelican. Theme: Elegant by Talha Mansoor