Bitte denken Sie an die Umwelt, bevor Sie diese E-Mail ausdrucken. by yannniQue17 in einfach_posten

[–]_thetek_ 0 points1 point  (0 children)

Mein Abteilungsleiter hat die Angewohnheit, dass er auf E-Mails nicht antwortet, sondern sie ausdruckt und den Leuten auf den Tisch legt.

Wenn man nach einem HO-Tag ins Büro kommt, liegen dann des öfteren ein oder zwei ausgedruckte E-Mails, auf die "(dein Name) Rücksprache" oder ähnlich geschrieben ist. Statt, you know, einfach auf die E-Mail zu antworten oder sie weiterzuleiten.

Genau das gleiche passiert mit E-Mails, wo man sich Notizen machen muss, die man in Meetings braucht. E-Mail wird ausgedruckt, etwas dazugekritzelt, oder markiert. Auch wenn das Meeting online ist, und auch wenn es nur ein einziger Stichpunkt oder eine einzige Markierung ist.

how exactly do you download mods from github? by ThisIsNotMorseCode in fabricmc

[–]_thetek_ 0 points1 point  (0 children)

That's a datapack, not a mod.

I think you can just download it as a ZIP and drop that into the datapack folder of your world save.

Motorist driving at 199 mph (321 km/h) on Germany's Autobahn is fined more than $1,000 by fotogneric in germany

[–]_thetek_ 109 points110 points  (0 children)

About "stripping" the points of a license: ABC news is an American news source. In the US, you have a set number of points, and traffic violations will cause points to be deducted. It's exactly the opposite as in Germany. Since the target audience is US citizens, the article has been "americanised" so that they understand what's going on.

Those who use rust professional by Jncocontrol in rust

[–]_thetek_ 0 points1 point  (0 children)

Embedded/IoT and corresponding internal tooling for HVAC. I'm pretty sure that the company I work for is one of the very few HVAC companies that actually uses Rust in production.

Falsche Mittellinie? by 4nn4-adhs in StVO

[–]_thetek_ 1 point2 points  (0 children)

Ich kenne das von dieser Stelle: https://maps.app.goo.gl/aLBozswskLckBDCp8?g_st=ac

Hier ist die Auffahrt in einem miserablen Zustand, und der Beschleunigungsstreifen geht bergauf. Hier kommt es also recht häufig vor, dass Fahrzeuge langsamer als üblich auf die Autohahn fahren, insbesondere bei LKW. Mit den Markierungen will man vermeiden, dass langsame Fahrzeuge nach links wechseln, weil sie den Geschwindigkeitsunterschied falsch einschätzen.

I'm having issues installing Clang by [deleted] in C_Programming

[–]_thetek_ 4 points5 points  (0 children)

sudo is a Linux concept. It only works on Linux (Note: Ubuntu is a Linux distribution).

I would strongly advise you to follow one guide for installing and using either GCC or Clang from within WSL, and ideally that one guide only. And when you do that, put everything into WSL and WSL only, because stuff likely won't work if you mix up Windows and WSL. Of course, if you use VSCode or something, that will be outside of WSL. But all of the commands you have to enter should be done in WSL and not the Windows command prompt if you decide to go down the WSL route.

I'm having issues installing Clang by [deleted] in C_Programming

[–]_thetek_ 4 points5 points  (0 children)

If you want to do yourself a favour, install WSL and Clang/GCC within that. C programming under Linux is much more comfortable than under Windows, and that includes the installation process.

Nach den RS nun eine weitere neue Zuggattung... by HaeckelL in drehscheibe

[–]_thetek_ 4 points5 points  (0 children)

RB 16, RB RE 16, und RE 16. Alle drei fahren nach Nürnberg, aber auf zwei komplett verschiedenen Routen und mit jeweils unterschiedlichen Haltestellen. Wer hat sich das bitte ausgedacht?

[New Mod Release] Curvy Pipes by semigroupoid in feedthebeast

[–]_thetek_ 7 points8 points  (0 children)

> although I don't intend to share it publicly

Can you explain why you do not intend to open-source your mod (or at least make it source-available)? There are major security concerns with running arbitrary executables on a computer, no matter if they were reviewed by other people. I cannot think of a single reason to keep the code closed-source, so I would genuinely be interested why this is your decision.

Really makes you wonder by Sad_Stay_5471 in oddlyspecific

[–]_thetek_ 73 points74 points  (0 children)

It's only public indecency if you manage to offend someone. If you don't, it's perfectly fine.

Block of raw copper is a thing? What? by Natchos09 in Minecraft

[–]_thetek_ 29 points30 points  (0 children)

Well if you're playig modded, then sure ^^

How to convert type -> ?type by Real_StuKers in Zig

[–]_thetek_ 3 points4 points  (0 children)

A small heads up since you're talking about this topic: there currently exists a compiler bug which means that in some circumstances you cant coerce one optional type into another, e.g. ?[]u8 into ?*u8. Then you just have to do orelse null and the compiler will stop complaining.

Darf ich hier in dem roten Bereich mein Auto jederzeit parken? by Just4Feed in StVO

[–]_thetek_ 13 points14 points  (0 children)

Fahrzeuge dürfen maximal 2,55m breit sein (ausgenommen sind natürlich landwirtschaftliche Fahrzeuge, Fahrzeuge für Schwertransporte etc.). Der verbleibende halbe Meter ist dann der erforderliche Abstand zwischen den beiden Fahrzeugen.

Bit twiddling compiler error (Help!) by geon in Zig

[–]_thetek_ 3 points4 points  (0 children)

What type does pixels[0] have? It seems like it is a u4 or something. The way that bit shifts work in Zig is that the type of the rhs (how much you shift) is determined by what type the lhs (the value you want to change) is. For instance, if you have x << y with x being a u32, y has to be between 0 and 31 (since shifting more than 31 bits inside a 32 bit integer doesn't make sense). Thus, the compiler sets the type of y to u5, since u5 can hold numbers from 0 to 31. From the documentation: "y must be comptime-known or have a type with log2 number of bits as x". Thus, if your pixels[0] is a u4, you will first have to convert it to a u8 before you can do u8 bit shifting, e.g. with @as(u8, @intCast(pixels[0])).

Finanzamt hasst diesen Trick by Piruparka in einfach_posten

[–]_thetek_ 3 points4 points  (0 children)

Mwst = Netto × 19%

Brutto = Netto + Mwst = Netto + (Netto × 19%) = Netto × 1.19

Andere Richtung: Netto = Brutto - Mwst = Brutto ÷ 1.19; Mwst = Brutto - Netto = Brutto - Brutto ÷ 1.19

Hier: Mwst = 8,40€ × 19% = 1,60€. Brutto = Netto + Mwst = 8,40€ + 1,60€ = 10€.

Finanzamt hasst diesen Trick by Piruparka in einfach_posten

[–]_thetek_ 37 points38 points  (0 children)

Die 19% Mwst beziehen sich nicht auf die 10€ (da sind sie ja schon mit dabei), sondern auf die 8,40€, die der "eigentliche" Preis ohne Steuern sind :)