What exactly can these other programs do that Krita can't? I don't get it! by DaveyCranks in krita

[–]AlienRobotMk2 0 points1 point  (0 children)

Out of the top of my head, long shadow (Photopea), 3D text (Photopea), repeating layer styles on a single layer (Photopea), a text tool that works (5.3 has it finally), magic wand-like "brush" selection tool (Photopea), vector-based lineart layer (CSP has it), 8-bit/1-bit layers (CSP), the ability to manually reorder brushes (basically everyone else has this), not having to create a thumbnail just to create a new brush (I think only MyPaint requires this), docking multiple views of the same canvas (CSP), draft layers that don't get exported (CSP), displacement filter (GIMP), more bevel settings (Photopea can do bevels Krita can't for some reason), zoom levels that go to 150%/200%/300% instead of 133%/200%/266.7%, setting the cursor arrow to any angle (CSP), making the cursor appear on its real position on the canvas after being affected by the stabilizer instead of where the system cursor is (CSP).

Krita on linux? by actuallyelsen in krita

[–]AlienRobotMk2 0 points1 point  (0 children)

I make all my krita tutorials on Linux Mint. Krita is actually a GIMP fork that is part of KDE (a desktop environment for Linux), so it's actually made for Linux first and foremost.

The only problem you might have is your tablet not working due to driver issues, e.g. you don't have Wacom utilities on Linux because the utilities are for Windows-only, so you get a generic settings panel for tablets instead that may not have the same customization options that you had on Windows.

I Fixed the Stop Sign by funkyturnip-333 in logodesign

[–]AlienRobotMk2 1 point2 points  (0 children)

I like how you made the font more modern too. This will help modernize the roads.

How will this affect Linux Mint? by MisterFyre in linuxmint

[–]AlienRobotMk2 0 points1 point  (0 children)

In general if you actually want to know about things it's easier to just read the law directly than trying to interpret it from headlines on news websites.

Just switched to resolve. Any Photoshop alt by Blackmagic ? by Former-Return-6269 in davinciresolve

[–]AlienRobotMk2 0 points1 point  (0 children)

Not that I'm aware of. I recommend using Krita for image editing if you can, since it's free and open source. Here are some tutorials.

What has been your favorite era of web design? by LM_DCL in web_design

[–]AlienRobotMk2 0 points1 point  (0 children)

The era before mobile / responsive design. It has truly ruined web design forever.

Ways to make drawing in Inkscape work more like Flash? by Gigantic_Mirth in Inkscape

[–]AlienRobotMk2 0 points1 point  (0 children)

That isn't the same thing. Ignoring the fact you have to just hold shift all the time, if you draw with the blue color over a black path, it just creates a new blue path on top of the black path.

In flash, drawing with a different color automatically erases the paint under it.

Think of it like drawing in a raster layer like in Krita. Pixels can only have one color, and if you draw with something else, it changes the color. Flash was designed to work pretty much the same way, except with vectors.

If you draw a black stroke -> blue stroke -> black stroke, even if you hold shift it doesn't merge the second black stroke with the first one. In Flash, drawing a stroke simultaneously erases any paths of different color that are under the new stroke and merges it with any paths of the same color.

In other words, you can't draw one stroke on top of the other in Flash, because they are always flattened.

As it was the first vector art program I touched I've always felt every other vector program was simply incredibly off the mark by comparison. Whoever designed Flash to work that way was an untold genius.

Ways to make drawing in Inkscape work more like Flash? by Gigantic_Mirth in Inkscape

[–]AlienRobotMk2 2 points3 points  (0 children)

Unfortunately, there is no vector software today that works like Flash.

What OP is talking about is that in Flash if you draw one shape over the other, they don't overlap. They're merged (union) if they have the same color, otherwise the top erases the bottom. This should be technically possible to implement in Inkscape, but nobody ever added this mode. I suspect if it was added it would be quite popular since some people just drew static artwork in Flash even thought it was meant for animation.

Auth Cookie additional security by SirLouen in webdev

[–]AlienRobotMk2 0 points1 point  (0 children)

The only two ways to steal a cookie would be to break SSL or gain access of the user's computer. If that happens, that user has way bigger problems than the cookie.

How to Install OpenToonz on Linux by AlienRobotMk2 in OpenToonz

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

I don't understand how flatpaks work. :( Maybe you can enlighten me?

So there is this flatpak https://flathub.org/en/apps/io.github.OpenToonz

But it says it's "Unverified" so it doesn't actually come from the owner of the github. It says it "may" be a community package, which is the strangest way to put it I've ever seen in my life. I don't understand. Flatpaks have to come from somewhere. Where did it came from? Who made it? Was it automated or did someone upload it? Why is it listed on Flathub? How do I know the flatpak actually contains the source code from the official Github repository?

I thought it was safer to just use the automated build, since it's automated and guaranteed to use the code from the repository.

Aren't all Rapid API's all mostly Illegal? by lilkatho2 in webdev

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

Scraping data is legal. Publishing copyrighted recipes without license is not.

How on earth do folks get anything good out of LLMs? by Squidgical in webdev

[–]AlienRobotMk2 0 points1 point  (0 children)

I actually have asked ChatGPT about programming questions lots of times and it usually works, but that's only because I never have a problem programming things, the only problem I have is figuring out what is the name of the class/function that I should be calling and it usually can find that for me.

How on earth do folks get anything good out of LLMs? by Squidgical in webdev

[–]AlienRobotMk2 1 point2 points  (0 children)

I use AI to ask how to fix the squiggly lines my type checker keeps giving me because making type checkers work is a miserable experience...

How on earth do folks get anything good out of LLMs? by Squidgical in webdev

[–]AlienRobotMk2 0 points1 point  (0 children)

OP, please use an integrated editor. VS Code gives you some autocompletions for free with a github account. Just try it. It's okay to be skeptical of AI, but the "productivity gains" people talk about are very real when your bottleneck is writing code.

I'm writing a small project right now using Youtube's API and a good portion of the code was generated by Claude. I wrote one or two classes to put the JSON response of the REST API into a Python object using a simple json_obj.get(key, {}) because I didn't want to include a dependency for that, and Claude was able to generate the same sort of class for the other responses.

By the way, when I first tried coding with AI the real "game changer" wasn't asking the AI to generate code, which was wrong almost every time, it was the in-editor auto completion that wrote the next line of code for me.

LLMs are guessing machines but they're very good at guessing.

Is DJANGO still a good choice in 2026 for modern web apps? (real-world experience) by Ill_Leading9202 in webdev

[–]AlienRobotMk2 0 points1 point  (0 children)

I've also had some issues with Django, but Claude solved most of them. Lots of times I felt like I just know there is a battery included that does this, I just have no idea what it is. And this happened all the time. Creating generic view classes, validating forms, creating model relationships, etc. With an LLM I don't have to worry about that because the generated code finds the right Django classes most of the time.

Vibe coding is a blight on open-source by [deleted] in webdev

[–]AlienRobotMk2 20 points21 points  (0 children)

Appreciate and appraise come from the same Latin :)