Live data from Hacker News

Viewing profile — chrisulloa

chrisulloa

HN member
Joined
Mon, Dec 31, 2018, 4:41 PM UTC
HN karma
42
Public activity
17 items

About chrisulloa

No profile information was provided.

Recent public activity

  1. comment
    Comment #45718517

    I think we will be seeing a lot more business pop up that will take cater to people who are unhappy with AI. Especially if you consider the large amount of inevitable layoffs, peop…

  2. comment
    Comment #45677785

    A lot of people work hours like that in China and in America like 996 workers or service workers. You’ll find that as the middle class is wiped out more folks will retire later or …

  3. comment
    Comment #43806214

    seriously can't believe anyone thought it would happen any other way

  4. comment
    Comment #42835040

    you have to wonder if there's a limit to the things people, companies, CEOs, shareholders will do to satiate their greed if only for the sake of the public good

  5. comment
    Comment #27170047

    Terrible news for dumb rich people, really.

  6. comment
    Comment #25827611

    Working in healthcare, engineers are liable for breaching data violations around health data. In everything from logging, storage and deletion of data, developers need to make sure…

  7. comment
    Comment #25497486

    While I definitely agree Rust is a much faster language than Clojure, I would be interested to see benchmarks on your code that show just how much faster your Rust code was on the …

  8. comment
    Comment #23751431

    Definitely this... I have a manager who always has an answer to every one of my suggestions or comments on 1-on-1s where it feels like he thinks my complaints are unwarranted. You …

  9. comment
    Comment #23751323

    We'll need 2 factor auth for phone calls at that point

  10. comment
    Comment #23425801

    Clojurians slack is honestly one of the most welcoming and understanding programming communities I've had the pleasure of joining. I frequently ask stupid questions and will occasi…

  11. comment
    Comment #23425783

    I have trouble understanding almost all of these complaints. I have been developing Clojure for two years now at two different shops and haven't encountered the issues you describe…

  12. comment
    Comment #23394789

    Agreed! I am also concerned about how politicians will use UBI as bartering chips and how they will use it to further their own monetary interests.

  13. comment
    Comment #23013936

    house is a feeling

  14. comment
    Comment #21423723

    > computational necromancy Haven't you read laundry files? You could accidentally summon an alien horror from another dimension.

  15. comment
  16. comment
    Comment #19220975

    mxnet is also on Clojure https://github.com/apache/incubator-mxnet/tree/master/contri...

  17. comment
    Comment #18795339

    Clojure version (defn fizzbuzz [x] (cond-> nil (zero? (mod x 3)) (str "Fizz") (zero? (mod x 5)) (str "Buzz") :always (or (str x)))) (doseq [x (range 1 101)] (prn (fizzbuzz x)))