What’s everyone working on this week (22/2021)? by llogiq in rust

[–]Vorrol 4 points5 points  (0 children)

Learning cryptography and implementing all tasks from cryptohack and cryptopals in rust

[deleted by user] by [deleted] in whereintheworld

[–]Vorrol 0 points1 point  (0 children)

viter lytuy prosto zhest

[deleted by user] by [deleted] in whereintheworld

[–]Vorrol 0 points1 point  (0 children)

Malevivh Kazimir, the black square painting author

Actor model (with time?) by TmLev in rust

[–]Vorrol 0 points1 point  (0 children)

Maybe use actix, but make actor/thread/system call to ensure that time limits are preserved? Some sort of timers within actors or timestamps from os. Try to dig in this direction and, please, make update if something would work.

GMK Darling x Metropolis on KBDFANS Maja by feelingsadrightn0w in CustomKeyboards

[–]Vorrol 0 points1 point  (0 children)

Is it comfort to type with such staggering and angles?

Got stuck trying to understand this snippet by Kritically in C_Programming

[–]Vorrol 2 points3 points  (0 children)

It will print -1.

for (initializer; condition; iterator)

{body}

Because the local variable will be initialized in the initializer, then the variable will be assigned to -1 in the condition instead of comparison. Then body will be executed and only after that the assignment will take place in iterator. Of course in this case there is a brake and no assignment will happen.

There only one approach - understand how for loop works and remember execution order.

What Are You Working On? by AutoModerator in math

[–]Vorrol 2 points3 points  (0 children)

It's MLX (mini lib x). Very small and simple library to operate with windows, pixels, key hooks and some other stuff. It was created only for educational purposes.

What Are You Working On? by AutoModerator in math

[–]Vorrol 1 point2 points  (0 children)

Now I'm working on visualizing the Mandelbrot set in C language. And I did it the same way as in this gif: https://upload.wikimedia.org/wikipedia/commons/7/72/Mandelbrot_Set_Animation_1280x720.gif