andioop

joined 2 years ago
[–] andioop 1 points 5 days ago

I made a burner gmail semi-recently (in past 2.5 years) without giving them a phone number, but things might have changed since…

[–] andioop 3 points 1 week ago (1 children)

Hope you're being facetious, if your spouse genuinely doesn't respect your time and need for silence at certain times that sounds like a relationship issue.

[–] andioop 2 points 1 week ago (2 children)

Curious if you found the documentation on the Godot website insufficient. Dipping my toes into Godot for the first time here. I learn well by example.

[–] andioop 1 points 1 week ago

That's exactly what I got too

[–] andioop 12 points 1 week ago* (last edited 1 week ago)

I was tagged, immediately clicked to see the link so I could report abuse, and got a 404. Very fast response. I appreciate that and the message Codeberg sent out that OP posted here. Came to p.d to see if anyone posted it yet.

[–] andioop 0 points 1 week ago* (last edited 1 week ago) (1 children)

Users can subscribe to a hidden community to remove the hidden effect status of a community

So if a user subscribes to a hidden community, it will not be hidden for them anymore. But will it be unhidden for everyone else too? Would it start showing up in local feeds?

[–] andioop 2 points 1 week ago

I saw someone saying AI "Apparently AI goes hand in hand with wokeism."

Meanwhile, I've seen quite a few complaints from the types this person dismisses as "woke" about AI. Is there more left-leaning approval from AI than I think there is, and more right-leaning disdain for it than I think there is?

[–] andioop 9 points 1 week ago (10 children)

Usually people who explain "woke" in such a manner seem to be the types who are actively hostile to LGBTQ+. There are a few LGBTQ+ people who do make it their entire identity instead of one facet of themselves and I understand how annoying that can be, but at this point I'm a lot less likely to believe "this is someone who turns 'How is the weather today?' with a stranger into a trans rights discussion" and more likely to believe "this person just hates trans people and is trying to frame the trans person poorly so I resent the trans person and not them."

[–] andioop 14 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

Adult woman checking in. Aside from the feet in the air, this is my preferred programming posture! I hold this position easily for hours before getting sore elbows.

I am also small and a young adult not too many years away from teenagerhood. I hope your comment never becomes true for me with age. Looks like as long as I just maintain weight I should probably be safe, my shoulders are not getting any wider any time soon.

[–] andioop 36 points 3 weeks ago (4 children)

What is this a screenshot of?

[–] andioop 12 points 3 weeks ago (2 children)

I once saw something about how if you are trying to build it yourself instead of using a pre-existing library you come off arrogant.

Can I build it better? Probably not. But do I want to deal with a dependency in my fun side project (unfun), when I could just build it myself (fun)? No.

I probably should to get more practice with it so it is less painful, but…

 

Source

Transcript:

10 things that block your Happiness

  1. Self-hatred
  2. Not being able to let go of the past.
  3. Not being able to forgive yourself.
  4. Not being able to value who you are.
  5. Assuming RAID is backup.
  6. Not making backups.
  7. Not verifying backups and finding out restore time.
  8. Needing other people to validate you.
  9. Letting other people define who you are.
  10. Trying to be perfect and to please everyone.
17
submitted 4 months ago* (last edited 4 months ago) by andioop to c/[email protected]
 

I did try to read the sidebar resources on https://www.reddit.com/r/DataHoarder/. They're pretty overwhelming, and seem aimed at people who come in knowing all the terminology already. Is there somewhere you suggest newbies start to learn all this stuff in the first place other than those sidebar resources, or should I just suck it up and truck through the sidebar?

EDIT: At the very least, my goal is to have a 3-2-1 backup of important family photos/videos and documents, as well as my own personal documents that I deem important. I will be adding files to this system at least every 3 months that I would like incorporated into the backup. I would like to validate that everything copied over and that the files are the same when I do that, and that nothing has gotten corrupted. I want to back things up from both a Mac and a Windows (which will become a Linux soon, but I want to back up my files on the Windows machine before I try to switch to Linux in case I bungle it), if that has any impact. I do have a plan for this already, so I suppose what I really want is learning resources that don't expect me to be a computer expert with 100TB of stuff already hoarded.

45
Pokémon GO notification (programming.dev)
submitted 4 months ago by andioop to c/software_gore
 
43
submitted 6 months ago* (last edited 6 months ago) by andioop to c/linux
 

Local dummy here (slightly more technical than the average user, likely far less than most people in this community) considering switching over. Checked the sidebar for any beginner's resources and looked at a few of the top posts and saw mostly Linux news and stuff meant for people already using the OS.

For my specific case, I use a Mac as my daily driver and (heresy) I am happy, but I also have a Windows computer that I am thinking of switching over to Linux. I use it to play games my Mac can't, and to run [email protected] (I do not run the community but the thing the community is about) and/or Folding at Home whenever I'm not using it to game. Some of them are Steam games, some indies not on Steam, some emulated. Little to no multiplayer games, and absolutely no multiplayer that has anticheat. I have tried running some of the Windows-exclusive games with WINE and they worked but ran extremely slowly, however that was done on my Mac so it may not represent the results of running WINE on Linux.

19
submitted 6 months ago* (last edited 6 months ago) by andioop to c/learn_programming
 

I just spent an hour searching for how I could have gotten an

Uncaught TypeError: Cannot set properties of null

javascript. I checked the spelling of the element whose property I was trying to set and knew that element wasn't null because the spelling was the same in the code as in the HTML. I also knew my element was loading, so it wasn't that either.

Turns out no, the element was null. I was trying to set " NameHere" when the element's actual name was "NameHere".

Off by a single space. No wonder I thought the spelling was the same—because all the non-whitespace was identical. (No, the quotation marks slanting in the second NameHere and being totally vertical in the first NameHere wasn't a part of the error, I am typing them all vertical and either Lemmy or my instance is "correcting" them to slanted for the second NameHere. But that is also another tricky-to-spot text difference to watch out for!)

And what did not help is that everywhere I specifically typed things out, I had it correct with no extra spaces. Trying to set " NameHere" was the result of modifying a bunch of correct strings, remembering to account for a comma I put between them, but not remembering to account for the space I added after the comma. In short, I only ever got to see " NameHere" written out in the debugger (which is how I caught it after like 30 repeats of running with the debugger), because everywhere I had any strings written out in the code or the HTML it was always written "NameHere".

I figured I'd post about it here in case I can help anyone else going crazy over an error they did not expect and cannot figure out. Next time I get a similar error I will not just check spelling, I'll check everything in the name carefully, especially whitespace at the beginning and end, or things one space apart being written with two spaces instead. Anyone else have a similar story to save the rest of us some time?

 
 

Besides some of the very, very obvious (don't copy/paste 100 lines of code, make it a function! Write comments for your future self who has forgotten this codebase 3 years from now!), I'm not sure how to write clean, efficient code that follows good practices.

In other words, I'm always privating my repos because I'm not sure if I'm doing some horrible beginner inefficiency/bad practice where I should be embarrassed for having written it, let alone for letting other people see it. Aside from https://refactoring.guru, where should I be learning and what should I be learning?

 

I like browsing Local here because of that.

39
What language is this? (programming.dev)
submitted 6 months ago* (last edited 6 months ago) by andioop to c/software_gore
 
8
submitted 7 months ago* (last edited 7 months ago) by andioop to c/[email protected]
 

I read something about once-reliable sites that would tell you the best [tech thing] now not giving legit reviews, being paid to say good things about certain companies, and I do not remember where I read that or which sites, so I figured I'd bypass the issue and ask people here. I'm pretty new to anything near the level of complexity and technical details that I see on datahoarder communities. I know about the 321 backup rule and that's it. This is me trying to find something to hold copy 3 of my data.

113
Technically right…? (programming.dev)
submitted 7 months ago by andioop to c/software_gore
 

You'd think they'd just get rid of the indicator after I show up, or the day after the appointment, instead of leaving it there and saying I have -1 days left until it happens…

view more: next ›