home.social

#swdev — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #swdev, aggregated by home.social.

  1. RE: fosstodon.org/@nurkiewicz/1164

    It’s all about the money and it always was. As AI vendors start charging what it actually costs instead of burning VC, this is going to change the story from „we’re gonna fire you for not using enough AI“ to „pleeeease use it only when it really helps“. Turns out, this is something, that well trained engineers can actually do.

    #ai #anthropic #tokenmaxxing #swdev #programming

  2. RE: fosstodon.org/@nurkiewicz/1164

    It’s all about the money and it always was. As AI vendors start charging what it actually costs instead of burning VC, this is going to change the story from „we’re gonna fire you for not using enough AI“ to „pleeeease use it only when it really helps“. Turns out, this is something, that well trained engineers can actually do.

    #ai #anthropic #tokenmaxxing #swdev #programming

  3. RE: fosstodon.org/@nurkiewicz/1164

    It’s all about the money and it always was. As AI vendors start charging what it actually costs instead of burning VC, this is going to change the story from „we’re gonna fire you for not using enough AI“ to „pleeeease use it only when it really helps“. Turns out, this is something, that well trained engineers can actually do.

    #ai #anthropic #tokenmaxxing #swdev #programming

  4. RE: fosstodon.org/@nurkiewicz/1164

    It’s all about the money and it always was. As AI vendors start charging what it actually costs instead of burning VC, this is going to change the story from „we’re gonna fire you for not using enough AI“ to „pleeeease use it only when it really helps“. Turns out, this is something, that well trained engineers can actually do.

    #ai #anthropic #tokenmaxxing #swdev #programming

  5. RE: fosstodon.org/@nurkiewicz/1164

    It’s all about the money and it always was. As AI vendors start charging what it actually costs instead of burning VC, this is going to change the story from „we’re gonna fire you for not using enough AI“ to „pleeeease use it only when it really helps“. Turns out, this is something, that well trained engineers can actually do.

    #ai #anthropic #tokenmaxxing #swdev #programming

  6. *New Article*

    In the past weeks and months, some friends and colleagues send me articles and quotes from public figures talking about AI in one way or the other. Mostly, they talk about how everything will change and how AI will be the solution to all problems.

    I decided to write a piece about this.

    return.co.de/blog/articles/ai-

    #ai #nvidia #anthropic #oracle #swdev

  7. *New Article*

    In the past weeks and months, some friends and colleagues send me articles and quotes from public figures talking about AI in one way or the other. Mostly, they talk about how everything will change and how AI will be the solution to all problems.

    I decided to write a piece about this.

    return.co.de/blog/articles/ai-

    #ai #nvidia #anthropic #oracle #swdev

  8. *New Article*

    In the past weeks and months, some friends and colleagues send me articles and quotes from public figures talking about AI in one way or the other. Mostly, they talk about how everything will change and how AI will be the solution to all problems.

    I decided to write a piece about this.

    return.co.de/blog/articles/ai-

    #ai #nvidia #anthropic #oracle #swdev

  9. *New Article*

    In the past weeks and months, some friends and colleagues send me articles and quotes from public figures talking about AI in one way or the other. Mostly, they talk about how everything will change and how AI will be the solution to all problems.

    I decided to write a piece about this.

    return.co.de/blog/articles/ai-

    #ai #nvidia #anthropic #oracle #swdev

  10. *New Article*

    In the past weeks and months, some friends and colleagues send me articles and quotes from public figures talking about AI in one way or the other. Mostly, they talk about how everything will change and how AI will be the solution to all problems.

    I decided to write a piece about this.

    return.co.de/blog/articles/ai-

    #ai #nvidia #anthropic #oracle #swdev

  11. Getting Renovate to work in a yaml pipeline running in a corporate network with private artifact registries and proxies in place is just a lot of fun.

    #developerdiaries #pleasekillme #swdev #devops

  12. Getting Renovate to work in a yaml pipeline running in a corporate network with private artifact registries and proxies in place is just a lot of fun.

    #developerdiaries #pleasekillme #swdev #devops

  13. Getting Renovate to work in a yaml pipeline running in a corporate network with private artifact registries and proxies in place is just a lot of fun.

    #developerdiaries #pleasekillme #swdev #devops

  14. Getting Renovate to work in a yaml pipeline running in a corporate network with private artifact registries and proxies in place is just a lot of fun.

    #developerdiaries #pleasekillme #swdev #devops

  15. Getting Renovate to work in a yaml pipeline running in a corporate network with private artifact registries and proxies in place is just a lot of fun.

    #developerdiaries #pleasekillme #swdev #devops

  16. „Auf dem Girokonto befindet sich derzeit kein Kraftwerk.“

    „Erschaffen“ oder „Stornieren?“

    😌

    #lostintranslation #swdev #fail #solar #Photovoltaik #tsun

  17. „Auf dem Girokonto befindet sich derzeit kein Kraftwerk.“

    „Erschaffen“ oder „Stornieren?“

    😌

    #lostintranslation #swdev #fail #solar #Photovoltaik #tsun

  18. „Auf dem Girokonto befindet sich derzeit kein Kraftwerk.“

    „Erschaffen“ oder „Stornieren?“

    😌

    #lostintranslation #swdev #fail #solar #Photovoltaik #tsun

  19. „Auf dem Girokonto befindet sich derzeit kein Kraftwerk.“

    „Erschaffen“ oder „Stornieren?“

    😌

    #lostintranslation #swdev #fail #solar #Photovoltaik #tsun

  20. „Auf dem Girokonto befindet sich derzeit kein Kraftwerk.“

    „Erschaffen“ oder „Stornieren?“

    😌

    #lostintranslation #swdev #fail #solar #Photovoltaik #tsun

  21. TIL: Running Golang functions in Secrets Mode 🥷
    antonz.org/accepted/runtime-se

    "The new runtime/secret package lets you run a function in secret mode. After the function finishes, it immediately erases (zeroes out) the registers and stack it used. Heap allocations made by the function are erased as soon as the garbage collector decides they are no longer reachable.

    secret.Do(func() {
    // Generate an ephemeral key and
    // use it to negotiate the session.
    })

    This helps make sure sensitive information doesn't stay in memory longer than needed, lowering the risk of attackers getting to it.

    The package is experimental and is mainly for developers of cryptographic libraries, not for application developers."

    #swdev #appsec #cryptography #defendabledesign

  22. TIL: Running Golang functions in Secrets Mode 🥷
    antonz.org/accepted/runtime-se

    "The new runtime/secret package lets you run a function in secret mode. After the function finishes, it immediately erases (zeroes out) the registers and stack it used. Heap allocations made by the function are erased as soon as the garbage collector decides they are no longer reachable.

    secret.Do(func() {
    // Generate an ephemeral key and
    // use it to negotiate the session.
    })

    This helps make sure sensitive information doesn't stay in memory longer than needed, lowering the risk of attackers getting to it.

    The package is experimental and is mainly for developers of cryptographic libraries, not for application developers."

    #swdev #appsec #cryptography #defendabledesign

  23. Can anyone spot the difference between these strings?

    `"serialNumber":"551cb36993ec4442d83da5f223ee8158dce730f3"`

    '"serialNumber":"551CB36993EC4442D83DA5F223EE8158DCE730F3"'

    Just spent three hours on this.

    Anyone got a good screamin' void recommendation?

    #swdev #software

  24. Can anyone spot the difference between these strings?

    `"serialNumber":"551cb36993ec4442d83da5f223ee8158dce730f3"`

    '"serialNumber":"551CB36993EC4442D83DA5F223EE8158DCE730F3"'

    Just spent three hours on this.

    Anyone got a good screamin' void recommendation?

    #swdev #software

  25. Can anyone spot the difference between these strings?

    `"serialNumber":"551cb36993ec4442d83da5f223ee8158dce730f3"`

    '"serialNumber":"551CB36993EC4442D83DA5F223EE8158DCE730F3"'

    Just spent three hours on this.

    Anyone got a good screamin' void recommendation?

    #swdev #software

  26. Can anyone spot the difference between these strings?

    `"serialNumber":"551cb36993ec4442d83da5f223ee8158dce730f3"`

    '"serialNumber":"551CB36993EC4442D83DA5F223EE8158DCE730F3"'

    Just spent three hours on this.

    Anyone got a good screamin' void recommendation?

    #swdev #software

  27. Can anyone spot the difference between these strings?

    `"serialNumber":"551cb36993ec4442d83da5f223ee8158dce730f3"`

    '"serialNumber":"551CB36993EC4442D83DA5F223EE8158DCE730F3"'

    Just spent three hours on this.

    Anyone got a good screamin' void recommendation?

    #swdev #software

  28. #swdev advice request:

    I'm the lead dev on my team. One of my team members almost always asks for a meeting to talk about their PR code reviews. I'd prefer to keep them text-based and asynchronous as it makes more efficient use of my limited time.

    How do y'all handle this?

    #devops #git #code

  29. #swdev advice request:

    I'm the lead dev on my team. One of my team members almost always asks for a meeting to talk about their PR code reviews. I'd prefer to keep them text-based and asynchronous as it makes more efficient use of my limited time.

    How do y'all handle this?

    #devops #git #code

  30. #swdev advice request:

    I'm the lead dev on my team. One of my team members almost always asks for a meeting to talk about their PR code reviews. I'd prefer to keep them text-based and asynchronous as it makes more efficient use of my limited time.

    How do y'all handle this?

    #devops #git #code

  31. #swdev advice request:

    I'm the lead dev on my team. One of my team members almost always asks for a meeting to talk about their PR code reviews. I'd prefer to keep them text-based and asynchronous as it makes more efficient use of my limited time.

    How do y'all handle this?

    #devops #git #code

  32. #swdev advice request:

    I'm the lead dev on my team. One of my team members almost always asks for a meeting to talk about their PR code reviews. I'd prefer to keep them text-based and asynchronous as it makes more efficient use of my limited time.

    How do y'all handle this?

    #devops #git #code

  33. Writing some openssl certificate validation code. Tests start failing after an innocuous unrelated change. Cue wailing/gnashing/etc.

    The validity period of the certificate in my test system ended while I was working. There was no code change that broke it. 😭

    #openssl #swdev #programming

  34. Writing some openssl certificate validation code. Tests start failing after an innocuous unrelated change. Cue wailing/gnashing/etc.

    The validity period of the certificate in my test system ended while I was working. There was no code change that broke it. 😭

    #openssl #swdev #programming

  35. Writing some openssl certificate validation code. Tests start failing after an innocuous unrelated change. Cue wailing/gnashing/etc.

    The validity period of the certificate in my test system ended while I was working. There was no code change that broke it. 😭

    #openssl #swdev #programming

  36. Writing some openssl certificate validation code. Tests start failing after an innocuous unrelated change. Cue wailing/gnashing/etc.

    The validity period of the certificate in my test system ended while I was working. There was no code change that broke it. 😭

    #openssl #swdev #programming

  37. Writing some openssl certificate validation code. Tests start failing after an innocuous unrelated change. Cue wailing/gnashing/etc.

    The validity period of the certificate in my test system ended while I was working. There was no code change that broke it. 😭

    #openssl #swdev #programming

  38. I have reached the realisation that most of the internet is just shuttling data between openssl code, and most software engineering is making sure you don't interfere with openssl talking to itself via your nonsense.

    #openssl #software #swdev

  39. I have reached the realisation that most of the internet is just shuttling data between openssl code, and most software engineering is making sure you don't interfere with openssl talking to itself via your nonsense.

    #openssl #software #swdev

  40. I have reached the realisation that most of the internet is just shuttling data between openssl code, and most software engineering is making sure you don't interfere with openssl talking to itself via your nonsense.

    #openssl #software #swdev

  41. I have reached the realisation that most of the internet is just shuttling data between openssl code, and most software engineering is making sure you don't interfere with openssl talking to itself via your nonsense.

    #openssl #software #swdev

  42. I have reached the realisation that most of the internet is just shuttling data between openssl code, and most software engineering is making sure you don't interfere with openssl talking to itself via your nonsense.

    #openssl #software #swdev