j'ai pas vu un seul mec qui soutenait tiky
22.03.2025 20:30 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0@voithure.bsky.social
Developer ๐๐ซ๐ท Paris https://github.com/arthur-fontaine https://x.com/voithure https://arthurfontaine.fr
j'ai pas vu un seul mec qui soutenait tiky
22.03.2025 20:30 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Today we're thrilled to announce our effort to port the TypeScript compiler and language service to native code, gaining a 10x speed boost in build times and editor responsiveness!
devblogs.microsoft.com/typescript/t...
But just as Johnny-five is based on a JavaScript library (don't remember its name), it would be possible to make a TS library based on Espiruino?
28.02.2025 14:30 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0. @sumyerradi.bsky.social Really cool talk at #TSLaconfParis #arduinoparis, but isn't it possible to do without the USB cable (which is annoying)? You talked about Esprino (or something like that), the only drawback is that it's not typesafe, no? So why not make a fork of it typesafe?
28.02.2025 13:40 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0Surprised that PWA isn't a dead tech yet, at least on Android.
- the app appears in the app drawer
- you can define shortcuts for your app
3 years ago, I decided to be a PWA hater due to this lack of nativeness, but this morning, I might have changed my mind.
Yep, my dish seems to smell great ๐
I just finished implementing Flows.
In `flow.ts`, I defined a schema with an `otherLinks` property, passed it to the `addToQueue` function, and ran the command. It now works like a full scraper/crawler.
github.com/arthur-fonta...
(the demo video is sped up 8x)
Just type slowly
20.02.2025 11:20 โ ๐ 5 ๐ 0 ๐ฌ 0 ๐ 0I think I am cooking ๐จโ๐ณ
- AI-based scraper
- Use any OpenAI-compatible API
- Use any Puppeteer-compatible browser
- Designed to be simple (auto load your Zod schema, just specify the URL in the command)
github.com/arthur-fonta...
In the example:
- Model: google/gemini-2.0-pro
- Browser: Lightpanda
My dream is to have a CLI command in Astro that lets me generate code easily and quickly.
`npx astro make:action`
`npx astro make:table`
`npx astro make:page`
`npx astro make:collection`
`npx astro make:content`
...
Similar to the Symfony Console, Adonis Ace, Laravel Artisan, etc.
I saw that plugins are coming to Biome 2.0. I think we will see a lot of rules that haven't been implemented yet coming later this year
10.02.2025 22:18 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0Just released my new website! (only in French for now)
04.02.2025 14:53 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0Okay, thanks for your answer!
02.02.2025 13:39 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0@en.sitnik.ru really good talk at FOSDEM about local-first application and privacy ๐.
I like the API of Logux, but the last release was 4 months ago. Is it stable enough that it doesn't need frequent releases? Or have you "abandoned" the project?
Do you still recommend using it?
import { createStateMachine } from "../../../shared/pkg/nanostores-state-machine/nanostores-state-machine"; interface SessionStore { token: string | null; } export const sessionMachine = createStateMachine() .context<SessionStore>({ token: null, }) .events<{ login: { token: string }; logout: undefined; }>() .states({ authenticated: (state) => state .onEntry((context, set) => set({ token: context.token })) .onReceive({ logout: () => "unauthenticated", }), unauthenticated: (state) => state .onEntry((_, set) => set({ token: null })) .onReceive({ login: (_, set, { token }) => { set({ token }); return "authenticated"; }, }), }) .initial("unauthenticated") .stateMachine;
It is really easy to use as it is perfectly typed, but here's an example
08.01.2025 21:22 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0This afternoon I built a type-safe state machine builder that uses Nanostores and that is inspired by XState.
Not published yet as an NPM package (and may never be), so if you are interested to use it (let me know), you can copy-paste this code to your utils dir:
gist.github.com/arthur-fonta...
Evan You said Theo - would be much better if you reached out first. Rolldown itself is beta but we haven't really made a proper release for Rolldown-Vite yet so you are testing the wrong target. There are some unfortunate issues with your benchmarks: 1. Rolldown-Vite doesn't need `vite-plugin-react` because JSX handling is built-in. You are basically paying the cost of Babel transform on every module for nothing in your benchmark when it can be done in Rust! 2. Rolldown-Vite ports many Vite-internal JS plugins to Rust, but they are not enabled by default currently. When we do a proper release, we will ask users to opt-in to native mode so we can more gradually test drive and phase it in. When opted-in, Rolldown-Vite is more than 3x faster than current Vite. 3. The bundle size issue is a known issue (de-optimized CJS bindings because React is still... CJS) and has a fix incoming. Relevant PR to your benchmarking repo: https://github.com/t3dotgg/rolldo
01.01.2025 13:59 โ ๐ 8 ๐ 0 ๐ฌ 0 ๐ 0Agrume ๐โ๐ฉ
Backend for/in frontend library
๐ Allows you to write your backend directly in your frontend
๐๏ธ Working with most build tools (Vite, Webpack, etc.)
โก You can also do realtime API
๐ No vendor lock-in, you're not tied to Agrume
agrume.js.org