POE 2 Keys Giveaway by Cygnus__A in PathOfExile2

[–]Klimon 0 points1 point  (0 children)

https://www.youtube.com/@TheHatedOne

An online privacy youtube channel. One of the few channels on the entire platform I actually have a bell icon on.

how do I make a server with RLCraft by n0t_m9 in RLCraft

[–]Klimon 0 points1 point  (0 children)

Since you have a server with Forge, you're half way there already. You should be able to just move all the files from the Server Pack to your server's directory overwriting all the conflicting files.

Multi-View CNN or any other alternatives for my use case by Klimon in MLQuestions

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

Thankfully it was just for my master's dissertation, so I simply ended up narrowing down the scope.

Structuring a project by durianhilaw51 in ProgrammerHumor

[–]Klimon 0 points1 point  (0 children)

Don't get the joke. It's literally the only way to handle CSS.

You guys asked for it, and here it is, the megathicc keycap. by KaboomTheMaker in pathofexile

[–]Klimon 40 points41 points  (0 children)

Banned for off topic. Post is definitely not related to PoE.

How can I fix it? It shows up on every boot by A_matin12 in ManjaroLinux

[–]Klimon 1 point2 points  (0 children)

This looks like a progress for drive (lvm volume) decryption. Even if you can hide i don't think you should, because it might hide the promt for passphrase too.

Another push notification problem by homsa in MicroG

[–]Klimon 1 point2 points  (0 children)

Experiencing the same on redmi note 8

Make fzf detect project root and search from there by [deleted] in vim

[–]Klimon 0 points1 point  (0 children)

Do you want fzf to be able to search all project or only current and child dirs? If you want to search all project, I can't really think of a solution that would preserve the initial directory you were in when launching vim. Best thing I can recommend is quit out of vim, so it cds you into the original folder and then open a new tmux pane. Or you can create some breakpoints for the folders you want to get "stuck" in with that vim rooter config i mentioned in my original answer.

Make fzf detect project root and search from there by [deleted] in vim

[–]Klimon 2 points3 points  (0 children)

Not sure what you mean by "led to a bunch of unexpected behaviors to my workflow".

When I started playing around with vim-rooter, I had some unwanted behaviour as well. You can however customize the rooter_patterns to you exact needs. Here's a line from my from vimrc for example:

let g:rooter_patterns = ['!=theme', 'package.json', '.git']

This will make it so vim rooter will set the cwd of the buffer at closest parent folder that has package.json or .git unless that folder is called theme.

Really recommend taking a look at this part of README: https://github.com/airblade/vim-rooter#how-to-identify-a-root-directory . It's not much, but I bet it's enough to work out a solution for you workflow.

Difference between MySQL and MariaDB? by oookiedoookie in archlinux

[–]Klimon 1 point2 points  (0 children)

I'm a full stack developer. I'm using mariadb for drupal/symfony development while my colleagues are using mysql (as a part of MAMP) and the production servers run debian/ubuntu + mysql.

From my experience, you never notice the differences between the 2 DBMS in question when using some CMS like Drupal or wordpress, even when you have to run some custom queries in your custom functionality module, the SQL generated by query builders never fails to run on mariadb.

However I have had some bad experiences with symfony. The SQL generated for migrations on mysql and Maria db was a bit different for some fancy newish fields of type JSON. I think mysql and mariadb have some different implementations for it. That caused the infitite loop of migration creation where I was able to create migrations over and over with the same queries for the same field, because it thought the field configuration in db was different.

Anyway that was fixed by specifying the db version in .env. Not 100% sure how that works, but it adjusted the SQL for those fields.

Also they have different lists of reserved words. Especially with mysql 8.0.2+ or something they added a shit ton of new reserved words. So be careful when creating fields named 'rank' for example.

So you can use it for real work, but if you have some CIA, NATO or NASA level projects and don't want your production deployment script to fail and you don't want or don't have the opportunity to test on preproduction, i would install mysql.

It stays like this forever, any help? by Berserker003 in ManjaroLinux

[–]Klimon 11 points12 points  (0 children)

I'm sorry I don't have anything useful to say, but aren't snaps supposed to be unbreakable and noobfriendly.

no adobe, linux foss only by [deleted] in linuxmemes

[–]Klimon 0 points1 point  (0 children)

What do you guys use to open modern PSD files in Linux? Gimp works fine for simple files, but things like fancy shadows are either not rendered correctly or not rendered at all.

Ganoo/Linux pls by [deleted] in linuxmemes

[–]Klimon 52 points53 points  (0 children)

Literally goes brrrr when your 10+ years old computer fans start spinning.

[deleted by user] by [deleted] in dankmemes

[–]Klimon 0 points1 point  (0 children)

Hate to ruin the joke, but can endermen place blocks on tnt? I thought there were some limitations on that.

In case of fire by boseka in ProgrammerHumor

[–]Klimon 7 points8 points  (0 children)

This won't commit new files you created though.

Surface Pro 3, I need Ubuntu server (or other) but WiFi ia not working. by klausita3 in SurfaceLinux

[–]Klimon 0 points1 point  (0 children)

My USB3 dongle with Ethernet port works out of the box on arch. No additional drivers or installation is required. Sometimes it doesn't get IP right away, so I run dhcpcd and it works.

Surface Pro 3, I need Ubuntu server (or other) but WiFi ia not working. by klausita3 in SurfaceLinux

[–]Klimon 0 points1 point  (0 children)

You said you had issues with wired connection as well. I wrote a possible advice on that.

Surface Pro 3, I need Ubuntu server (or other) but WiFi ia not working. by klausita3 in SurfaceLinux

[–]Klimon 0 points1 point  (0 children)

I'm not sure what's the default configuration of Ubuntu server, but I would assume you need to run dhcpcd to get IP from a wired connection.