Live data from Hacker News

Viewing profile — un1xl0ser

un1xl0ser

HN member
Joined
Thu, Jun 09, 2011, 4:21 PM UTC
HN karma
59
Public activity
65 items

About un1xl0ser

No profile information was provided.

Recent public activity

  1. comment
    Comment #49001125

    People are to get rich, startups cut corners. Fuck it ship it.

  2. comment
    Comment #47704956

    I left a career of 20 years, and good pay, and part of it is AI being slammed down your throat. It is not work, which may be iteresting, on doing your own AI, its just enforcing th…

  3. comment
    Comment #45920512

    Hemp is classified as below .3% THC (compared to old-school weed strains at 15% and modern levels at mid 30%s). Hemp is male and female, and trash in potency, but THC and other pro…

  4. comment
    Comment #39195477

    That's not a sign of a good internship program. I've always put a great deal of time coming up with projects that are suitable for the intern, and they always have to be tailored t…

  5. comment
    Comment #39194299

    You may actually be hourly and not salaried. That said, it's not uncommon to be forced to log when you work, especially when there are PTO and things like that involved and that ne…

  6. comment
    Comment #39192520

    I love to work from the office, I prefer it. I hate working from my desk at home, next to my bed. We have two desks in the bedroom. I'm in MGMT. Today I'm working from home as I ca…

  7. comment
    Comment #39192093

    The thing that I keep coming back to, is that if a company is taking an action, it should be about reducing friction to go to and making the office space a better place to work. If…

  8. comment
    Comment #37176719

    The main reason to know vi inside and out as a Unix administrator has to do with it being the lowest common denominator on Unix and Linux systems. As a *nix tech I could get a call…

  9. comment
    Comment #35990198

    I can see this in progress. Needs windows, but we also need more residential, so happy to see it. https://nypost.com/2023/04/24/longtime-nyc-home-of-the-daily...

  10. comment
    Comment #9429626

    I completely agree. While theoretically possible to do given full packet captures, it does not scale. IDS/IPS systems are not in a place to operate at this level and keep this much…

  11. comment
    Comment #9426120

    Or they crack or compromise the keys that they need on a per operation bases. Even assuming ubiquitous SSL (or something more decentralized), the keys of a few advertising or web a…

  12. comment
    Comment #9378047

    I switched from OpenWRT to pfsense a while back and I am never going back. It runs great in a virtual machine, if that's your thing and you already have a need for VMs.

  13. comment
    Comment #9378034

    I think that he means per month in electricity costs. ;)

  14. comment
    Comment #9258466

    I think it may be more scary for code that allows arbitrary execution using command-line arguments. Commands like find or xargs using without defense against this would be a proble…

  15. comment
    Comment #9256162

    $ diff -u /tmp/a /tmp/b --- /tmp/a 2015-03-24 08:33:00.021919797 -0400 +++ /tmp/b 2015-03-24 08:33:05.629963015 -0400 @@ -1,5 +1,5 @@ #!/usr/bin/env bash set -e i=0 -let i++ +let i…

  16. comment
    Comment #9256096

    From the same page:"rking's personal recommendation is to go ahead and use set -e, but beware of possible gotchas. It has useful semantics, so to exclude it from the toolbox is to …

  17. comment
    Comment #9130048

    Those are medallion numbers or TLC license numbers, but not drivers license numbers. They can't be used for identity theft.

  18. comment
    Comment #9078023

    Can you please provide your definition of intelligence? I would argue that theoretically , a government (or other entity) could use intelligence but use it within a set of moral an…

  19. comment
    Comment #9041612

    A weak RNG may create an opportunity for successful cryptanalysis. This can especially be a problems on virtual hardware/platforms that don't have a mechanism for keeping a good ra…

  20. comment
    Comment #9038962

    Crypto is not about breaking in, but breaking codes. It is mostly a bunch of maths. http://www.amazon.com/Cryptography-Engineering-Principles-Pr...

  21. comment
    Comment #8773822

    One of the articles that was debunking the NK connection mentioned that the language used in NK stems heavily from Russian in a variety of ways. So if they took the use of false to…

  22. comment
    Comment #8324487

    Collision resistance is more interesting when hashes are used in cryptographic protocols and large amounts of data can be captured, seen and analyzed. I can't think of a purpose wh…

  23. comment
    Comment #6848275

    Linux has good enough binary compatibility. I have seen 32-bit applications built on RHEL 2.1 run on RHEL 5. You need the correct libraries and versions, but that's not a difficult…

  24. comment
    Comment #6837598

    I would expect xargs to stop processing arguments strictly after the first non-flag argument. Arguments to xargs do appear to be parsed, example below: http://explainshell.com/expl…

  25. comment
    Comment #6837585

    Amazing tool for beginners, but also helpful for advanced users. GREAT: find / -type f -print0 |xargs -0 grep heythere I tried some sub-shells, and seemed to not work so well. $() …