HackerLangs
TopNewTrendsCommentsPastAskShowJobs

isodude

no profile record

Submissions

Nerd meets crazy nerd in random comment section

reverseengineering.stackexchange.com
1 points·by isodude·hace 3 meses·2 comments

Ask HN: When an AI holds your company hostage, what will be the best defense?

1 points·by isodude·hace 8 meses·0 comments

comments

isodude
·hace 13 días·discuss
Too bad they missed the opportunity to read it, very, slowly.
isodude
·hace 17 días·discuss
I don't have any experience myself but they do seem to be effective. Yeah, I think you'd have to compare it to a holiday, or how much time that would mean in a Solarium.
isodude
·hace 17 días·discuss
I have noticed that the same amount of people down voted as up voted the comment. I wonder how they reasoned.
isodude
·hace 17 días·discuss
Have you looked into UVB lamps?
isodude
·hace 19 días·discuss
"awlays" should almost always be "always"
isodude
·hace 20 días·discuss
https://www.svt.se/text-tv/100

The same as it was on tv when I grew up.
isodude
·hace 20 días·discuss
On reddit i have seen multiple threads that are positive through and through with topics like, "What are you up to today?", "I just finished school and starting to work", "I am lonely and feel dreadful". I read the comments and was met with level-headed and honest comments/interactions.

As in reality it's important to have walled gardens where people can utter opinions and voice their distress or just say that they are happy. Without getting lynched. These global silos of social media is nothing but deserts where the only way of getting through the noice with any means neccessary.
isodude
·el mes pasado·discuss
I wonder if the investors used Claude to see whether they should invest or not hmm..
isodude
·hace 2 meses·discuss
My wife does not care whatever excuse I have to why the kitchen is not in order when she comes home.

I failed her anyhow.

Should I tell her that boolean logic is not applicable on my intentions?
isodude
·hace 2 meses·discuss
I saw your genuine post and upvoted since it seemed unfair.

I am mostly against all usage of LLM because the treadmill is moving too fast. But if it's thoughtful usage and a lot of tinkering I might change course. As such that includes other things than LLM obviously.
isodude
·hace 2 meses·discuss
It depends on how you register things.

* Given that you can easily start up your own CA in a test bed, just use different domain names.

* Or use IP addresses directly, given that IPv6 i pretty abundant it's easy to just listen on many addresses at the same time. A nice thing is to just put the port number is the last octets: fd01::9000, fd01::0003:5565. If it's HTTPS you always use port 443, if it's another protocol, use another port. With iptables/nft you can translate all port 443 traffic towards a /96 to a single IP.

* Firefox does not seem to understand unix domain sockets, https://news.ycombinator.com/item?id=27941552. I'm assuming that you have a gateway in front that handles that aspect.

* Proxies in Firefox seems to understand that though, which means you can have a proxy that translate to unix sockets locally. That means you can basically run it to a namespaced application, using only http://<service>.localhost.
isodude
·hace 2 meses·discuss
Why not resolve everything with UNIX sockets instead, that way you can have them named and scoped instead, hiding behind port 443, since it's mosly HTTP anyway.
isodude
·hace 3 meses·discuss
What are they up to now, I wonder.
isodude
·hace 4 meses·discuss
So now you can send a malware markdown to just agents.
isodude
·hace 5 meses·discuss
nitpick, it should be `touch a c & mv a b & mv c d` as `&;` returns `bash: syntax error near unexpected token `;'`. I always find this oddly weird, but that would not be the first pattern in BASH that is.

`inotifywait` actually sees them in order, but nothing ensure that it's that way.

  $ inotifywait -m /tmp
  /tmp/ MOVED_FROM a
  /tmp/ MOVED_TO b
  /tmp/ MOVED_FROM c
  /tmp/ MOVED_TO d

`stat` tells us that the timestamps are equal as well.

  $ stat b d | grep '^Change'
  Change: 2026-02-06 12:22:55.394932841 +0100
  Change: 2026-02-06 12:22:55.394932841 +0100

However, speeding things up changes it a bit.

Given

  $ (
    set -eo pipefail
    for i in {1..10000}
    do
      printf '%d ' "$i"
      touch a c
      mv a b &
      mv c d &
      wait
      rm b d
    done
  )
  1 2 3 4 5 6 .....
And with `inotifywait` I saw this when running it for a while.

  $ inotifywait -m -e MOVED_FROM,MOVED_TO /tmp > /tmp/output
  cat /tmp/output | xargs -l4 | sort | uniq -c
  9104 /tmp/ MOVED_FROM a /tmp/ MOVED_TO b /tmp/ MOVED_FROM c /tmp/ MOVED_TO d
  896 /tmp/ MOVED_FROM c /tmp/ MOVED_TO d /tmp/ MOVED_FROM a /tmp/ MOVED_TO b
isodude
·hace 8 meses·discuss
When will Cloudflare actually split into several totally independent companies to remedy that they bring down the Internet every time they have a major issue?
isodude
·hace 8 meses·discuss
This did not age well!
isodude
·hace 8 meses·discuss
I am trying to build a local setup where I spawn dockers (fetched via skopeo) as systemd-nspawn machines in userland (rootless), with network managed by a service that uses netkit devices to setup network in their empty network namespaces. I am looking at using Sommelier to manage wayland.

The end goal is to have a laptop with an easy way to build lab environments which is secure and rootless.
isodude
·hace 10 meses·discuss
Is it though? I would imagine the person wanting to change instead being forced. Where would you draw the line?
isodude
·hace 10 meses·discuss
Only give positive feedback when they are doing the thing you want them too. Absence of positive feedback is as effective as negative feedback, with the positive effect of extracting the change you want instead of placing the change upon the person.