There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

lemmy.ml

MJBrune , to programmerhumor in No one is immune from this

Wikipedia states: “In July 2023, communication with Voyager 2 was lost when flight control pointed its antenna away from Earth, moving it by 2 degrees away from Earth. The NASA dish antenna in Canberra is being used to search for the space probe and will be used to saturate its location with commands to re-align the probe’s antenna in an attempt to re-establish the radio link. If NASA fails to contact the probe, it is expected that an automatic system on Voyager 2 will direct its dish toward Earth in October 2023.”

MJBrune ,

So essentially someone probably wanted to move it one way and it moved the other. It should automatically reposition itself in contact with NASA in 2 months. It’s amazing the foresight we had in 1977 to write in all sorts of catch-alls… In 2 months we’ll get back in contact with the probe and it will have its own place, hanging out with aliens.

Sibbo ,

Great that they included these automatic hardware resets. Way to go if your computer will never see a human or human-made thing ever again

Sebbie , to programmerhumor in Made me double backed for a second
@Sebbie@kbin.social avatar

I'm a librarian who orders books for this section. It is really weird to go from UFOs and Bigfoot to programming with php and Linux books.

A "perk" of Dewey decimal system

bentropy , to technology in is Twitter/X dead?

Who cares? Nobody outside of twitter needs to know if Twitter is growing or shrinking or rebranding or changing or turning into a subscription or anything else. Investor maybe but I hope they have a more reliable source than Elon…

Post screenshot of tweets with relevant content, that’s okay but stop wasting our time with nonsense about Twitter itself.

Somehow we all figured out how to stop talking about Facebook… Let’s just do the same with Twitter.

ME5SENGER_24 ,

I never understood Twitter and I never want to. It’s like that tube machine at the bank. People bundle up a little sentence then shoot it out into the Twittashphere. Why? I’m with you, screenshot something interesting and leave the rest in the dumpster fire where it belongs

unagi , to technology in Twitter’s new X logo wasn’t made by an in-house designer. It’s from an old podcast

For me it’s just the Jagex logo!

FlaxPicker ,

/c/accidentalRunescape

victron ,
@victron@lemmy.world avatar

That’s kinda stretchy

hemko ,

Thought the same

DangerousDetlef , to programmerhumor in No more problem
<pre style="background-color:#ffffff;">
<span style="color:#323232;">> Solved problem no 174 in my software
</span><span style="color:#323232;">> Push to prod, build runs fine, release
</span><span style="color:#323232;">> Finally, all problem solved
</span><span style="color:#323232;">> Relax, weekend, go do stuff with my wonderful wife and kids
</span><span style="color:#323232;">> Monday, back to work
</span><span style="color:#323232;">> 296 new problem
</span>
nothacking , to programmerhumor in Programming Languages

Is python really any better?

superbirra ,

yes

Xylight ,
@Xylight@lemmy.xylight.dev avatar
  • loosely typed: python is the same
  • bad package manager: python is infinitely worse
superbirra ,
  • loosely typed: python is the same

false

  • bad package manager: python is infinitely worse

don’t think so but ehy…

Xylight ,
@Xylight@lemmy.xylight.dev avatar

pip is the bane of my existence

Also python IS loosely typed. take a str and you can reassign it to an int or whatever

min_fapper ,

Yep last time I tried python, it’s type checker was so, so much worse than typescript.

Everyone I’ve met saying python is better turned out not have used modern JavaScript/typescript.

Joe_0237 ,

I’m sure that’s the case, but the meme is not making fun of typescript, its making fun of his dad: JavaScript, maybe for not comparing to his son: typescript

static_motion ,

You clearly have no idea what you’re talking about. Python is strongly typed. What is is is dynamically typed, also known as “duck typing”.

SouthernCanadian ,

Strong typing doesn’t have a widely agreed upon definition. Duck typing is not equivalent to dynamic typing.

jerkface , (edited )
@jerkface@lemmy.ca avatar

Objects have strong, definite types that never change. Variables do not have types and can store [a reference to] any Object.

abraxas ,

You’re right about python being the same. Python doesn’t have a mature alternative to Typescript that launches it into having best-in-class type handling.

There’s so much that my C# devs can’t do with its horrible type system that Typescript “just does better”. At compile-time at least.

I used to work on a hybrid typescript/python product (some services js, some TS, some python), and the TS stuff was just faster-running, easier to iterate, and better. And story-point allocations consistently showed that for an excess of 20 devs working on those codebases.

As for pip/easy_install vs npm/yarn/pnpm… I’m curious what you think pip does well that yarn/npm doesn’t? I’ll say in my work experience there’s more/better enterprise private repository/cache support for node modules than for python modules. Using npm security databases alongside “known good versioning” allows a team of even 100 developers to safely add libraries to projects with no fear of falling out of corporate compliance regulations. I’ve never seen that implemented with pip

Bruce ,

100 developers to safely add libraries to projects with no fear of falling out of corporate compliance regulations.

Depending on the regulations, python virtual envs could make it possible too.

abraxas ,

How so? The companies I worked for were using venv’s but nothing that could help with standards.

Using a private npm repo, I can actually do aninstall of a library I want to use and it’ll refuse to install if that library isn’t already approved for use by the organization, and if it is/does, it will install only the approved version. Further, I still don’t have any of the libraries installed I don’t want (even secure-seeming unnecessary code is a potential risk and unnecessary). The last 2 places I worked that used python used venv’s, but the pip requirements.txt file was still fairly hard to keep regulated.

Bruce ,

From approved environments: pip freeze > requirements.txt ?

abraxas ,

So let’s say I want to add a library not currently being used in this project, but that might have been approved for another project in another repo? How does pip freeze solve that problem? Do python users endorse a “every single python app in the entire org should use the same requirements.txt” mindset? Or what am I missing?

pingveno ,

pip/easy_install

Are you sure your knowledge of Python’s package management isn’t out of date? easy_install has been deprecated for years. There are a few mechanisms that the Python community now has for dependency management and installation. My favorite solution is Poetry, which like npm maintains a separate dependency (pyproject.toml) and lock (poetry.lock) file.

abraxas ,

I didn’t think anyone was using easy_install anymore, but I still see it in docs for stuff.

Poetry looks interesting, but does it support private-only dependencies, where the system will reject a library or version if it has not been previously approved and cached?

pingveno ,

I think this is what you’re looking for, where you can configure both the resolution order and whether to just pull from a private repository.

abraxas ,

Ah, yeah. Pretty awesome. Looks like they added that in 2019. I wonder why I’ve not seen that behavior used much at all.

Is there also good repo-mirror functionality to keep it easy to curate the private source?

pingveno ,

I’m not sure why it’s not done as much. But yes, there’s tooling to maintain a mirror. I’m not sure about quality, since I haven’t done it myself.

ComradeKhoumrag ,
@ComradeKhoumrag@infosec.pub avatar

Python is as inefficient as js is ugly

LeFantome ,

Well done.

That is like a colleague farewell card that says, “Four years already? It seems like only six months with all that we have accomplished.”

Rodeo ,

Afaik JavaScript only runs in a browser. If you want to make a desktop app your only option is something like electron.

For example, you can’t make the equivalent of a bash script with JS, but it’s trivial with python. I don’t think you can do system calls at all with JS.

vithigar ,

There are non-browser JavaScript implementations, the most well-known of which is node.js

nothacking ,

Nodejs is a works great for that.

aniki , to linux in PSA: the OpenStreetMap-community has arrived to Lemmy as well

All hail OSM!!!

OSMAnd has literally saved my life when my Garmin died and my hiking buddy’s phone also died and I remembered I had saved off-line maps for the state we were in and could traveling-salesman our way out of the mountains safely.

ToNIX ,

OSMAnd is pretty nice, but Organic Maps is just way better IMHO.

ultranaut ,

Better how? I’ve only played around with OSMand a little but it seems very full of features and options.

randomname01 ,

That’s its strength and its weakness imo; the UI is not as clear as the Organic Maps’, and it feels relatively cluttered.

Also, Organic is both gratis and libre, while OsmAnd is subscription based on iOS. It is a one time purchase on Android though, but that still means the full app isn’t gratis.

Sheltac ,

I don’t mind paying for an app, but fuck subscriptions. It’s dirt cheap and all, but I still won’t pay for it.

I’ll have a look at Organic though, that sounds right up my alley. If it’s open source, I can even have a look at raising a PR or two to pay them back.

ToNIX ,

Organic Maps is indeed open source and available through f-droid/GitHub/Telegram.

It’s actively developed and it’s UI is more easier to use than OSMAnd. The search accuracy is also way better than in OSMAnd, in which I often can’t find places.

tsyesika ,

You can get OsmAnd for free through fdroid on android.

Zoidsberg ,
@Zoidsberg@lemmy.ca avatar

I can never get search to work. I can find addresses on the map, but when I type them in nothing comes up.

animist , to programmerhumor in Shakespeare quotes

Was this from when he was writing otHello World

Black_Gulaman , to til in TIL lemmy.ml is a pro-authoritarian CCP shill instance
@Black_Gulaman@lemmy.dbzer0.com avatar

TIL, you’re late to the party.

Everybody knows.

fsxylo ,

I didn’t know, so I’m glad they made the post.

Magister ,
@Magister@lemmy.world avatar

Yup, this is why I joined beehaw when the shit hits reddit early June.

TheMauveAvenger ,

Beehaw is just another flavor of echo chamber.

Magister ,
@Magister@lemmy.world avatar

Yup, and when Beehaw defederated lemmy.world, I created an account on lemmy.world even if there is some craziness here it looks like good and funny crazyness 🤪

FlyingSquid , to technology in Windows 10 is EOL in October 2025
@FlyingSquid@lemmy.world avatar

Oh fucking great. My daughter’s online school requires her to run “Windows 8 or greater,” but we got her a used laptop that can run 10 to make sure it can keep up with security updates. I don’t even know if it is powerful enough to run 11 because I didn’t even consider the possibility when I bought it. Now we’re going to have to buy a new one in a couple of years?

Fuck you Pierson and Microsoft.

barsquid ,

deleted_by_author

  • Loading...
  • FlyingSquid ,
    @FlyingSquid@lemmy.world avatar

    If I could afford a lawyer, I wouldn’t be concerned about having to buy a new notebook for her.

    737 ,

    Pirate Windows 10 Enterprise LTSC for support until 2027

    FlyingSquid ,
    @FlyingSquid@lemmy.world avatar

    Thanks, I’ll look into that. I appreciate it!

    Killer ,

    You can use massgrave to activate it, microsoft support has been caught using it to activate windows on customers computers.

    frostmore ,

    massgeave activation is new to me.

    is that paid?

    Tixanou ,

    It’s free!

    Dougtron007 ,

    Most laptops that ship with windows 10 are capable of running 11. I recommend finding out if the schools provides a license. When I was attending Phoenix online a couple years ago they supplied me with a windows 10 education license through Microsoft.

    FlyingSquid ,
    @FlyingSquid@lemmy.world avatar

    It does not unfortunately.

    Dark_Arc ,
    @Dark_Arc@social.packetloss.gg avatar

    Do they actually require it or do they “require” it.

    A lot of things that are browser based “require” Windows or Mac but don’t actually require it.

    FlyingSquid ,
    @FlyingSquid@lemmy.world avatar

    I don’t particularly care to risk my daughter’s education by trying to figure that out.

    Dark_Arc ,
    @Dark_Arc@social.packetloss.gg avatar

    Oh christ…

    refalo ,

    lmao

    bufalo1973 ,
    @bufalo1973@lemmy.ml avatar

    Get a live-USB and check it. Maybe you get a surprise.

    bufalo1973 ,
    @bufalo1973@lemmy.ml avatar

    Get a live-USB and check it. Maybe you get a surprise.

    TheOctonaut , to memes in Union Strong

    The fuck does “won their union” mean?

    Zip2 ,

    I think it’s colonial for “won the right to form a union” perhaps?

    Faydaikin ,
    @Faydaikin@beehaw.org avatar

    And until OP answers, we’ll never know. (Given that OP actually knows how unions work)

    OneOrTheOtherDontAskMe ,

    Won the vote to organize a union, something that has to be done in the U.S.

    TheOctonaut ,

    “Please sir, may I resist?”

    OneOrTheOtherDontAskMe ,

    I think it’s more to do with that if the collective workers vote to become a union or not, and succeeds in that vote, then the owner/company must recognize them as the union and engage in negotiations as such.

    If the vote of the workers fails to choose to unionize…well usually that means the people who tried to organize it get fired because there’s no union

    FiskFisk33 ,

    I don’t know of any country where that right was put into place by asking nicely…

    usualsuspect191 , to memes in The United States be like, "Who are you voting for?"

    Both sides, amIright?

    PaX , to piracy in I'll never understand this kind of mindset.
    @PaX@hexbear.net avatar
    applepie ,

    I am with this person

    Fuck_u_spez_ ,

    I’m pretty sure that’s actually a fish.

    Blisterexe , to memes in Music from the browser

    Note that this meme is a reference to that one Firefox user, and Firefox doesn’t let the tab music thing happen, it auto-mutes background tabs (in a way where it doesn’t do it when you want background audio to play)

    TrickDacy ,
    @TrickDacy@lemmy.world avatar

    Uh what?

    Firefox has to my knowledge never done this. It absolutely doesn’t do it currently. And like chrome it provides an icon on tabs playing sound so you can easily mute it with one click.

    arudesalad ,

    I think they meant that it doesn’t start playing until you select the tab. If a video tries to start playing in a background tab, Firefox won’t let it, but it won’t stop videos that are already playing

    Blisterexe ,

    Yeah that is what I mean, thank you for clarifying

    TrickDacy ,
    @TrickDacy@lemmy.world avatar

    Ah gotcha

    toastal ,

    Fx has a sound icon on the tab too

    TrickDacy ,
    @TrickDacy@lemmy.world avatar

    I just said that

    MsFlammkuchen , to programmerhumor in SQL statement

    MIND IF i JOIN you

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines