Tootfinder

Opt-in global Mastodon full text search. Join the index!

No exact results. Similar results found.
@Techmeme@techhub.social
2025-07-19 13:41:00

Windsurf CEO Jeff Wang on what happened after co-founders Varun Mohan and Douglas Chen left for Google, and how Cognition's deal to acquire Windsurf unfolded (Jeff Wang/@jeffwsurf)
x.com/jeffwsurf/status/1946376

@Ruhrnalist@mastodon.social
2025-09-21 06:59:21

RE: mastodon.social/@jeffjarvis/11
Die Situation der privaten Medien in den USA zeigt, wie wichtig unabhängig finanzierte ÖR Medien für den Erhalt der Demokratie sind. Daher ist der Angriff von CDU Generalsekretär Linnemann auf d…

@fanf@mendeddrum.org
2025-07-21 11:42:03

from my link log —
yeri: JavaScript library for graphing timeseries data into an SVG.
code.lag.net/robey/yeri/
saved 2025-06-06

@aral@mastodon.ar.al
2025-07-21 10:22:10

🥳 New Kitten Release
• Improved Markdown parser
Kitten’s JavaScript tagged template strings (`kitten.html`) no longer fail to render as expected when interpolated values are used inside of Markdown where the Markdown render changes source order.
So, for example, the following will now work correctly, whereas, previously, the link source and link text would have been erroneously flipped:
kitten.html`
<markdown>
[${linkText}](${linkSource})

@michabbb@social.vivaldi.net
2025-07-21 20:40:11

🔧 Better-T Stack solves #JavaScript fatigue by providing ready-to-use tech combinations through an interactive CLI. Choose from #Svelte, #SvelteKit,

@whitequark@mastodon.social
2025-07-21 15:20:15

Q: why is javascript an ideal language for BPD girls?
A: it has an event for unhandled rejection of a promise

@jeang3nie@social.linux.pizza
2025-07-20 23:32:55

Finally getting around to playing with Typescript. Initial thoughts, I'm not sure how much value it really has over plain Javascript. I want to think it adds value, but I'm not sure that it does for the little i want to do with either. It "feels" better having types assigned, but the rare times I'm writing Javascript I'm thinking in types anyway and not really using libraries, plus always trying to go as minimal as possible. So I kind of doubt I'm catching many …

@kubikpixel@chaos.social
2025-09-15 10:05:13

»10 Gründe JavaScript zu hassen – oder zu lieben:
Drei Dekaden der Entwicklungsarbeit gehen auch an JavaScript nicht spurlos vorüber. Im Guten, wie im Schlechten.«
Hach ja, wie in jeder Programmiersprache macht deren Einsatz je nach Lösung seinen Sinn - JavaScript mMn nur bei Web-Oberflächen und dann aber bitte so Datenschutz sicher wie möglich in TypeScript.
🧑‍💻

@zachleat@zachleat.com
2025-07-21 22:30:00

@… Temporal seems to use RFC 9557 which is a much stricter date format developer.mozilla.org/en-US/do

@aral@mastodon.ar.al
2025-08-18 10:00:39

Coming soon (likely this afternoon, I’m writing tests and docs and updating examples as we speak)…
This is the sort of thing you’ll be able to do with Markdown pages. Just pop any arbitrary JavaScript you want in the new script block in the front matter and then import and use components as well as plain old JavaScript tagged template variable interpolation (not shown in this example) inside your Markdown.
The screen has all the code (sans the end of the last line of CSS and the…

Screenshot: three windows: left side: Source of index.page.md, top-right browser showing running web app, bottom-right, source of Button and Reactions components.

Contents of windows:

index.page.md:

---
title: An interactive markdown page
script: |
  import Reaction from './Reaction.fragment.js'

  // Initialise database if necessary.
  kitten.db.reactions ??= {}
  kitten.db.reactions.Heart ??= 0
  kitten.db.reactions.Confetti ??= 0
  kitten.db.reactions.Smiley ??= 0

  let page

  expo…