• 0 Posts
  • 20 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle



  • In no particular order: C C# C++ Perl (been a long time, would need a refresher) Python Rust (favorite) TCL (kill it with fire) JavaScript Typescript Java Kotlin X86 assembly Arm assembly Riscv assembly Bash (shell scripting in general) Dart

    Might be some others I haven’t touched in while.

    I also had the unfortunate experience of having to write windows batch scripts for a month. I can’t decide whether I hated TCL or batch more.















  • Another option is assigning an id per user that’s only used for tracking votes. Only the user’s server would know who did the voting, but you still get moderation where you could block votes from a certain id on another server if you believe it’s being abusive in some form.

    As long as you don’t delete the voting id when the user’s account is deleted, you can avoid the votes ever being associated with the user on another server. (Since a snooping party could correlate the timing of the two deletion requests and associate the user with the votes at that time). If you did want to delete them, you could say voting id deletion happens in batches. So accounts get deleted immediately, but votes only get deleted when there’s some group size N available for deletion.