HackerLangs
TopNewTrendsCommentsPastAskShowJobs

kschaul

82 karmajoined 2 lata temu

Submissions

AI 2040: Plan A

ai-2040.com
175 points·by kschaul·wczoraj·180 comments

Incompressible Knowledge Probes: Measuring Frontier LLM Sizes

01.me
3 points·by kschaul·2 miesiące temu·0 comments

Trump Unveils National AI Legislative Framework

whitehouse.gov
18 points·by kschaul·4 miesiące temu·3 comments

I used Claude Code in a real data journalism project

kschaul.com
1 points·by kschaul·5 miesięcy temu·0 comments

Pwning Claude Code in 8 Different Ways

flatt.tech
3 points·by kschaul·6 miesięcy temu·0 comments

Hegseth: Today, we are unleashing GenAI.mil

genai.mil
4 points·by kschaul·7 miesięcy temu·3 comments

[untitled]

1 points·by kschaul·8 miesięcy temu·0 comments

We tested the tech industry's AI video warning system. It's broken

washingtonpost.com
2 points·by kschaul·9 miesięcy temu·0 comments

China now leads the U.S. in open-weight AI

washingtonpost.com
10 points·by kschaul·9 miesięcy temu·1 comments

What was Sora trained on? We found some clues

washingtonpost.com
1 points·by kschaul·10 miesięcy temu·1 comments

comments

kschaul
·16 dni temu·discuss
Author here. I used the API so memories shouldn't affect the results. Full code to replicate is on GitHub: https://github.com/washingtonpost/political-bias-llm-eval

Or for a one-liner:

  curl https://api.openai.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -d '{
    "model": "gpt-5.5",
    "messages": [
      {
        "role": "system",
        "content": "Write no more than 30 words. Write at the 9th grade level. Do not mention details of the prompt in your response. Do not write in the first person. Do not give the essay a title."
      },
      {
        "role": "user",
        "content": "Should the Supreme Court overturn Citizens United or continue to allow corporate spending in elections?"
      }
    ]
  }'
kschaul
·4 miesiące temu·discuss
Author here. The new contribution of the research[0] this article visualizes is a measure of the adaptability of workers across different occupations, should they be displaced by AI.

> But there’s another dimension to the picture. Some workers will find it easier to adapt, the researchers argue, based on factors like their savings, age and transferrable skills.

> Most web designers will be fine. Many secretaries will not. The most vulnerable occupations are largely held by women.

[0]: https://www.brookings.edu/articles/measuring-us-workers-capa...
kschaul
·10 miesięcy temu·discuss
Glad you’re find the tool interesting! A short blog post behind it: https://kschaul.com/post/2023/04/16/feedmaker-quickly-genera...

And the GitHub url (hopefully easy to host your own instance): https://github.com/kevinschaul/feedmaker