Standard Search
About 209 results
Showing the first 200 results.
https://www.coryd.dev/posts/2023/displaying-now-playing-data-with-matching-emoji-using-netlify-edge-functions-and-eleventy · 25 Aug 2023
My site is built using 11ty and is rebuilt once an hour. These frequent rebuilds accomplish a few things, notably updating webmention data and keeping my now page current.
https://jakelazaroff.com/words/building-a-live-coding-audio-playground/ · 21 Aug 2023
Two weeks at Recurse went by fast! I started out trying to build an Audio Units extension and — in a classic yak shave — ended up building a live coding audio playground.
https://ayc0.github.io/posts/intlsegmenter-dont-use-stringsplit-nor-stringlength · 25 Jul 2023
UTF is tricky: the length of a string can mean a lot of different things based on whether you want the number of code points, code units, and graphemes. What are the differences, and how can we navigate through those using JavaScript?
https://jakelazaroff.com/words/an-extremely-simple-react-starter-kit/ · 21 Jul 2023
If you’re worried about complexity in the JavaScript ecosystem, you might be sleeping on one of my favorite web development tools: esbuild!
https://www.coryd.dev/posts/2023/road-to-madness-charting-apple-music-listening-data · 21 Jul 2023
I've written before about displaying my listening data from Apple Music but, recently, I've attempted to take things a bit further.
https://blog.nove-b.dev/posts/javascript-count-vs-pluspluscount · 28 Jun 2023
なんとなく怪しいので、count++と++countについて調べてメモしておく。 実行してみる 前置インクリメント演算子 pre()の方はcountの値が1増えてから更新された値が返されるので、1が出力され...
https://hacdias.com/2023/06/24/procedural-map-generation-with-noise/ · 24 Jun 2023
Using JavaScript and Perlin and Simplex noise to procedurally generate a map with different biomes.
https://blog.nove-b.dev/posts/test-let-specification-javascript · 21 Jun 2023
先日、とあるSNSを見ていたら、JavaScriptの問題が出されていた。 さて、ここで問題 このコードを実行した結果、どのような結果が求められるでしょう。 予想 面白そうなので実行する前に...
https://www.coryd.dev/posts/2023/displaying-listening-data-from-apple-music-using-musickitjs · 21 Jun 2023
Up until now my now page has sourced music data from Last.fm (and may well again). But, in the interest in experimenting a bit, I've tried my hand at rewriting that part of the page to leverage data from Apple Music, using MusicKit.js instead.
https://blog.nove-b.dev/posts/convert-number-unary-plus-javascript · 13 Jun 2023
他人のコードを盗み見ていた時+'0'なるコードを発見しなんだろうと調べてみた。 職人の技は目で盗め ってよく昔気質な職業で聞かれる言葉だけど、有名で最先端の技術がオープンソース...