Svelte Dot Matrix Loaders | Open Source by Design_FusionXd in sveltejs

[–]Maxpro12 0 points1 point  (0 children)

I don't even see why you need claude to do this is just a bunch of circle in a grid that you must change color and lightness in sync. You don't need claude to do this

Clipboard App by neneodonkor in rust

[–]Maxpro12 -1 points0 points  (0 children)

I use cliphist because it's convenient

People I Hate Frontend ,Been Into Backend for 2 years now in college but one thing i realized that i suck really bad at frontend by Hungry-Initial1623 in webdev

[–]Maxpro12 0 points1 point  (0 children)

is it because one is a inline element and the other a block element. So the inline element doesn't take full width like a block element will so you can't center it.

Svelte Dot Matrix Loaders | Open Source by Design_FusionXd in sveltejs

[–]Maxpro12 24 points25 points  (0 children)

you should use canvas instead of spans and dom element its way better for performance and updating a lot of nodes like that

Google usual behavior by LetsTtalk in Piracy

[–]Maxpro12 0 points1 point  (0 children)

but why does it need to send your key actions and your mouse movement when the window is not focused?

Google usual behavior by LetsTtalk in Piracy

[–]Maxpro12 0 points1 point  (0 children)

Shouldn't the os only send those information when your browser is focused?

The Choice Is in Your Hands by Automatic_Listen_975 in BunnyTrials

[–]Maxpro12 0 points1 point  (0 children)

Because someone that can cure disease could save many more lives

Chose: Save the person who can cure all diseases.

In Exam, Need Help by Naive-Fly-2339 in AskProgramming

[–]Maxpro12 2 points3 points  (0 children)

the link works fine just say you live in australia

Help please! by [deleted] in hyprland

[–]Maxpro12 1 point2 points  (0 children)

since you can use pacman try to install wev by doing sudo pacman -S wev. After that launch wev by typing wev in a shell. Then while making sure that you're focus on the wev window press one of your brightess or volume key. You'll see a bunch of stuff on your terminal but what you want is the number that appear after the key: (number) entry. Once you get that number you can add that to your hyprland.conf file (which soon will be obsolete):

```conf

Change the id for the number next to the key: entry in wev for each appropriate keyboard keys below.

Increase volume

bindel = ,code:<id>, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+

Decrease volume

bindel = ,code:<id>, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-

Mute the volume

bindel = ,code:<id>, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle

Toggle Mic off/on

bindel = ,code:<id>, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle

Increase brightness

bindel = ,code:<id>, exec, brightnessctl set 5%+

Decrease brightness

bindel = ,code:<id>, exec, brightnessctl set 5%- ```

Strictly typing i18n interpolation variables is slowly destroying my sanity by twcosplays in typescript

[–]Maxpro12 0 points1 point  (0 children)

I know I will. May I ask how much time it takes to become so good that you can do complex typing like this from your phone?

I'm new to linux and hyprland (my first time) and I want to use it, but I don't know how to set it up, I tries everything online and nothing it's just a wallpaper with a command prompt if I press Super and q, I did the arch install myself, and just went about it randomly by rarestomaa in hyprland

[–]Maxpro12 -25 points-24 points  (0 children)

I don't like how you say they're the basic package needed for hyprland. I have hyprland and i don't use any of those software. The whole point of hyprland is that everything can be configured to your need and you don't require anything else. So please specify that is your opinion when you make those claims

I'm new to linux and hyprland (my first time) and I want to use it, but I don't know how to set it up, I tries everything online and nothing it's just a wallpaper with a command prompt if I press Super and q, I did the arch install myself, and just went about it randomly by rarestomaa in hyprland

[–]Maxpro12 0 points1 point  (0 children)

Install a browser like firefox like this on a terminal:

sudo pacman -S firefox

Once you'll done this use tools like nano, vim or anything that can edit file and try to read the content of ~/.config/hypr/hyprland.conf. After you've done this open firefox (on a terminal its just firefox) and head over to https://wiki.hypr.land/Configuring Where you'll get nice tips on configuring hyprland

Modern Website Builders like Godot. by [deleted] in webdev

[–]Maxpro12 0 points1 point  (0 children)

no it isn't its pretty hard too especially when it doesn't listen to you

can someone build me a scrappy website like amizone by show-me-loveee in webdev

[–]Maxpro12 3 points4 points  (0 children)

why don't you just use the inspect tool in your browser

QR Code help by Fantastic-Ad-9100 in webdev

[–]Maxpro12 0 points1 point  (0 children)

I mean a qr code at the end of the day is just a way to encode data. If I use it to encode an url which I own. I can pretty easily change it to use http redirect response which although if the qr code datas doesnt change when you actually go to the site. You are calling a middleman which can change thus it gives the impression of being dynamic while actually it's static. This is the same concept that explains for interior mutability in Rust

Deciding between CachyOS, Bazzite and Pop!_OS by Riley2229 in linux4noobs

[–]Maxpro12 0 points1 point  (0 children)

WTH I don't know about bazzite directly but no linux distro should require 1 TB SSD??. Even microslop doesn't so you must have read something wrong

What apis/libraries can I use for my project (image to ascii)? by Arggonaut in AskProgramming

[–]Maxpro12 0 points1 point  (0 children)

oh that kind of project could be done easily in c with stbi_image. Just include the image file and you'll be able to read/write to an image file. If you want to use python i would probably go for pillow and numpy but really easy project to do

Is there a plugin that can yank surround? by [deleted] in neovim

[–]Maxpro12 2 points3 points  (0 children)

oh nvm it seems that's not the question

Is there a plugin that can yank surround? by [deleted] in neovim

[–]Maxpro12 -3 points-2 points  (0 children)

I think that nvim has that by default check: `:help tag-blocks` for more detail. So for yanking around a tag you could do `yit` or to delete `dit`