Jesse Dobbelaere's Avatar

Jesse Dobbelaere

@jessedobbelae.re

Still in beta. Software engineer at http://showpad.com with interest in Data & Analytics ๐Ÿ”— https://jessedobbelae.re

139
Followers
541
Following
12
Posts
02.10.2023
Joined
Posts Following

Latest posts by Jesse Dobbelaere @jessedobbelae.re

Post image

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
Preview
a16z-backed data firms Fivetran, dbt Labs to merge in all-stock deal Data startups Fivetran and dbt Labs will merge in an all-stock deal, creating a combined data infrastructure company with nearly $600 million in annual revenue, the two companies told Reuters.

Andreessen Horowitz is about to merge Fivetran and dbt Labs? And Fivetran acquired SQLMesh just a month ago too! www.reuters.com/business/a16...

13.10.2025 15:19 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 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
Preview
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
Preview
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
Video thumbnail

๐Ÿฅณ 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
Preview
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
Preview
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

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
Preview
LG teases upcoming UltraFine 6K Display with Thunderbolt 5 and stunning slim bezel design LG unveiled a beautiful new 6K display at CES 2025, dubbed the LG UltraFine 6K Display. It marks the first 6K monitor to incorporate Thunderbolt 5, a feature recently introduced by Apple in the new and M4 Pro MacBook Pro models launched in November.โ€ฆ

LG teases upcoming UltraFine 6K Display with Thunderbolt 5 and stunning slim bezel design

07.01.2025 00:21 ๐Ÿ‘ 38 ๐Ÿ” 6 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0

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
Preview
Node.js Now Supports TypeScript By Default TypeScript is coming to Node 23. Let's break down what that means.

Node.js now supports TypeScript.

Here's everything you need to know:

www.totaltypescript.com/typescript-i...

27.12.2024 17:00 ๐Ÿ‘ 332 ๐Ÿ” 83 ๐Ÿ’ฌ 9 ๐Ÿ“Œ 8
Preview
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
Post image Post image

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
Preview
Add an emitter and event store interface in the tracker core to be used both by the browser and node trackers and use fetch API for making requests (close #1076) by matus-tomlein ยท Pull Request #1337 ... This PR replaces the XMLHttpRequest API in the browser tracker and the got library in the Node tracker with the fetch API in order to make requests to the collector using a common code base. The ch...

I noticed Snowplow released v4 last week where they removed the sendBeacon call in favor of Fetch API + keepalive ๐Ÿค” Similar to Sentry. github.com/snowplow/sno... (`out_queue.ts`)

04.11.2024 22:50 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Preview
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
Preview
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