Momenteel zie ik deze models (nieuwe models worden snel toegevoegd bv GPT 5.1). Maar ze maken zelf de evaluatie bv Sonnet 4.5 vs Opus 4.1 (www.reddit.com/r/AugmentCod...). Augment rekent eigen "credits" aan maar ik heb er geen zicht op (werkgever betaalt).
18.11.2025 09:50
๐ 1
๐ 0
๐ฌ 1
๐ 0
@friemelkubus.bsky.social Goede ervaring met https://www.augmentcode.com (heeft alle models incl. claude). Goed voor complexe codebases ook
18.11.2025 00:21
๐ 1
๐ 0
๐ฌ 1
๐ 0
Ik dacht InvoiceNinja op te zetten en een integratie (Node.js/Python/PHP/โฆ) te bouwen om de UBL gemakkelijk naar een access point te sturen. En inkomende invoices van Peppol ook naar InvoiceNinja te pushenโฆ bij jou volledig custom invoices?
11.10.2025 19:27
๐ 1
๐ 0
๐ฌ 1
๐ 0
Hier ook van plan om een UBL te genereren en te verzenden via een access point. Welke software gebruik je voor de invoice opstellen en UBL?
11.10.2025 19:08
๐ 0
๐ 0
๐ฌ 1
๐ 0
Upcoming changes to the tadoยฐ API ยท Issue #151223 ยท home-assistant/core
Following our recent exchanges with the Home Assistant developers (@erwindouna et al.) over the past few months, weโd now like to track the upcoming changes in the form of a GitHub issue to ensure ...
Tado thinks there's big money in screwing over power users in Home Assistant by reducing the API to 100 requests/day, but it will generate more bad marketing than their server bill. Good reminder to only buy IoT with local API's. Does anyone have a good Tado alternative? ๐
github.com/home-assista...
08.09.2025 14:46
๐ 0
๐ 0
๐ฌ 0
๐ 0
@phoenix.tapbots.com Any news on the status and timeline for Phoenix ๐? Still expected in 2025?
01.09.2025 17:11
๐ 1
๐ 0
๐ฌ 0
๐ 0
Samson & Marie Lofi ๐ธ Rustige beats om te relaxen ๐
YouTube video by Studio 100
Dit is goud: een livestream met lofi Samson-nummers om op te studeren of relaxen: www.youtube.com/live/QS_FShd...
24.06.2025 07:52
๐ 16
๐ 3
๐ฌ 1
๐ 0
๐ฅณ It's an exciting day! ๐ฅณ
Thanks to Webflow GSAP is now 100% FREE - including ALL of the bonus plugins like SplitText, MorphSVG, and all the others that were exclusively available to Club GSAP members.
We can't wait to see what you make!
gsap.com/blog/3-13
30.04.2025 17:46
๐ 305
๐ 87
๐ฌ 8
๐ 15
My current setup
An exhaustive list of all the tools I use in my daily workflow.
Over the weekend, I recreated my personal webpage that was stale for 10+ years. Small minimal Next.js app on Cloudflare Pages with Tailwind 4 and a few motion.dev micro-animations.
Now I can actually publish content, like this first Uses blogpost โจ jessedobbelae.re/blog/uses
17.02.2025 12:57
๐ 3
๐ 0
๐ฌ 0
๐ 0
bluesky-comments
Embed Bluesky comments on your website. Latest version: 0.9.0, last published: a month ago. Start using bluesky-comments in your project by running `npm i bluesky-comments`. There are no other project...
Saw a few cases using Bluesky for comments, e.g. wouterds.com/blog/moving-.... It uses this npm package (www.npmjs.com/package/blue...), however it's React. There might be ways to replicate it with vanillaJS or turn the idea into a Kirby plugin...
05.02.2025 09:47
๐ 1
๐ 0
๐ฌ 2
๐ 0
New JavaScript Set Methods
const set1 = new Set(['wes', 'kait']);
const set2 = new Set(['wes', 'scott']);
Difference
Elements in set2 but not in set1
set2.difference(set1)
> ['scott']
Intersection
Elements that exist in both sets
set1.intersection(set2)
> ['wes']
Symmetric Difference
Elements in either set, but not both
set1.symmetricDifference(set2)
> ['kait', 'scott']
Union
All elements from both sets
set1.union(set2)
> ['wes', 'kait', 'scott']
Is Disjoint From
True if sets share no elements
set1.isDisjointFrom(set2)
> false
Is Subset Of
True if all elements are in other set
set1.isSubsetOf(set2)
> false
Is Superset Of
True if it contains all other's elements
set1.isSupersetOf(set2)
> false
You should be using JavaScript sets more often
Now in all browsers and Node - these 7 new set methods are key for when trying to compare two arrays or sets of data.
21.01.2025 19:43
๐ 1609
๐ 149
๐ฌ 51
๐ 11
I'm using Synology Photos as a local & privacy-friendly setup. Interface is really similar to Google Photos. Has basic face & object recognition: community.synology.com/enu/forum/1/.... There's a trending self-hosted app "Immich" which does a similar thing immich.app/docs/feature...
06.01.2025 10:15
๐ 0
๐ 0
๐ฌ 0
๐ 0
Node.js โ Node v22.12.0 (LTS)
Node.jsยฎ is a JavaScript runtime built on Chrome's V8 JavaScript engine.
A new Node.js LTS Release is out! ๐ฅณ
v22.12.0 enables require(esm) by default!
Read more about that change and the rest of additions / fixes in our blog post / CHANGELOG: nodejs.org/en/blog/rele...
#nodejs #javascript
03.12.2024 22:32
๐ 162
๐ 36
๐ฌ 2
๐ 2
Deze artikels werden in dezelfde week geschreven.
โDe overheid wordt gรฉรฉn โBig Brotherโ die ieder bericht leest.โ stelt Verlinden. Sorry, maar de realiteit met camera's haalt u in.
23.11.2024 09:34
๐ 22
๐ 4
๐ฌ 1
๐ 0
An unordered / non-exhaustive list of things that helped scale Bluesky's infra efficiently:
+ Exiting the cloud (colocation)
+ HAProxy w/many Node backends
+ Go w/clever code
+ ScyllaDB
+ SQLite w/per user databases
+ Redis w/many instances
+ AMD servers w/many cores
+ Purchasing bandwidth directly
11.11.2024 03:54
๐ 1016
๐ 156
๐ฌ 60
๐ 26
Sky Bridge
Bring your favourite Mastodon apps and use them with Bluesky!
๐Hi Bluesky! If you're new like me, I found skybridge.fly.dev (backed by Bluesky) very useful to add your Bluesky account to Ivory (tapbots.com/ivory/mac/).
- iOS: Slide title bar to switch accounts
- macOS: click the avatar, or add a second panel to show both Mastodon & Bluesky timelines
04.11.2024 21:58
๐ 4
๐ 0
๐ฌ 0
๐ 0
DuckDB Is Not a Data Warehouse
DuckDB is a tool, not a product.
New post! Materialized View turned one last week. ๐ To celebrate, I wrote about whatโs good and bad about DuckDB.
04.11.2024 16:08
๐ 64
๐ 9
๐ฌ 2
๐ 4