
The most customizable typing test website with a minimal design and a ton of features. Test yourself in various modes, track your progress and improve your speed.

Permanently Deleted
It's either some deep conspiracy, or, as Musk have shown us for a long time, he's a fucking stupid moron. Both are valid theories.
It's fake.
I haven't used Windows at home for the past 20 years, and I mostly develop for Linux at work. You're drunk in a bad way.
loonix
This word was obsolete more than 10 years ago, please get an update from "Micro$oft."
Anything but Windows.
You must be jobless to believe that.
Then enjoy your Windows that is forcing you to have a MS account and uploads your passwords to their servers. What was the point of your question?
Same. With UPnP, muTP, and stuff, the downloads with a VPN are not slowed down in any way. Also my ports seem to be "blocked" right now but I still download.
Permanently Deleted
To get more content. What kind of question is this?
Click on this link and delete Windows: https://ubuntu.com/
Use more words next time.
Fake or not, it's karma whoring for something that you shouldn't see because you're using Linux, right?
You're pirating posts now? https://feddit.de/post/1292959 (4 months ago)
Also, why are you still using Windows?
Permanently Deleted
If you would like to make a donation to support the cost of running this platform, please do so at the mastodon.world donation URLs:
Permanently Deleted
People could compensate their free work by working for free
Here is what OP can do: https://github.com/LemmyNet/lemmy/pulls
The worst commit history:
Un communiste achète une cafetière de luxe avec nos impôts et s’en vante sur un site géré par un nazi (littéralement). Mais tout va bien. Peu importe la marque de la cafetière, c’est le geste qui compte et qui va dans le sens de « faites ce que je dis pas ce que je fais ». Si les politiciens donnaient l’exemple ça serait un bon début.
C’est ton argent. Tu en fais ce que tu veux.
15% is a scam.
Les célèbres cafetières françaises à 350 euros.
The most customizable typing test website with a minimal design and a ton of features. Test yourself in various modes, track your progress and improve your speed.
Obvious link but maybe not everyone knows about it. I used Keybr for 2 weeks, but was frustrated by the lack of improvement and the fake words. I now use Monkeytype and it's great. You can type real quotes, and it has Colemak emulation if you haven't installed the layout yet.
I can only type 25 WPM so far but I seldom hit the wrong keys and I try to use it at work as much as I can. It's really better than QWERTY so far.
That time I followed my employment contract to the letter
It's a 3 months long malicious compliance but it was the first time I didn't cave in front of a bullying team of managers:
My last job became very toxic with managers insulting employees and telling me to do stuff that was neither ethical nor legal. It was not a matter of life and death, but I could have been sued for trying to destroy the company if I had followed their orders. For a lot of reasons, I decided to give my resignation letter and, since I'm in France, I had to work 3 additional months for them while they were finding someone to replace me.
I also asked for some WFH since I could do everything remotely but they forbid it to get some revenge. They told me that WFH was not a part of my contract, and that's when I read my contract again with some interesting details...
Since I changed my position in the company without changing the contra
Et vous, comment vous êtes-vous faits virer ?
J'ai trouvé ce poste sur reddit mais je ne vais pas créer de compte temporaire pour leur répondre, alors je me demandais ce qu'on pouvait trouver comme réponses ici.
Johnny Decimal (a system to organize projects)
Johnny.Decimal is a system to organise your life. Find things, quickly, with more confidence, and less stress. It's free to use and the concepts are the same at home or work.
I found this a year ago and it's IMHO a very good system to organize projects (software projects for me). I don't expect everyone to follow those rules, but it helped me a lot when I needed some organization.
Pikchr (an alternative to PlantUML and Mermaid.js)
I found this on Hacker News, and it seems to be an old project that no one was talking about which is a shame because it could interesting.
Pikchr was written in plain C by the developers of SQLite. It generates SVG from a simple language. It is lower-level than PlantUML and Mermaid, but it seems to have no dependency.
The user manual has more examples about this tool.
I'll definitely try to use in future projects where some visual documentation is needed.
PRQL (Pipelined Relational Query Language)
I found this link on Hacker News, and it seems to be a transpiler to generate SQL from a new language.
It's been a long time since I have written SQL, but I'm sure this could be interesting since SQL can be infuriating for most developers I've worked with.
Solde de tout compte
Je change encore d'entreprise à cause d'un manager qui pète un cable, alors je vais râler un coup sur le comportement d'une entreprise envers ses employés.
Quand une équipe est en retard sur les projets :
Quand une entreprise a du retard pour payer le solde de tout compte :
J'en ai marre.
Install clang++ 16 on macOS with Nix
Sorry for writing this shitty guide but it's an issue that doesn't seem to be answered on the internet, and I really needed a recent version of clang++ on macOS for a new job. Feel free to make fun of me if there is an easier way to do it.
shell.nix
at the root of your project, and put the following code inside: undefined
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell { nativeBuildInputs = with pkgs.buildPackages; [ llvmPackages_16.clangUseLLVM ]; }
nix-shell
clang++ -v
It's not a perfect solution, but it's mostly automated, you'll be able learn various topics of C++20 with this, and the stupid "clang 11" from Apple is not hijacking the latest version anymore.