HackerTrans
TopNewTrendsCommentsPastAskShowJobs

FelipeCortez

769 karmajoined 14 jaar geleden

Submissions

Clojure 1.13 adds support for checked keys

clojure.org
225 points·by FelipeCortez·10 dagen geleden·47 comments

Artificial

inkandswitch.com
22 points·by FelipeCortez·21 dagen geleden·1 comments

Kubernetes in the Browser

github.com
8 points·by FelipeCortez·24 dagen geleden·0 comments

Under the hood of MDN's new front end

developer.mozilla.org
10 points·by FelipeCortez·3 maanden geleden·0 comments

The Miller Principle (2007)

puredanger.github.io
91 points·by FelipeCortez·3 maanden geleden·55 comments

AI 2026 Technology Radar

juxt.pro
2 points·by FelipeCortez·5 maanden geleden·0 comments

Toggle the "Light" Switch

incommonwith.com
3 points·by FelipeCortez·7 maanden geleden·0 comments

Using Postgres 18's temporal constraints

depesz.com
3 points·by FelipeCortez·10 maanden geleden·0 comments

Printing Types: Their History, Forms and Use

c82.net
3 points·by FelipeCortez·10 maanden geleden·0 comments

comments

FelipeCortez
·20 dagen geleden·discuss
You can use Clojure to get all the goodness from Java and still have fun
FelipeCortez
·20 dagen geleden·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
·vorige maand·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
·vorige maand·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
·vorige maand·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
·vorige maand·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
·2 maanden geleden·discuss
RateYourMusic’s recommendations are solid
FelipeCortez
·2 maanden geleden·discuss
so they can rewrite it in Rust?
FelipeCortez
·2 maanden geleden·discuss
I love Temporal and am DBOS-curious. what do you think DBOS does better?
FelipeCortez
·3 maanden geleden·discuss
1x5 can also work if you take advantage of subpixel rendering https://www.msarnoff.org/millitext/
FelipeCortez
·3 maanden geleden·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
·3 maanden geleden·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
·3 maanden geleden·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
·3 maanden geleden·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
·3 maanden geleden·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
·4 maanden geleden·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
·5 maanden geleden·discuss
MusicTheory's interval ear training app is free and has a bunch of extra options: https://www.musictheory.net/exercises/ear-interval
FelipeCortez
·6 maanden geleden·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
·7 maanden geleden·discuss
you should try The Witness
FelipeCortez
·7 maanden geleden·discuss
because serving requires resources