Preferences

fork-while-fork
Joined 43 karma

  1. Can you define what you consider a "very healthy diet"?
  2. This is exactly the problem with unlimited PTO. It makes employees to feel guilty about taking time off and allows employers to avoid paying out unused time off when they leave.
  3. I've been running a PC Engines APU2 (https://www.pcengines.ch/apu2.htm) for many years now. It has enough power to route over my gigabit fiber connection. It has mini-PCIE slots for wifi cards. If you want 2.4GHz and 5GHz bands, you'll need two cards and run two instances of hostapd.

    The software stack is pretty basic:

    - IPtables for routing and firewall

    - DNSMasq for DNS cache and DHCP

    - Hostapd for wireless

  4. > so that they could still enforce the non-compete without paying me in accordance with NY state law.

    Could you elaborate on that part?

  5. Google maps with Android Auto does auto-learn popular/regular destinations and suggests them at appropriate times. It works pretty well.
  6. Check out bettercap
  7. Intent matters. The maintainer very clearly intended to do harm. They abused end user trust which is a common attack vector for many pieces of malware.
  8. I'm curious if you think the same applies to a developer that writes any kind of ransomware when an end user downloads and installs it knowingly. End user trust is a common attack vector for malware and the developer here took advantage of that just like any other malware developer.
  9. You can tell http.Client to not redirect:

        client := &http.Client{
            CheckRedirect: func(req *http.Request, via []*http.Request) error {
                return http.ErrUseLastResponse
            },
        }
    
    Then use the client as normal. You can also modify the function for very specific redirect behavior.

This user hasn’t submitted anything.

Keyboard Shortcuts

Story Lists

j
Next story
k
Previous story
Shift+j
Last story
Shift+k
First story
o Enter
Go to story URL
c
Go to comments
u
Go to author

Navigation

Shift+t
Go to top stories
Shift+n
Go to new stories
Shift+b
Go to best stories
Shift+a
Go to Ask HN
Shift+s
Go to Show HN

Miscellaneous

?
Show this modal