• 0 Posts
  • 13 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle

  • Sounds reasonable, but a lot of recent advances come from being able to let the machine train against itself, or a twin / opponent without human involvement.

    As an example of just running the thing itself, consider a neural network given the objective of re-creating its input with a narrow layer in the middle. This forces a narrower description (eg age/sex/race/facing left or right/whatever) of the feature space.

    Another is GAN, where you run fake vs spot-the-fake until it gets good.


  • Backstage has become quite misaligned to what we were originally trying to do. Originally, we were trying to inventory and map the service eco-system, to deal with a few concrete problems. For example, when developing new things, you had to go through the village elders and the grape vine to find out what everyone else was doing. Another serious problem was not knowing / forgetting that we had some tool that would’ve been very useful when the on-call pager went off at fuck you dark thirty.

    A reason we could build that map in System-Z (the predecessor of Backstage) is that our (sort of) HTTP/2 had a feature to tell us who had called methods on a service. (you could get the same from munging access logs, if you have them)

    Anyway, the key features were that you could see what services your service was calling, who was calling you, and how those other systems were doing, and that you could see all the tools (e.g. build, logs, monitoring) your service was connected to. (for the ops / on-call use case)

    A lot of those tool integrations were just links to “blahchat/#team”, “themonitoring/theservice?alerts=all” or whatever, to hotlink directly into the right place.

    It was built on an opt-in philosophy, where “blahchat/#team” was the default, but if (you’re John-John and) you insist that the channel for ALF has to be #melmac, you can have that, but you have to add it yourself.

    More recently, I’ve seen swagger/openapi used to great effect. I still want the map of who’s calling who and I strongly recommend mechanicanizing how that’s made. (extract it from logs or something, don’t rely on hand-drawn maps) I want to like C4, but I haven’t managed to get any use out of it. Just throw it in graphviz dot-file.

    Oh, one trick that’s useful there: local maps. For each service S, get the list of everything that connects to it. Make a subset graph of those services, but make sure to include the other connections between those, the ones that don’t involve S. (“oh, so that’s why…”)


  • Ok, TIL there’s a thing called Required, but otherwise, one way to do this is to rename the other part/field/key(s), so that old code reveals itself in much the same way as using a deleted field (because it does, actually)

    Another way is explicitly have a separate type for records with/without the feature. (if one is a strict subset, you can have a downgrade/slice method on the more capable class.

    Lastly, I would say that you need static typing, testing, both. People from static-land get vertigo without types, and it does give good night sleep, but it’s no substitute for testing. Testing can be a substitute for static typing in combination with coverage requirements, but at that point you’re doing so much more work that the static typing straight jacket seems pretty chill.


  • aes@programming.devtoMemes@lemmy.mlRent is Robbery
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    8 months ago

    Well, there’s some timeless advice on these topics, right? The simplest is: be likeable. The reason is that since you can’t accomplish the task on your own, you need people to take your side, and to do that you need them to want you win, whatever the arguments. (“that’s dumb, my argument is better”. Yeah, maybe, but if people don’t like you, that won’t matter)

    Another, more focused on societal change is: Move the middle. The middle of the bell curve is where most of everything is, and moving it, even slightly, can have dramatic effects. Also, if you want get anywhere, getting going at all is probably a good move, right? I’m thinking specifically of sorting recycling: it’s mostly bullshit, but the bizdev bros would murder for that kind of ‘engagement’. It’s easier to sell everyone on next step when they’re already on board…

    Or, you know, rant about revolution. It’s not going to change anything, but it might make you feel better.


  • aes@programming.devtoMemes@lemmy.mlRent is Robbery
    link
    fedilink
    arrow-up
    6
    arrow-down
    3
    ·
    8 months ago

    What part of 25% below market makes you compare him to the food oligopoly? He likes trouble-free tenants, and I’m pretty sure his tenants like this arrangement too. By contast, you come off as very tiresome. Do you have any skin in the game? What are you doing to help make housing affordable? Do you do anything besides exemplify why having revolutionaries in charge would be terrifying?



  • Well, I guess I have two thoughts on that. For one, what you’re probably thinking of is seen as basically qanon freaks. The other is that of course there’s a political right, and of course there is a social conservative current.

    The right has traditionally been a coalition of liberals and conservatives, but the Christian conservatives are actually Christian. (They command a certain degree of respect, even though I don’t agree)

    As for the social conservatives, they’re to a large degree absorbed by either the traditional social democrats (or “total autocrats” as I like to call them) or the nazis.

    The WHAT?

    Yes. The left was so busy suppressing racism (real) that they made it basically impossible to have adult conversation about the problems inherent in eliminating low-education jobs and, at the same time, accepting a lot of illiterate refugees. And as the reality of taking from the middle class boomers (who strongly identify as working class) to fund the result, the nazis were there, and they’re scary huge now.

    Idk, there’s a lot to unpack and explain here, and I’m sure others have other angles, so I’ll leave it at that.





  • It was harder to explain why picking on Python for this is dumb, before gotofail… (Not saying that’s what you’re doing, but it feels close, so this is relevant.)

    For whitespace, my rule is this: If any level of indentation depends on the length of any word or name, you’re doing it wrong. If using a more descriptive name causes indentation where previously there was none, that’s fine, but if moving the opening parens causes the interior to be indented more, less so. (Yes, Golang’s structs)