guccihat | 4 months ago | on: Google boss warns 'no company is going to be immune' if AI bubble bursts
guccihat's comments
guccihat | 6 months ago | on: Denmark's Justice Minister calls encrypted messaging a false civil liberty
This mass surveillance proposal is so dystopian and broken, I’m genuinely ashamed to be an EU citizen.
guccihat | 7 months ago | on: A simple way to generate random points on a sphere
guccihat | 11 months ago | on: Llama 4 performs worse than Llama 3 at translation
Something does not add up. The conclusion just states "...downgrade from LLama 3.3 in every respect" without further explanation.
guccihat | 1 year ago | on: DeepSeek focuses on research over revenue
IMO, the title is quite accurate and supported by the content of the article. The team is prioritizing AI research at the expense of short term profit.
If the title was "DeepSeek is solely a research effort" you would have a case.
guccihat | 1 year ago | on: 1 in 4 programming jobs have vanished. What happened?
guccihat | 1 year ago | on: Microsoft is plotting a future without OpenAI
The AI race is super close and interesting at the moment in my opinion.
guccihat | 1 year ago | on: Microsoft is plotting a future without OpenAI
guccihat | 1 year ago | on: Claude 3.7 Sonnet and Claude Code
The Aider Polyglot website also states that the benchmark " ...asks the LLM to edit source files to complete 225 coding exercises".
However, when looking at the actual tests [0], it is not about editing code bases, it's rather just solving simple programming exercies? What am I missing?
guccihat | 1 year ago | on: Apple pulls data protection tool after UK government security row
guccihat | 1 year ago | on: Firing programmers for AI is a mistake
It seems the general sentiment is that developers are in danger of being replaced entirely. I may be biased, but it seems not to be the most likely outcome in the long term. I can't imagine how such companies will be competitive against developers who replace their boss with an AI.
guccihat | 1 year ago | on: Common mistakes in architecture diagrams (2020)
guccihat | 1 year ago | on: The FizzBuzz that did not get me the job
guccihat | 1 year ago | on: The FizzBuzz that did not get me the job
function isDivisibleByThree(num) {
let modulo, mod3 = "012012012012";
for (const digit of num) {
[modulo] = mod3.slice(modulo).slice(digit);
}
return modulo === "0";
}guccihat | 1 year ago | on: The FizzBuzz that did not get me the job
function isDivisibleByThree(num: string): boolean {
let mod3 = "012012012012";
let modulo = "0";
for (const digit of num) {
modulo = mod3[Number(digit) + Number(modulo)];
}
return modulo === "0";
}
If adding two single digit numbers is also prohibited it can be implemented with a lookup and keep everything in string representation."The programmer can use whatever representation they see fit with the only restriction being that it could only contain letters, numbers and symbols that could be typed with a single stroke"
guccihat | 1 year ago | on: The FizzBuzz that did not get me the job
guccihat | 1 year ago | on: The FizzBuzz that did not get me the job
"While the base algorithm is very simple, the point of the exercise is that the interviewer will add new rules to test how you update the code while keeping it readable and maintainable."
guccihat | 1 year ago | on: The FizzBuzz that did not get me the job
The solution is clever and demonstrates solid knowledge of TS. However, in my experience getting too clever with the type system is not always a good idea for ordinary application code maintained by a team of average TS developers.
guccihat | 5 years ago | on: Drivers who keep their windows down are exposed to 80 percent more air pollution
Doesn't that mean they have 5 times more exposure, not 80% more?
https://www.bbc.com/news/articles/cwy7vrd8k4eo