HackerTrans
TopNewTrendsCommentsPastAskShowJobs

FelipeCortez

769 karmajoined il y a 14 ans

Submissions

Clojure 1.13 adds support for checked keys

clojure.org
225 points·by FelipeCortez·il y a 10 jours·47 comments

Artificial

inkandswitch.com
22 points·by FelipeCortez·il y a 21 jours·1 comments

Kubernetes in the Browser

github.com
8 points·by FelipeCortez·il y a 24 jours·0 comments

Under the hood of MDN's new front end

developer.mozilla.org
10 points·by FelipeCortez·il y a 3 mois·0 comments

The Miller Principle (2007)

puredanger.github.io
91 points·by FelipeCortez·il y a 3 mois·55 comments

AI 2026 Technology Radar

juxt.pro
2 points·by FelipeCortez·il y a 5 mois·0 comments

Toggle the "Light" Switch

incommonwith.com
3 points·by FelipeCortez·il y a 7 mois·0 comments

Using Postgres 18's temporal constraints

depesz.com
3 points·by FelipeCortez·il y a 10 mois·0 comments

Printing Types: Their History, Forms and Use

c82.net
3 points·by FelipeCortez·il y a 10 mois·0 comments

comments

FelipeCortez
·il y a 20 jours·discuss
You can use Clojure to get all the goodness from Java and still have fun
FelipeCortez
·il y a 20 jours·discuss
If you want to learn the mumbo-jumbo other commenters are using freely in their comments: https://www.musictheory.net/lessons

If you want to learn why your flute's FFT visualization has multiple bumps, get a copy of Curtis Roads' Computer Music Tutorial from the local library

If you want to learn to play an instrument, hire a teacher!
FelipeCortez
·le mois dernier·discuss
try it!

  data:text/html,<grid><p>A</p><p>B</p><p>C</p></grid><style>grid{display: grid}</style>
afaik to create a CustomElement you need to use dashes, yes, but in this example `<grid>` is an HTMLUnknownElement, which renders just fine. some discussion here: https://stackoverflow.com/a/22545622/2393963
FelipeCortez
·le mois dernier·discuss
Both stories are in the compilation Exhalation, but OP’s description matches what I remember from the story I mentioned more than the one you linked
FelipeCortez
·le mois dernier·discuss
don't you mean "The Truth of Fact, The Truth of Feeling"? I think that matches your description more, but I could be wrong
FelipeCortez
·le mois dernier·discuss
Julia Evans has a fun blog post using Julia to visualize Gunzip: https://jvns.ca/blog/2013/10/24/day-16-gzip-plus-poetry-equa...

you should totally do a "Janet writes Janet" version
FelipeCortez
·il y a 2 mois·discuss
RateYourMusic’s recommendations are solid
FelipeCortez
·il y a 2 mois·discuss
so they can rewrite it in Rust?
FelipeCortez
·il y a 2 mois·discuss
I love Temporal and am DBOS-curious. what do you think DBOS does better?
FelipeCortez
·il y a 3 mois·discuss
1x5 can also work if you take advantage of subpixel rendering https://www.msarnoff.org/millitext/
FelipeCortez
·il y a 3 mois·discuss
the scarf matches the one Rich is wearing near the end of the documentary. the code matches what's on the Clojure source code, even if it's an odd choice. the two belts are in the draft, even if only one of them features the logo. the artist's instagram has a bunch of well colorized artwork. I believe it is really human made
FelipeCortez
·il y a 3 mois·discuss
I don't think it is, considering they highlighted it in a post about human craft [1]. I read somewhere it was illustrated by felipemelo.net, but can't find the reference anymore

[1]: https://bsky.app/profile/cultrepo.bsky.social/post/3mjhubrh3...
FelipeCortez
·il y a 3 mois·discuss
The Wikidata documentation is good:

https://www.wikidata.org/wiki/Wikidata:Introduction

And you can find lots of SPARQL examples here:

https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/...
FelipeCortez
·il y a 3 mois·discuss
that's kind of what P800 (notable work) is doing, but you can try some approximations to "major work" with "has both an English Wikipedia page and a Goodreads link":

  ?work wdt:P50 ?author ;
        wdt:P577 ?publicationDate ; 
        wdt:P8383 ?goodreadsID .

  ?article schema:about ?work ;
           schema:isPartOf <https://en.wikipedia.org/> ;
           schema:inLanguage "en" .
FelipeCortez
·il y a 3 mois·discuss
This is actually a good fit for a Wikidata SPARQL query you can run here https://query.wikidata.org/:

  SELECT ?work ?workLabel ?author ?authorLabel ?publicationDate ?ageAtPublication
  WHERE {
    ?author wdt:P569 ?birth .
    ?author wdt:P570 ?death .
    ?author wdt:P800 ?work .
  
    ?work wdt:P50 ?author ;
          wdt:P31 wd:Q47461344 ;
          wdt:P577 ?publicationDate .
  
    FILTER(?publicationDate <= ?death)
  
    BIND(YEAR(?publicationDate) - YEAR(?birth) AS ?ageAtPublication)
    FILTER(?ageAtPublication > 60)
  
    SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  }
  ORDER BY DESC(?ageAtPublication)
  LIMIT 300
FelipeCortez
·il y a 4 mois·discuss
I always thought it was native. You can write extensions using React, yes, but I was under the impression those got compiled to their internal Swift-based UI components
FelipeCortez
·il y a 5 mois·discuss
MusicTheory's interval ear training app is free and has a bunch of extra options: https://www.musictheory.net/exercises/ear-interval
FelipeCortez
·il y a 6 mois·discuss
> doesn't mean curl or numpy should be its own company, or that the AI Labs need to fund them.

you'd be surprised

https://numpy.org/about/#sponsors https://curl.se/sponsors.html
FelipeCortez
·il y a 7 mois·discuss
you should try The Witness
FelipeCortez
·il y a 7 mois·discuss
because serving requires resources