ericbomb

joined 2 years ago
[–] ericbomb@lemmy.world 53 points 7 months ago (5 children)

Okay but that is adorable and true XD

The old internet taught us so many random skills. I couldn't type on a keyboard for jack until I got into MMO's back in the day, because it was pre voice comms. So I learned to type faster so I would struggle less XD

[–] ericbomb@lemmy.world 8 points 7 months ago (1 children)

Haha, they have been trying to tell Twitter to do things, with some law suits out.

Which is why members of the US government are now threatening to leave NATO if they continue to bully twitter, since Elon is in charge of a quarter of our government.

[–] ericbomb@lemmy.world 1 points 7 months ago

I mean, how would you like them to monetize?

What they are planning sounds similar to discord nitro, which I think is fine.

[–] ericbomb@lemmy.world 24 points 7 months ago (1 children)

Also in the article: " Regnier said the commission, the EU’s executive arm, had written to the 27 national governments to see “if they can find any trace of Bluesky” such as identifying a EU-based office. It has not yet contacted the company directly, he added. "

Like this is so nonsensical. Talking to press about a company having broken a rule even though they are not under your jurisdiction, but you haven't bothered to contact yet, is just wild.

If they reached out and said "Hey, before you reach these metrics you need to fulfill these requirements" and bluesky told them to pound sand, that'd be good to know.

But "Company who doesn't have to follow a rule is not following the rule, and we'd like them to, but haven't told them we'd like them to" is not news.

[–] ericbomb@lemmy.world 5 points 7 months ago (3 children)

From the article (different paragrpahs) " “All platforms in the EU . . . have to have a dedicated page on their website where it says how many users they have in the EU and where they are legally established,” said commission spokesman Thomas Regnier. “This is not the case for Bluesky as of today. This is not followed.”

Regnier said the commission, the EU’s executive arm, had written to the 27 national governments to see “if they can find any trace of Bluesky” such as identifying a EU-based office. It has not yet contacted the company directly, he added.

"The commission cannot regulate Bluesky directly as it does not yet reach the threshold of more than 45mn monthly users in the EU to be designated a very large online platform. But Regnier said that if member states could identify a EU-based representative for the company, Brussels would “reach out to Bluesky”." "

The head line is nonsense. They are not in the EU and they don't have over 45 million users in the EU. So the rules in no way apply to them.

[–] ericbomb@lemmy.world 2 points 7 months ago

It says loved ones I'm afraid, can't sacrifice one in prison I'm afraid.

[–] ericbomb@lemmy.world 4 points 7 months ago (1 children)

Ugh that probably kills night vision of drivers.

It's so annoying that even with obvious safety changes we can't get people on board. Like just getting people to not have overly bright lights that blind folks some how is so hard, when that seems so simple.

[–] ericbomb@lemmy.world 1 points 7 months ago (1 children)

That's just sad for a lot of reasons.

[–] ericbomb@lemmy.world 2 points 7 months ago (1 children)

Ugh we could probably talk all day about all the things the government intervened on for perceived dangers, and just ban something random to make it look like they addressed the thing.

If I go up to a politician and say "I need your help to ban a product that has killed 20,000 people this year! Will you take my cause?"

They'd act super enthusiastic until I say it's private pick up trucks.

[–] ericbomb@lemmy.world 10 points 7 months ago* (last edited 7 months ago) (7 children)

Hah, your 10% is terrifying realistic.

Over 40,000 people die per year from motor accidents in the US.

9/11 was 3k.

But for some reason trying to convince people that we need to treat our car culture like an emergency of the utmost importance and priority the same way we would react to another country murdering random people like 9/11 and I'm being crazy.

[–] ericbomb@lemmy.world 4 points 7 months ago* (last edited 7 months ago) (1 children)

Or that none of their neighbors are narcs!

This is funny and they are just right.

[–] ericbomb@lemmy.world 4 points 7 months ago

I mean, if we care about confused and distracted drivers I have a LONG list of things I would put over caring about before this.

An extra street sign wouldn't register on my worry list.

 

So my entire life has been extreme boredom, followed by finding a book/videogame/hobby I find interesting, doing nothing but that for awhile, then never touching it again.

I'm debating maybe trying to make a rule of not doing something two days in a row. Like I just found a video game I liked and played it all day yesterday and today, and while I still wanna play I already feel its shininess wearing off.

Curious if anyone else has tried to space out their dopamine buttons and if it helped. So maybe like instead of just playing the same game tomorrow, I'll need to try other games, or maybe try to find a new book series to hyper focus on...

 

So I'm a database engineer taking some computer science courses and got an assignment to write about symbol resolution. The only reference to it I could find was this https://binarydodo.wordpress.com/2016/07/01/symbol-resolution-during-link-editing/ then a stack over flow of someone asking a similar question to this. I took that to mean "Linking names of any variable, object, etc. in a program to the object in memory" and rolled with that. Hoping someone can clarify if my understanding is correct! Would ask teacher, but weekend and wanting to get this done today.

Here is what I wrote so far.

Symbol resolution is the task of taking something that was referenced by name in a program, and connecting it to the specific item in memory. In a program you can call functions in the program, functions in other programs, objects already created, variables, or even variables created by other objects. All those items are going to exist in memory, on the hard drive, or might be moved to the registrar of the CPU. Symbol resolution is the converting of the names of the items in the program to pointers the computer can use to modify it whenever that name is referenced. When you update a variable, it will need to know where in RAM it is stored, and converting the name of the variable to that address everywhere it is referenced is the process of finding it. Effectively binding an address in memory to that reference.

By doing this, software can work with the exact same variables multiple times, as it it looking in the same place. If a variable is updated, it will know as it’s looking in the proper place in RAM. When working with Object Oriented Programming, it is what defines the differently named objects of the same class as separate parts of memory. Object A of Class Object1 will be bound to a different bit of memory than Object B of Class Object2.

When it goes through resolving symbols, it has to do it in the same order every time, otherwise the programs would run inconsistently. In python for example, it follows the LEGB rule (Scope Resolution in Python | LEGB Rule, 2018). So when trying to find if a variable is the same as another variable, it goes in order of Local, Enclosed, Global, Built In. So it tries to match the reference to anything local, anything in the function, anything global, then tries to match any reference to built in keywords or functions.

As an example:


# Global variable
greeting = "Hello"

# Function that uses global variable
def say_hello(name):
    return greeting + ' ' + name

# Another function that has its own local variable with the same name
def say_hello2(name):
    # Local variable 'greeting' shadows the global variable
    greeting = "Good day"
    # Here, 'greeting' resolves to the local variable instead of the global one
    return greeting + ' ' + name

# Main block
if __name__ == "__main__":
    print(say_hello("Alice"))       # Resolves 'greeting' as global
    print(say_hello2("Bob"))         # Resolves 'greeting' as local within greet_formally

We can see we have two variables both called “greeting”, but they hold different values. In this case using symbol resolution it is able to resolve the “greeting” inside of say_hello2 as having the value “Good Day”. Then it resolves “Greeting” inside of “say_hello” as “Hello”, because when looking for where to link it followed the LEGB rule. In say_hello2, we had a local “greeting”, so it connected to that one and stopped looking for a connection, never making it to the Global “greeting”. If we had an external file we connected with “import” it would then check inside the imported file to try to resolve the names of any variables, functions, or objects. By doing it in this order it will always get the same result and have consistent outcomes, which is essential for programs.

Scope Resolution in Python | LEGB Rule. (2018, November 27). GeeksforGeeks. https://www.geeksforgeeks.org/scope-resolution-in-python-legb-rule/

I know it's a longer post, but thank you for your time!

 

My favorite is Bog king from Strange Magic - Has a song talking about how evil he is. But all he does is prevent the spread of dangerous mind control magic, and quarantine people under the effects of said magic. Yes he greatly annoys people doing so, but honestly? If I get hit by a love potion, please quarantine me.

 

Definition: A gaming dark pattern is something that is deliberately added to a game to cause an unwanted negative experience for the player with a positive outcome for the game developer.

Learned about it from another lemmy user! it's a newer website, so not every game has a rating, but it's already super helpful and I intend to add ratings as I can!

While as an adult I think it'll probably be helpful to find games that are just games and not trying to bait whales, I feel like it's even more helpful for parents.

Making sure the game your kids want to play is free of traps like accidental purchases and starting chain emails with invites I think makes it worth its weight in gold.

EDIT: Some folks seem to be concerned with some specific items that it looks for, but I've been thinking of it like this:

1 mechanic is a thread, multiple together form a pattern. It's why they'll still have a high score even if they have a handful of the items listed.

Like random loot from a boss can be real fun! But when it's combined with time gates, pay to skip, grinding, and loot boxes.... we all know exactly what it is trying to accomplish. They don't want you to actually redo the dungeon 100 times. They want you to buy 100 loot boxes.

Guilds where you screw over your friends if you don't play for a couple days because your guild can't compete and earn the rewards they want if even a single player isn't playing every single day? Yeah, we know what it's about. But guilds where it's all very chill and optional? Completely fine.

Games that throw in secret bots without telling you to make you think you're good at the game combined with a leader board and infinite treadmill, so you sit there playing the game not wanting to give up your "top spot"? I see you stupid IO games.

But also, information is power to the consumer.

181
submitted 8 months ago* (last edited 8 months ago) by ericbomb@lemmy.world to c/asklemmy@lemmy.world
 

I do like having games on my phone, but it's always a struggle looking for games with 0 microtransactions. So would like a game I can out right pay for, or one with ads. The ability to disable ads for $5 is chill though.

I've played a lot of games that you can "have fun being f2p" but some days I just get really sick and tired of games I play trying to sell me things every 30 seconds.

So do you guys have any?

If not I may go back to playing GBA games on my phone XD

EDIT: Oh selling like expansions is probably fine if it's legit like a full other game. I'm on android

 

New home owner who has never had to hire a contractor before. Want to have chain link fence replaced and want to have put in white vinyl fence to match connected town home.

It is just a 40 foot length I need replaced and will need to have one gate. As I get quotes, what kind of price should I expect to pay? What's considered fair and what's considered a rip off?

EDIT: Thanks for all the feedback! I think I'm not in the right tax bracket to hire people to do this, so probably going to try to do it myself.

 

So I went to my doctor and was like "yeah my counselor said I should ask about the process to get tested for ADHD because of XYZ"...

He then had to gently explain that a year ago he had referred me to a local pysch for testing because I already took the ADHD assessment.

Anyway, long story short, after doing testing (which I showed up for on the wrong day the first time) I got an official ADHD diagnosis.

 
 

Stolen from Reddit

https://www.reddit.com/r/dataisbeautiful/comments/1ftmkwt/oc_foods_cost_vs_caloric_density/

But I loved it. Also this has Shrimp removed, because it was on the OG chart due to an error and this is an updated version.

EDIT: Here is one for protein! https://www.reddit.com/r/budgetfood/comments/1fp2ytb/foods_cost_per_gram_of_protein_vs_protein_density/#lightbox

 

After months of reminders in team meetings on how to do this properly, supervisors have sicced me on the department.

I have been informed that if the issues continue, supervisors will start pulling people in for chats on why they can't follow directions that were laid out.

Pray I am the only monster you meet, for I am the kindest.

 
 

Eating the proper amount is hard. Eating when you have low time, money, mental energy, or education on cooking is even harder.

This book assumes nothing. Do you know how to turn on your stove? You are properly prepared to use this cookbook.

Just want to share it with more folks!

view more: ‹ prev next ›