HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mfiguiere

74,530 karmajoined 14 лет назад

Submissions

GPT-5.6 Sol Ultra will be in Codex

twitter.com
415 points·by mfiguiere·6 дней назад·403 comments

Spotify Challenges Prediction Markets After Song Chart Rigging

bloomberg.com
4 points·by mfiguiere·6 дней назад·0 comments

EdgeBench: Unveiling Scaling Laws of Learning from Real-World Environments [pdf]

edge-bench.org
2 points·by mfiguiere·8 дней назад·0 comments

A Field Guide to Fable: Finding Your Unknowns

twitter.com
2 points·by mfiguiere·9 дней назад·0 comments

Fable 5 is Back

twitter.com
407 points·by mfiguiere·11 дней назад·419 comments

AI: The ROI Runway Could Be Long Outside the Tech Sector

apollo.com
5 points·by mfiguiere·12 дней назад·0 comments

Anthropic Moves Toward Deal with US to Lift Curbs on AI Models

bloomberg.com
3 points·by mfiguiere·16 дней назад·1 comments

Can you spot the expensive AI?

theblindtest.io
2 points·by mfiguiere·16 дней назад·0 comments

OpenAI leans toward waiting until next year for IPO

nytimes.com
179 points·by mfiguiere·17 дней назад·154 comments

Apple to Skip High-End M6 Mac Chips in Favor of AI-Focused M7 Line

bloomberg.com
19 points·by mfiguiere·17 дней назад·2 comments

Claude Code now supports artifacts

claude.com
4 points·by mfiguiere·24 дня назад·1 comments

Apple Reveals Plans to Raise Prices

wsj.com
13 points·by mfiguiere·24 дня назад·0 comments

Game Engine White Papers: Commander Keen

forgottenbytes.net
240 points·by mfiguiere·27 дней назад·80 comments

Java's Project Valhalla lands a preview in JDK 28

theregister.com
4 points·by mfiguiere·27 дней назад·0 comments

Anthropic staff to meet White House officials next week

reuters.com
28 points·by mfiguiere·28 дней назад·3 comments

Prompting Claude Fable 5

platform.claude.com
5 points·by mfiguiere·30 дней назад·0 comments

Device Clock Generation (2025)

zipcpu.com
25 points·by mfiguiere·в прошлом месяце·2 comments

The Untrainable

saranormous.substack.com
3 points·by mfiguiere·в прошлом месяце·0 comments

Initial impressions of Claude Fable 5

simonwillison.net
20 points·by mfiguiere·в прошлом месяце·2 comments

Canonical Experimenting With x86-64-v3 Packages For Ubuntu 26.10

phoronix.com
2 points·by mfiguiere·в прошлом месяце·0 comments

comments

mfiguiere
·3 месяца назад·discuss
Wrong link. Technical, Cognitive and Intent Debt was discussed here: https://martinfowler.com/fragments/2026-04-02.html
mfiguiere
·4 месяца назад·discuss
TLDR

* Destructuring via Record Patterns

The most prominent feature is the ability to use a record pattern on the left-hand side of a local variable declaration. This allows you to "destructure" an object and initialize multiple variables in a single statement.

Traditional way:

  Point p = getPoint();
  int x = p.x();
  int y = p.y();
Enhanced way:

  Point(int x, int y) = getPoint();
This also supports nested patterns, allowing you to reach deep into an object hierarchy in one go:

  Circle(Point(int x, int y), double radius) = getCircle();
* Pattern Matching in Enhanced for Loops

You can now use these same record patterns in the header of an enhanced for loop to extract data from every element in a collection or array.

  for (Circle(Point(int x, int y), double radius) : circles) {
      // Directly use x, y, and radius here
  }
mfiguiere
·5 месяцев назад·discuss
IBM down 11% following this blog post: https://www.google.com/finance/beta/quote/IBM:NYSE
mfiguiere
·5 месяцев назад·discuss
In Claude Code 2.1.45:

  1. Default (recommended)   Opus 4.6 · Most capable for complex work
   2. Opus (1M context)        Opus 4.6 with 1M context · Billed as extra usage · $10/$37.50 per Mtok
   3. Sonnet                   Sonnet 4.6 · Best for everyday tasks
   4. Sonnet (1M context)      Sonnet 4.6 with 1M context · Billed as extra usage · $6/$22.50 per Mtok
mfiguiere
·8 месяцев назад·discuss
Bloomberg's Mark Gurman:

> As I wrote a month ago, Apple is due for a major management shake-up and the spotlight is squarely on John Ternus as Tim Cook’s successor as CEO. But I don’t get the sense anything is imminent as the FT is claiming.

https://twitter.com/markgurman/status/1989764365705515220
mfiguiere
·10 месяцев назад·discuss
DHS Proposal: Weighted Selection Process for Registrants and Petitioners Seeking to File Cap- Subject H-1B Petitions [1]

Summary: USCIS would use the Occupational Employment and Wage Statistics (OEWS) wage levels for the relevant job classification (SOC code) and location to determine how many times a registration is entered into the selection pool.

Registrations would be weighted like this:

  • Wage Level IV → 4 entries

  • Wage Level III → 3 entries

  • Wage Level II → 2 entries

  • Wage Level I → 1 entry
A “unique beneficiary” is counted once toward numerical allocations, no matter how many registrations are submitted for them or how many entries they get in the weighted pool.

[1] https://public-inspection.federalregister.gov/2025-18473.pdf