@c0dec0dec0de@hachyderm.io
@c0dec0dec0de@hachyderm.io avatar

c0dec0dec0de

@c0dec0dec0de@hachyderm.io

“Incredibly mediocre” dude. Programmer. Bad with words. Enthusiastic cat-botherer.
:debian_logo: :git_logo: :iterm2_logo: :vim:

This profile is from a federated server and may be incomplete. Browse more on the original instance.

clarjon1, to random
c0dec0dec0de,
@c0dec0dec0de@hachyderm.io avatar

@clarjon1 I need to know if there’s a Shellac-like thing you can spray on there and still be food- and, hopefully, dishwasher-safe.

futurebird, to random
@futurebird@sauropods.win avatar

I just read the most baffling, troubling, disturbing, pretty good sci-fi story about AI and I’ll write about it later— but I have … thoughts. Basically it’s the opposite of a Frankenstein story for AI. And I do think we have a duty to imagine both utopias AND distopias. If a coming technology is inevitable— but I’m still a bit disgusted with the story— can’t shake that feeling of being lead down a garden path to my execution.

c0dec0dec0de,
@c0dec0dec0de@hachyderm.io avatar

@futurebird look forward to reading your thoughts on this! (finally reading the story)

bruces, to random
@bruces@mastodon.social avatar
c0dec0dec0de,
@c0dec0dec0de@hachyderm.io avatar

@ServerWrestler @bruces Yes, but I also don’t know that I can stand to read dystopian fiction at the moment.

finux, to random

True story!

c0dec0dec0de,
@c0dec0dec0de@hachyderm.io avatar
Lockdownyourlife, to tech

deleted_by_author

  • Loading...
  • c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @JessTheUnstill @Lockdownyourlife @ncweaver ASUS routers also make it pretty easy to set up guest wifi networks. And add me to the list of professionals equipped to do these things but just not motivated to.

    GossiTheDog, to random
    @GossiTheDog@cyberplace.social avatar

    deleted_by_author

  • Loading...
  • c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @GossiTheDog you should CW cognitohazards before posting

    yosh, to random
    @yosh@toot.yosh.is avatar

    TIL statics don’t run destructors on program termination, as if I needed another reason not to like them.

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @yosh @ekuber @sunfish oh, right, of course you can do this. It’s probably simpler in fact than the more usual case I see (tokio::main).

    est, to random
    @est@emily.news avatar

    has anything replaced sloc yet? it is unmaintained https://github.com/flosse/sloc

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @est UCC exists (I don’t recommend)

    jace, to random
    @jace@mstdn.ca avatar

    This literally just happened to me on Tinder 😂.
    I'm getting too old for this shit.

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @jace good ol’ Liz Lemon.

    futurebird, to programming
    @futurebird@sauropods.win avatar

    Did you know in python you can stick a for loop in the list brackets and just BAM have a list? No “append” check it:

    l=[chr(i+65) for i in range(0,26)]
    print(l)

    > [‘A’, ‘B’, ‘C’, … , ‘Z’]

    (it will be the letters A-Z since the unicode for the capital letter starts at 65, chr renders these numbers as letters.)

    Is that classy? For some reason this neat little feature isn’t really taught. I guess with a loop and appending you have not flexibility— but still this is cool.

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar
    charliejane, to random
    @charliejane@wandering.shop avatar

    CONSERVATIVES: Corporations are people and deserve free-speech rights

    CORPORATIONS: Trans people exist

    CONSERVATIVES: Not like that

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @patrickgillam @charliejane I want to say this is context sensitive? When a company acts, they. If the legal portion of the company is acted upon, it. If the personnel are primarily impacted upon, they (again).
    Just an off-the-cuff thought.

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @woozle @patrickgillam @charliejane in America. In England, they have Plc; Germans have AG; and so on.

    obfuscurity, to random

    I call for a moratorium on any AI related topics in tech conference talks for the rest of the year.

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @mattstratton @obfuscurity I move that we adopt this rule at our earliest convenience next year

    hacks4pancakes, to random

    TSA: eyes my backpack basically just full of multiple sticker-coated laptops, family pack protein bars, fiber powder, and dried cocktail garnish both sympathetically and warily

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @homelessjun @hacks4pancakes I wondered this last time I traveled by air with three laptops and a bunch of jury-rigged custom electronics that we were going to demo to a potential customer.

    daemionfox, to random

    Hey, @ksonney @snipe and anyone else who's done any kind of mucking w/ Docker. Got a weirdness. We have a setup where we're using docker via Jenkins for load testing, running selenium hub and pytest. The weirdness is this. AS SOON AS one of the tests complete, it shuts all of the containers off. It's very confusing to me.

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @daemionfox @ksonney @snipe what in the hell? What kind of pipeline gives you that behavior?

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @daemionfox @ksonney @snipe weird, I use multi-stage, multi-container Jenkins jobs routinely, and I’m not sure why that would happen. Are you doing these things in parallel?

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @daemionfox @ksonney @snipe does that process ends with a nonzero status? I can see that triggering clean-up depending on some other factors.

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @daemionfox guessing that the hub should be outside the rest of your parallel steps with the rest nested within its withRun() block to guarantee that it lives long enough for all the other things to finish. I don’t know enough about selenium to say whether the chrome containers need to outlive the clients (probably?).

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @daemionfox I haven’t used Compose in Jenkins. Are you just running a shell step then that invokes docker-compose up? And running the same command on a developer machine goes to completion?

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @daemionfox well, that’s super weird then because I would think that Jenkins would wait for your whole command to exit (which might be never with docker-compose up).

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar
    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @daemionfox if you’re detaching (using the -d flag for compose), then Jenkins doesn’t care about the daemon process at all and will just keep running your pipeline. If you’re in a spun up VM or using Docker-in-Docker, I guess that’ll clean up for you, but it might do it really early. Waiting explicitly for your client containers to exit would let Jenkins know when you’re actually ready to have the test cleaned up.

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @daemionfox good luck

    c0dec0dec0de, to random
    @c0dec0dec0de@hachyderm.io avatar

    Applied to three more jobs. Would be pretty excited about at least one of them.

    luna, to random

    renaming primary git branch from master to...
    ❌ main
    ✅ mistress

    c0dec0dec0de,
    @c0dec0dec0de@hachyderm.io avatar

    @nasamuffin @luna you’d better be if you don’t want all your builds to break

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • rosin
  • thenastyranch
  • GTA5RPClips
  • tester
  • InstantRegret
  • DreamBathrooms
  • ngwrru68w68
  • magazineikmin
  • everett
  • Youngstown
  • mdbf
  • slotface
  • kavyap
  • JUstTest
  • cisconetworking
  • khanakhh
  • normalnudes
  • osvaldo12
  • cubers
  • tacticalgear
  • Durango
  • ethstaker
  • modclub
  • anitta
  • provamag3
  • Leos
  • lostlight
  • All magazines