EveryMuffinIsNowEncrypted

joined 2 years ago
[–] [email protected] 1 points 2 days ago

Lol, that is funny. xD

[–] [email protected] 1 points 2 days ago

Thanks so much for the suggestions!

Unfortunately, as much as I'd love to try out Yorkshire Tea (I've heard they're amazing), they don't ship internationally, so as I live in the USA, I don't think that's an option for me. :C

[–] [email protected] 2 points 2 days ago

To be fair, although admittedly a nitpick, I will say I never said that the caffeine dehydrated you, just that the teas and tisanes do, the latter of which may or may not have caffeine.

That being said, I looked it up and yeah you're right. The evidence does seem to demonstrate that the diuretic effect of the caffeine in teas not substantial enough to really affect hydration levels.

However, it does lead me to wonder why my body seems to dehydrate if I drink more 2 cups of tea in a day. Like, it doesn't cause me to pee more (at least not more than an equivalent amount of straight water would cause me to pee); my body just dries out.

[–] [email protected] 4 points 2 days ago* (last edited 2 days ago) (5 children)

As an American who wasn't ever raised on tea of any kind (and I don't like coffee) but is starting to really learn to love teas and tasanes (I'm open to suggestions, by the way!), I have to ask: how the hell do you manage to drink 8–10 cups per day without dying of dehydration? If I drink more than 3 cups a day I start to really feel dried out!

[–] [email protected] 24 points 3 days ago (8 children)

I have not once in my entire life heard anyone say it like that. Where are you from? Maybe it's a regional thing...

[–] [email protected] 7 points 3 days ago

sen-tar

"sen-" like "cent" (like 25 cents), and "-tar" like "a tar pit"

[–] [email protected] 3 points 1 week ago (2 children)

You're not wrong.

Threat model. It's all about the threat model.

[–] [email protected] 4 points 1 week ago

Lol this is great. Totally sending this to my spousy. :3

[–] [email protected] 1 points 1 week ago

I think I'll try using that hotkey (or something similar)!

Thanks for the suggestion. ;D

[–] [email protected] 2 points 1 week ago

......Okay, I'm gonna be honest. I don't know how to respond to this.

[–] [email protected] 1 points 1 week ago* (last edited 1 week ago) (2 children)

That is definitely a helpful alternative. Thank you. :)

On a side-note, one rather annoying thing I noticed back in the 2.x days was the inability to set [TAB] as part of a keyboard shortcut (ideally, for switching image tabs). According to this SE thread, it's because of the inherent limitations of GTK2—the [TAB] key is "reserved for the GTK library". However, the thread also said (second comment) that

What really should happen is that the Ctrk-tab is used in a tabbed display to navigate the tabs. Note that Gimp currently uses the obsolete GTK2. Things could be better wit the GTK3 that will be used in Gimp 3.0.

Are you aware if things are indeed any better now that GIMP uses GTK3? Because unless I'm doing it wrong, it still doesn't seem to let me select the [TAB] key in the Keyboard Shortcuts window.

[–] [email protected] 3 points 1 week ago

My vacation. I work in retail, so my job is very stressful and anxiety-inducing.

My vacation technically started a couple hours ago when I clocked out, but it starts in earnest tomorrow when I wake up. :3

 

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 @[email protected] and @[email protected] 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 @[email protected] and @[email protected]. 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.

29
submitted 7 months ago* (last edited 6 months ago) by [email protected] to c/[email protected]
 

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 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.

 

I'm well aware that I can rip most Blu-rays with MakeMKV and then convert to mp4 with Handbrake; however, the former just rips everything raw from the disk so the file size is humongous and the conversion via Handbrake for just a single file is terribly long and puts a lot of strain on my computer.

I've heard that EaseFab LosslessCopy is decent, but they only have a Windows and a Mac version, and I'm unsure how well it'd run under Wine.

I am willing to pay for it, but only as long as it's not a subscription thing. Has to be a one-time payment.

Does anyone know any decent Blu-ray ripping software that fits these conditions and run well on Linux? Specifically, it would be either Pop!_OS or Linux Mint. (I'm still using Windows because I want to figure out some software alternatives before I do so I'm not caught with my pants down, so to speak.)

view more: next ›