Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
chrisulloa
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
chrisulloa
11mo ago
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, people will begin to resent everything AI. The intelligent machi
2.
▲
by
chrisulloa
11mo ago
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 not at all.
3.
▲
by
chrisulloa
1y ago
seriously can't believe anyone thought it would happen any other way
4.
▲
by
chrisulloa
2y ago
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.
▲
by
chrisulloa
5y ago
Terrible news for dumb rich people, really.
6.
▲
by
chrisulloa
6y ago
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 that there is no personally identifiable information. There
7.
▲
by
chrisulloa
6y ago
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 same data. I also noticed that you mentioned avoiding lazy s
8.
▲
by
chrisulloa
6y ago
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 don't need to have an answer for everything, just liste
9.
▲
by
chrisulloa
6y ago
We'll need 2 factor auth for phone calls at that point
10.
▲
by
chrisulloa
6y ago
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 occasionally have library maintainers take their time to fill
11.
▲
by
chrisulloa
6y ago
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.
▲
by
chrisulloa
6y ago
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.
▲
by
chrisulloa
6y ago
house is a feeling
14.
▲
by
chrisulloa
7y ago
> computational necromancy Haven't you read laundry files? You could accidentally summon an alien horror from another dimension.
15.
▲
by
chrisulloa
8y ago
mxnet is also on Clojure https://github.com/apache/incubator-mxnet/tree/master/contri...
16.
▲
by
chrisulloa
8y ago
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)))