EveryMuffinIsNowEncrypted

joined 2 years ago
[–] EveryMuffinIsNowEncrypted@lemmy.blahaj.zone 1 points 4 days ago* (last edited 4 days ago)

Sorry for the late reply (it's been a busy week at work), but yeah, unfortunately, not all software supports that method. For instance, it doesn't seem to work on Matrix when using either Element (desktop) or FluffyChat (Android). So, I just got into the habit of do it that way everywhere because at least most places seem to support it. Lol.

[–] EveryMuffinIsNowEncrypted@lemmy.blahaj.zone 1 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

Because there doesn't seem to be any other way to have line breaks show up. Lol.

See? This line is actually separated after the above one by two lines.

[–] EveryMuffinIsNowEncrypted@lemmy.blahaj.zone 2 points 2 weeks ago* (last edited 2 weeks ago)

It's no trouble! I'm happy to explain! ^_^

Lol that sounds about right. As someone who works in retail (please kill me now), I can def tell you that people don't pay attention.

That's something I did not know. Thanks for educating me!

Well that's interesting! :O

I've tried it and it's a little too barebones for my needs.

I also do, unfortunately, care about layers.

But I appreciate the suggestion! <3

[–] EveryMuffinIsNowEncrypted@lemmy.blahaj.zone 4 points 2 weeks ago (1 children)

I definitely don't mind trying new things, but that site says it's a photo editor. A photo editor is not at all the same thing as a general-use raster editor like Pinta, GIMP, or Paint.\NET.

[–] EveryMuffinIsNowEncrypted@lemmy.blahaj.zone 27 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

Okay, so, please forgive me ahead of time for the following rant. To be blunt, you did ask. 😛

  • It often doesn't use common UI/UX conventions found in most other editors
  • It has no polygon tools.
  • The Lasso tool is called "Free Select" instead of, you know, "Lasso" like every other software under the sun calls it. (Though I admit this in itself is merely a nitpick, it is indicative of the larger trends.)
  • The text tool is so bad. Honestly, I don't even know how to put how it's bad into words, but just using it is...painful...in comparison to Paint.\NET, Pinta, or even MS Paint back on Windows. Other people can probably word the problems with it better than I can. Sorry I can't be more descriptive.
  • It doesn't have Lanczos resampling for resizing images (tbf neither do many others but still Paint.\NET does and so that's a point against it. (If you don't know, Lanczos is visibly superior in maintaining fidelity when downscaling an image, compared to linear, bilinear, cubic, etc.)
  • The currently active layer seems to randomly change, so that one minute you're doing something and the next nothing is worked, you wonder "what the hell" and then finally after 10 minutes of searching you find out it's because the layer has changed and now you need to go click on this one obscure option. (I don't remember what it is. Select > Select None maybe? Anyway, I've had it happen where the option doesn't even do anything.) It completely throws my whole game off and I've never once, even once had it happen until I started using GIMP.
  • The default UI/UX is very rough around the edges. Just to make it minimally usable for me, I had to install PhotoGIMP over GIMP and spend 20-30 minutes customizing the layout and keyboard shortcuts. Speaking of...
  • The default keyboard shortcuts are kinda wacko. For example, Zoom In, Zoom Out, and Fit Image in Window (basically zooming in/out but to see the whole image in your window) is +, -, and Shift+Ctrl+E, respectively; while most other programs have it as ctrl++; (and/or ctrl+=), ctrl+- (and/or ctrl+NumpadMinus), and ctrl+0 (and/or ctrl+NumpadEnter). Also, you cannot use tab or ctrl+tab to move to the next or previous tab, respectively, because tab is a excluded key for keyboard shortcuts. (I think I was once told it has to do with a limitation in GTK, but that's ridiculous as Pinta has been able to do it for years.) There are countless other inane defaults for the keyboard shortcuts as well, frankly.
  • You cannot use LMB or RMB to switch between the primary and secondary colors selected. You have to use X.

These are only a few of the most severe frustrations, annoyances, and hair-pulling-out moments for me with regards to GIMP. I'd never have even tried it out if Pinta hadn't made the ass-backwards decision to move to the stupidly minimalistic and less functional GTK4 adwaita UI and if Paint.\NET worked. (I can't remember why it doesn't wanna work; I think it has to do with a dependency. I know it's not the .NET framework since that could be handled by Mono IIRC.)

[–] EveryMuffinIsNowEncrypted@lemmy.blahaj.zone 2 points 2 weeks ago (3 children)

Honestly, it might be I'm wrong about this since I don't live in a big city so maybe it's different in like NYC or some shit, but I'm under the impression that QR Codes have kinda been dead in the US. At least I hardly ever see one in the wild anymore. Mainly I presume for that reason. It's a prime way for malware injection.

[–] EveryMuffinIsNowEncrypted@lemmy.blahaj.zone 13 points 2 weeks ago* (last edited 2 weeks ago) (21 children)

Listen, I only need to know one thing: can it run Paint.\NET?

Because pretty much all my needs are met but

GOOD GOD THE SELECTION FOR GENERAL-USE RASTER EDITING SOFTWARE ON LINUX IS BALLS.

 

 


(inb4 anyone says anything: Krita = painting not editing; GIMP = sucks balls; PhotoGIMP = sucks less balls; Pinta sucks balls ever since they switched to GTK4; and pretty much all other options are MS Paint equivalents so also all suck balls.)

 

(I just thought of this and knew I had to make it. Spent the last 20 minutes on it. Hope you like it!)

 

Note: The attached image is a screenshot of page 31 of Dr. Charles Severance's book, Python for Everybody: Exploring Data Using Python 3 (2024-01-01 Revision).


I thought = was a mathematical operator, not a logical operator; why does Python use

>= instead of >==, or <= instead of <==, or != instead of !==?

Thanks in advance for any clarification. I would have posted this in the help forums of FreeCodeCamp, but I wasn't sure if this question was too.......unspecified(?) for that domain.

Cheers!

 


Edit: I think I get it now! Thanks so much to everyone for helping, and @FizzyOrange@programming.dev and @itslilith@lemmy.blahaj.zone in particular! ^_^

 

I'm currently doing Dr. Charles Severence's lessons on FreeCodeCamp to try to learn Python3. I'm on lesson exercise 02_03 and confused about multiplying floating-point and integer values.

The goal is to write a Python program multiplying hours worked by pay rate to come up with a pay quantity.

This is the code I wrote:

h = input("Enter hours: ")
r = input("Enter pay rate: ")
p = float(h) * r

I got a traceback error, and the video said the correct way to solve said error was change Line 3 from p = float(h) * r to p = float(h) * float(r).

However, what I'm confused about is why would I need to change r to a floating-point value when it's already a floating-point value (since it'd be a currency value like 5.00 or something once I typed it in per the input() command*?

What am I missing here?

 


*I can't remember: are the individual commands in a python line called "commands"?

 

 


Edit: Wrote plus signs in my post here instead of asterisks. Fixed.

 


EDIT: Thanks to @Labna@lemmy.world and @woop_woop@lemmy.world. I thought that the input() function was a string until the end-user types something in upon being prompted, and then becomes a floating-point value or integer value (or stays a string) according to what was typed.

This is incorrect: the value is a string regardless of what is typed unless it is then converted to another type.

 

Follow-Up: It's going great! I've stopped using my Tile tracker, I haven't lost my keys (yet), and I feel like I'm a LOT less trapped by my circumstances regarding them. Many thanks everyone! Many thanks indeed!


 

(See bottom for tl;dr.)

I'm the kind of person who loses their keys easily, so I love the idea of trackers: little devices that you can attach to your wallet, phone, or keyring that connect via bluetooth to an app on your phone to help you find it.

Problem is pretty much all the options I can find are run by companies with shitty privacy policies: Tile, Apple AirTag, Chipolo, and so forth.

  • Tile collects shitloads of data and is partnered with Amazon to boot;
  • Apple Airtags AFAIK only work with Apple devices, and besides it's Apple so no thank you; and
  • Chipolo also collects shitloads of data and shares information with data brokers and data collection companies of all stripes. No thank you.

In any case, I really don't need a location network larger than maybe 200 meters (about 650 feet). If I lose my keys, odds are it's either in my car or in my house, and my house is like 100 square meters (about 1000 square feet). So Bluetooth is really all I need. I don't even need to see it on a map; I just need for it to ding or something.

I'm currently using Tile but I really want to get away from it. Worst case scenario, I'll stop using the Tile, but I really am a forgetful little shit. Lol.

 

tl;dr – Looking for recommendations for ideally short-range Bluetooth trackers for keys, with decent privacy. Max required range = 200 m (650 ft). Also, pie tastes great. Cheers.

 


Edit: Added a single comma (because fuck syntactic ambiguity) and added follow-up. :)

 

I'm currently learning Python and am learning about very basic functions such as int(), float(), and input().

I have the first two down pat, but I'm struggling to understand the last. The example I'm looking at is found at 12:26 of this video:

nam = input('Who are you? ')
print('Welcome', nam)

Who are you? Chuck
Welcome Chuck

In this case, wouldn't nam be a variable equal to the text on the right side of the = sign?

In which case, if nam is equal to input('Who are you? '), then wouldn't print('Welcome', nam) just result in

Welcome input(Who are you? )?

Obviously not (nor does it work in a compiler), which leads me to believe I'm clearly misunderstanding something. But I've rewatched that section of the video several times, and looked it up elsewhere on the web, and I just can't wrap my head around it.

Could someone help me with this?

Thanks.

 

I'm currently learning how to code (currently Python, then maybe JavaScript), but I'm not always around my desktop, and learning on my phone is not always an option (also, it can be quite cumbersome at times). Therefore, I'm looking into purchasing a laptop just for learning how to code and stuff.

I don't want to get a Chromebook because I want to be able to wipe the drive and install Linux on it (probably Linux Mint). Maybe it's changed since 2013, but the last time I had a Chromebook, it was a pain in the ass to install even bog-standard Ubuntu on it.

Problem is, I'm also heavily limited by space & budget: no more than 11 in (280 mm) total laptop width and 330 USD base price.

Does anyone have any suggestions?

Please forgive me if this is not the right space for this kind of question. Lemme know if it is and I'll delete it. :)

 

I suppose the answer could apply to any instance, but I'm mostly referring to this one.

Mind you, I don't have two accounts, but I'm considering it: one for memes, the other for serious discussion.

But I'm unsure if that's considered bad form by most people, so I thought I'd ask.

Thanks!

 


EDIT: Also, come to think of it, even if it were okay, would it even be possible to have to be logged into two separate accounts on the same instance at the same time with the same browser profile? :/

 

Lately, when I load up lemmy.blahaj.zone, the notification bell in the corner of the screen doesn't display a count typically until I load a post or comment.

It's also only a recent thing.

Any idea what might be causing it?

Not sure what other details you might need, so just ask if you think of anything. :)

 

To start off, I just want to say that Kega Fusion is a wonderful emulator for pre–Sega Saturn emulation. However, the fact that it is not open-source concerns me. What if something happens and the person is required to take it down? (Not likely after 14 years but still...) Or hell they just decide to take it down for whatever reason. (Again, not likely after 14 years, but still...)

I still am using it, but it would also be nice to have an alternative if the worst were to happen, or hell just in case there's a person out there who would prefer a different emulator.

Unfortunately, the Megathread is kind of...lacking in this department. In the Sega subsection, it lists three emulators: two for the Dreamcast and one for the Genesis / Mega Drive and below.

So, yeah, does anyone know of any alternatives we could add to the Megathread?

(On the same note, I'd also like to add that Yabause seems a decent enough emulator for the Saturn, none of for which are included on the Megathread. (Not sure if my syntax was correct there... :/ ))

 

I remember back in the day the emulator Snes9x was one of the best emulators for Super Nintendo emulation, but it's not on the Megathread. Is it no longer trustworthy or was it just missed?

Sorry if this was already asked in this community. I would've searched but Lemmy (or at least my Lemmy instance, I suppose) doesn't seem to have a search function for intra-Community searching.

Cheers.

 

Howdy, y'all. :)

So, within the last couple of days or so, I've been having this problem where if I click on the notification bell, then the chain icon next to a shown reply, then click "Show context" above the horizontal rule (see screenshot), it doesn't proceed to load the context. Rather, it just reloads the same page.

The strange thing is this doesn't happen with every notification. Another notification I had was from here on the Blahaj Lemmy instance, and that worked fine. Maybe it's a thing to do with federation protocols? Anyway, I'm no expert. I just thought I'd ask. :)

Cheers.

 

Hello.

I'm extremely tired, so it very well could be that this is extremely simple and I'm just not getting it. However, what I would like to know is how to open a post from a community on one instance on another instance.

For example, here's a recent post from !asklemmy@lemmy.ml. I know that to open that community in the instance lemmy.blahaj.zone, I would merely type into the address bar

lemmy.blahaj.zone/c/asklemmy@lemmy.ml

However, how would I open that particular post in that community on the latter instance? Is it even possible?

Cheers.

 

P.S.

I did do some searching on both this community as well as the Reddit Lemmy FAQ page but I didn't find anything. However, I could've missed something. If it's something obvious, I apologize in advance.


Edit: Assuming I understand what people are saying, well, evidently, it seems to be a current limitation of the ActivityPub protocol. Perhaps that will change one day. Hopefully soon. ¯\_(ツ)_/¯

view more: next ›