HackerTrans
TopNewTrendsCommentsPastAskShowJobs

selendym

no profile record

comments

selendym
·9 เดือนที่ผ่านมา·discuss
> 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
·ปีที่แล้ว·discuss
Client-side-only validation?
selendym
·ปีที่แล้ว·discuss
> 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
·ปีที่แล้ว·discuss
The problem with this line of thinking is that the government is, of course, composed of... individual citizens.
selendym
·ปีที่แล้ว·discuss
For what it's worth, this company was spawned by Mullvad: https://mullvad.net/en/blog/mullvad-creates-a-hardware-compa...
selendym
·ปีที่แล้ว·discuss
> 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 ปีที่แล้ว·discuss
> 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 ปีที่แล้ว·discuss
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>