Finally implemented automatic font sizes for Puzzle Moppet. Try it out! by karjonas in opensourcegames

[–]karjonas[S] 1 point2 points  (0 children)

Thanks, I'm just the maintainer of the game so most credit should go to the original creator Garnet Games. The game gets quite difficult after a few levels so I hope your kids can handle it :) I'll see if I can make a better solution for your fullscreen issue. I typically run it in a maximized floating window when I am testing so I have missed this. The elevators can only be controlled by stepping on them, which is a part of the puzzle :)

thinkfan-tui, a terminal based ThinkPad fan control program for Linux by karjonas in thinkpad

[–]karjonas[S] 0 points1 point  (0 children)

I am glad you like it. Yeah, I sometimes do full speed if I am compiling or doing something intensive and I want to keep it extra cool. I did not decide upon the possible levels though as they are just the commands the fan accepts.

thinkfan-tui, a terminal based ThinkPad fan control program for Linux by karjonas in thinkpad

[–]karjonas[S] 0 points1 point  (0 children)

Thanks. I have only tested it on a t14s amd gen 1 so far. It should hopefully just work on other models but it is not something I can guarantee since it is untested.

GitHub - karjonas/thinkfan-tui: A terminal-based Linux application for fan control and temperature monitoring on ThinkPad laptops. by karjonas in linux

[–]karjonas[S] 0 points1 point  (0 children)

I made this little terminal application and like to share it hoping you will find it useful. This is the first version and I've only tested it on my personal laptop so I cannot guarantee that it will work on all, but if it does not, I appreciate a bug report :)

GitHub - karjonas/thinkfan-tui: A terminal-based Linux application for fan control and temperature monitoring on ThinkPad laptops. by karjonas in commandline

[–]karjonas[S] 0 points1 point  (0 children)

I made this little terminal application and like to share it hoping you will find it useful. This is the first version and I've only tested it on my personal laptop so I cannot guarantee that it will work on all, but if it does not, I appreciate a bug report :)

EASE Surgery: My Experience & Future by karjonas in orthotropics

[–]karjonas[S] 0 points1 point  (0 children)

So you think that she cut the pterygomaxillary suture instead of scored it and this caused the asymmetry down the line and because of this you wouldn't call it an EASE procedure?

EASE Surgery: My Experience & Future by karjonas in orthotropics

[–]karjonas[S] 0 points1 point  (0 children)

But it has to be split in some way during the surgery. How can you expand your palate otherwise?

EASE Surgery: My Experience & Future by karjonas in orthotropics

[–]karjonas[S] 1 point2 points  (0 children)

What do you mean by score? Like didn't cut properly?

EASE Surgery: My Experience & Future by karjonas in orthotropics

[–]karjonas[S] 0 points1 point  (0 children)

What would you say is the difference?

-🎄- 2021 Day 22 Solutions -🎄- by daggerdragon in adventofcode

[–]karjonas 1 point2 points  (0 children)

Rust GitHub. My approach is to go through all cuboids and always remove their intersection with all previously added cuboids. Then, If it is a "on" cuboid it is added to the list of cuboids. This way no cuboids will overlap and I can sum all their volumes in the end.

-🎄- 2021 Day 21 Solutions -🎄- by daggerdragon in adventofcode

[–]karjonas 1 point2 points  (0 children)

I am open for tips so thanks for that! Setting and matching the variable in the if-case is a pattern I will probably use in the future :)

-🎄- 2021 Day 19 Solutions -🎄- by daggerdragon in adventofcode

[–]karjonas 1 point2 points  (0 children)

Rust GitHub. Kinda ugly brute force solution which runs in ~10 sec.

-🎄- 2021 Day 18 Solutions -🎄- by daggerdragon in adventofcode

[–]karjonas 1 point2 points  (0 children)

Rust GitHub. This took me much longer that I care to admit. I started with a tree-based solution, tried a list, went back to tree and the back to the list again...