Tootfinder

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

@arXiv_csCY_bot@mastoxiv.page
2025-07-08 11:48:31

Real-Time AI-Driven Pipeline for Automated Medical Study Content Generation in Low-Resource Settings: A Kenyan Case Study
Emmanuel Korir, Eugene Wechuli
arxiv.org/abs/2507.05212

@michabbb@social.vivaldi.net
2025-06-05 09:16:12

🛠️ Maintains #React-based #ink terminal UI while core engine gets performance boost
🔄 Current #TypeScript version continues receiving bugfixes during transition period
📦 Available now vi…

@arXiv_csPL_bot@mastoxiv.page
2025-07-01 08:26:23

Compiling a Q# Subset to QASM 3.0 in TypeScript via a JSON Based IR
Marcus Edwards
arxiv.org/abs/2506.23407 arxiv.org…

@lil5@social.linux.pizza
2025-05-30 07:51:01

type TimeoutID = ReturnType<typeof setTimeout>;
const n: TimeoutID = setTimeout(...
clearTimeout(n)
Use this so that your typescript code works no matter the environment
No longer will I need to ask is this code using NodeJS.Timeout or number (browser)
#typescript #webdev

@joergi@chaos.social
2025-07-02 20:49:27

So, the days when PHP was "my" programming language, is gone for a long time.... (Kotlin (before Java) only at the moment bash)
But, I guess I will have a look now and then to make small PRs to the Pixelfed project to fix some small bugs.
... this time it was a typescript/vuejs bug
Totally simple but as I found it...

@cheeaun@mastodon.social
2025-06-29 08:46:39

Saw this "Followed hashtags" collapsible list on mastodon.social (v4.4.0 nightly), wondering how long the list of hashtags will be.
Turns out it's hard-coded to 4 🤷‍♂️
- Initial PR: github.com/mastodon/mastodon/p

Screen recording of the 'Followed hastags' collapsible list on mastodon.social
Code snippet in JavaScript showing the definition of a function named apiGetFollowedTags that fetches and sets followed tags and loading state, with error handling.
Screenshot of a React TypeScript code snippet defining a FollowedTagsPanel component that fetches and displays a limited number of followed hashtags with internationalized titles and collapsible panel UI.
@muhdiekuh@ruhr.social
2025-06-30 06:35:33

I really love TypeScript, but the fact that there is no `catch(SomeError e) {}` makes me really sad 😢

@bmariusz@techhub.social
2025-06-05 14:37:54

Day 3 1/2
TL;DR:
Added global `ValidationPipe` and unified `AllExceptionsFilter` in NestJS. API errors now follow a consistent format: `{ statusCode, error, message, code, details }`.
Today’s work focused on:
1. Standardizing input validation and error handling in the backend of the insurance sales network management system (NestJS, TypeScript, ESM, Turbo monorepo).
- Enabled global `ValidationPipe` with: `whitelist`, `forbidNonWhitelisted`, `transform`, `enableI…

@lil5@social.linux.pizza
2025-06-16 10:40:22

vitalics/rslike: Rust-like but for TypeScript/JavaScript
github.com/vitalics/rslike

@michabbb@social.vivaldi.net
2025-06-05 09:16:11

#OpenAI #Codex CLI Goes Native with #Rust Rewrite 🚀
⚡ Rewritten from #TypeScript to

@bmariusz@techhub.social
2025-06-04 18:29:39

Day 2:
TL;DR:
❌ `composite: true`
❌ `tsconfig.build.json`
✅ `paths` in `tsconfig.base.json`
✅ `include` shared libs explicitly where needed
✅ `turbo run build` just works
Wrestled for hours (~3) with TypeScript `project references` and `paths` in a Turbo monorepo (NestJS, ESM).
Turns out: if you want global aliases like `@my-lib/foo` to *just work* across apps — skip `composite: true` and `tsc --build`.
Project references and alia…

@bmariusz@techhub.social
2025-05-30 11:42:24

Day 0:
TL;DR: Set up the basic foundations for a new system: database schema finalized, core backend modules scaffolded, and initial API contracts defined. The real work begins now.
No hype. Just building.
Today I worked on building the core backend infrastructure for a cloud-native insurance platform. Key points:
Modular microservices architecture based on NestJS
PostgreSQL schemas designed for flexibility — no hardcoded values, all dynamic
Using TypeScript w…

@bmariusz@techhub.social
2025-06-11 14:45:25

Day 7
✅ 24 test suites, 153 tests passing.
Solid coverage across service and controller layers in my modular monorepo. Strict typing (TypeScript), full DTO validation, and realistic mocks across complex relations (TypeORM).
Next: fine-tuning error handling & exploring e2e strategies.