Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Gemini hacked three companies in first known breakout by Google's AI(reuters.com ↗)
    discuss
  2. Nuclear tests at Mt. Mantap have reactivated intraplate faults(science.org ↗)
    discuss
  3. NIST Elliptic Curves Seeds Bounty (2023)(filippo.io ↗)
    discuss
  4. Google's Gemini becomes latest AI model to break out and hack computer systems(cnbc.com ↗)
    discuss
  5. Australian government considers ban on smart glasses in public buildings(theguardian.com ↗)
    discuss
  6. Muse gets all your unclaimed money back!(muse.ai ↗)
    discuss
  7. Show HN: Typesafe Java SDK (Unofficial)(github.com/qainsights ↗)
    1comments
  8. The Race for 1000 Goals(1k.football ↗)
    discuss
  9. Rare Gene Drastically Raises Lung Cancer Risk in People Who Never Smoked(nytimes.com ↗)
    1comments
  10. macOS Liquid Glass in VS Code: Cursed or Blursed?(alec.is ↗)
    discuss
  11. Federated Learning Is Not Private for Google GBoard Next Word Prediction [pdf](arxiv.org ↗)
    discuss
  12. Trump deal keeps Greenland Danish while expanding U.S. military presence(apnews.com ↗)
    discuss
  13. What I Can Remember
    2comments
  14. Federal watchdog accuses Humana, UnitedHealthcare of upcoding(healthcaredive.com ↗)
    discuss
  15. Show HN: I'm walking 42km across Tokyo, through 30 stations(tonymanh.space ↗)
    discuss
  16. Show HN: LiveWorld – Every 24/7 YouTube live camera on one globe(liveworld.info ↗)
    discuss
  17. Show HN: An OSS Python dependency scanner for exploited, unmaintained packages(github.com/binuka200 ↗)
    1comments
  18. The Language Modeler(github.com/mlsystemsri ↗)
    discuss
  19. The Great Unbundling of the LLM(seldon-ai.com ↗)
    1comments
  20. Google Says Its A.I. Hacked Three Companies in Testing Breakout(nytimes.com ↗)
    discuss
  21. Welcome to Shaderland(shaderland.net ↗)
    discuss
  22. Radar: An Expert-Level Generalist AI for Abdominal CT Diagnosis(github.com/alibaba-damo-academy ↗)
    discuss
  23. European leaders prepare public for 'intensified threat' from Putin(politico.eu ↗)
    discuss
  24. Why my alert triage workflow needed a CLI(powers.dev ↗)
    1comments
  25. AI cracked the Navier–Stokes challenge. What does that mean for physics?(nature.com ↗)
    discuss
  26. Machine Gods – the official podcast of the singularity(machinegods.fm ↗)
    discuss
  27. Cannabis Supply Chain Database(cannabis-supply-chain.pages.dev ↗)
    discuss
  28. AI insiders issue new warnings – including former Anthropic engineer Jacob Coxon(slashdot.org ↗)
    1comments
  29. Plan Advice in PostgreSQL 19(tapoueh.org ↗)
    discuss
  30. Prepare your iPhone 18 Pro Max to ship(support.apple.com ↗)
    discuss

A related skill that is recommended as a CS student

1 pointsby 2h ago
4 comments
I’m a computer science student about to start my second year.

I have a question that’s been on my mind all the time.

This summer, I spent most of my time solving data structures problems & alogrithms , and I’ve now reached linked lists.

I’d like to ask you: Given that you’re learning and solving problems every day, what parallel skill did you start learning—or would you recommend learning—that’s reasonable and allows you to balance your progress in data structures with this skill, which can help you track your progress?

I hope I’ve expressed my thoughts clearly.

2h agoHN ↗

Rather than a specific skill*, I would instead recommend working on a long-term project of your own design. Build something you find interesting, something so big, and with too many unknowns, that you have no idea how to make it real (yet).

Then start chipping away at it and use the points you get stuck at as places to go learn new things so you upskill. It is this meta-skill* that is among the most important to learn.

Another thing you might do, since you are at uni, is reach out to professors about their research. I did this early in my CS edu and I ended up staying for many years and earning a PhD

2h agoHN ↗

Thanks for the advice. I think I understand the idea, but I’m still not sure how to apply it at my level.

Could you give me an example of what you mean by a “long-term project” for someone at my level, and how you would balance it with continuing DSA?

2h agoHN ↗

a project can be something you always wanted to see, or some application that already exists (build your own version from scratch)

the key is that it is big and related/applied to something you like, such as a hobby

my first was a stock picking system (fool's errand), my PhD work was a system to extract math formula from data, post PhD was a deterministic code generation engine (pre-dating LLM code gen)

unfamiliar with the DSA acronym

1h agoHN ↗

Ah, I see what you mean now. By DSA, I mean Data Structures and Algorithms.

So basically, you recommend choosing something I’m genuinely interested in, even if a similar application already exists, and building my own version from scratch. Then whenever I encounter something I don’t know, I learn it as I go.