HackerTrans
トップ新着トレンドコメント過去質問紹介求人

selendym

no profile record

コメント

selendym
·9 か月前·議論
> If anyone else knows of similar interventions, I would love to learn of them. It makes me think about how individuals can force multiply their impact, and whether there's methods for personal empowerment to be learned from these examples.

One that comes to mind is Keith Gill [1] of GameStop fame [2].

[1]: https://en.wikipedia.org/wiki/Keith_Gill

[2]: https://en.wikipedia.org/wiki/GameStop_short_squeeze
selendym
·昨年·議論
Client-side-only validation?
selendym
·昨年·議論
> Sometimes we would day dream.

There was an article about that a month or two ago: The Death of Daydreaming - https://news.ycombinator.com/item?id=43894305
selendym
·昨年·議論
The problem with this line of thinking is that the government is, of course, composed of... individual citizens.
selendym
·昨年·議論
For what it's worth, this company was spawned by Mullvad: https://mullvad.net/en/blog/mullvad-creates-a-hardware-compa...
selendym
·昨年·議論
> Firejail can't handle : in some paths (at all, no escaping provided) which made me dump it.

This doesn't match my experience. For example, the following works just fine in a profile file:

  blacklist /sys/devices/pci0000:00/*
Can you give an example of what you had problems with?
selendym
·2 年前·議論
> it bugs me to an unreasonable extent that he finished one person short of 7777

Perhaps (likely?) he himself should be counted too, so 7777 in total.
selendym
·2 年前·議論
In bash, you can do something like this out-of-the-box by setting the `PS1` variable to your liking. For example, I use the following in `/etc/bash.bashrc`:

  PROMPT_COMMAND='_prev_status="$?"'
  PS1='\n$(printf "%0${COLUMNS}d\n" 0 | tr 0 -)\n[\D{%y%m%d-%H%M%S}] \u@\H (${_prev_status})\n${PWD}\n\$ '
The first line saves the status of the previous command and the second line sets the prompt string. The result is something like this:

  ---------------------------------------- <these dashes span the terminal width>
  [date-time] user@host (status)
  /current/working/directory
  $ <next command>