HN user

chrtze

1,243 karma
Posts78
Comments10
View on HN
reactflow.dev 1y ago

Show HN: Reusable components for React Flow based on shadcn UI

chrtze
2pts0
reactflow.dev 2y ago

React Flow 12: node-based UIs with computing flows and server-side rendering

chrtze
8pts1
www.xyflow.com 2y ago

Svelte Flow – a library for rendering interactive node-based UIs

chrtze
1pts0
svelteflow.dev 2y ago

Show HN: Svelte Flow – open-source library for building node-based UIs

chrtze
8pts2
reactflow.dev 3y ago

Integrating React Flow and the Web Audio API

chrtze
3pts0
reactflow.dev 3y ago

How React Flow became a financially sustainable open source library

chrtze
4pts0
reactflow.dev 3y ago

We lost our slick new NPM package name (and then got it back)

chrtze
4pts0
reactflow.dev 4y ago

React Flow v10

chrtze
4pts1
datablocks.pro 5y ago

Show HN: Datablocks – editor for exploring and transforming data without code

chrtze
6pts0
webkid.io 5y ago

Datablocks – a node based editor for working with data

chrtze
3pts0
fragdenstaat.de 5y ago

Data visualization shows all demonstrations in Berlin since 2018

chrtze
1pts0
github.com 5y ago

Show HN: Highly customizable React library for creating node-based graphs

chrtze
5pts0
reactflow.dev 5y ago

React flow: library for building interactive node-based editors and graphs

chrtze
3pts0
interaktiv.morgenpost.de 5y ago

Interactive Tool: Cut a Map and Compare Data

chrtze
1pts0
webkid.io 6y ago

React-flow: a library to create interactive node-based graphs

chrtze
155pts19
www.zeit.de 6y ago

Interactive tool to explore all words spoken in the German Parliament since 1949

chrtze
2pts0
github.com 7y ago

Open source tool for merging datasets

chrtze
2pts0
blog.webkid.io 8y ago

Data Visualizations about the German Election

chrtze
1pts0
interaktiv.morgenpost.de 9y ago

Tool to compare the size of the iceberg that detached from Larsen C

chrtze
1pts0
interaktiv.morgenpost.de 9y ago

Party Strongholds in Germany Visualized

chrtze
1pts0
blog.webkid.io 9y ago

Making maps with React

chrtze
5pts0
interaktiv.morgenpost.de 9y ago

Interactive map shows dimensions of Trumps Mexican border plans

chrtze
2pts0
github.com 9y ago

Best practice examples of data journalism and visualization projects

chrtze
214pts10
interaktiv.morgenpost.de 9y ago

Berlin Marathon interactive map

chrtze
3pts0
berlinwahlkarte2016.morgenpost.de 9y ago

Berlin election map 2016

chrtze
2pts0
blog.webkid.io 10y ago

Document classification in JavaScript

chrtze
7pts0
blog.webkid.io 10y ago

How to analyze satellite images with Google Earth Engine

chrtze
4pts0
www.nzz.ch 10y ago

Algorithm to predict who will win the EURO16

chrtze
4pts0
blog.webkid.io 10y ago

Neural Networks in JavaScript

chrtze
170pts26
www.taz.de 10y ago

How refugee routes into Europe are changing

chrtze
3pts0
Awesome D3 11 years ago

We wanted to focus more on tools and plugins, not on visualization examples because many resources for that already exist.

D3 implements many other features like scales and stuff. The two just have some parts in common when it comes to DOM-manipulations and selections.

Yes you can. Both libraries are based on document.querySelectorAll which has the same selectors as you know them from CSS.

That's true. I am still often missing the shorthand versions if jQuery when working with d3. For example doing something like this:

$('.foo').append('<div class="bar" data-selected="true"/>');

in d3 I have to go the long way:

d3.select('.foo') .append('div') .classed('bar', true) .attr('data-selected', true);

I have recently worked a lot with this plugin https://github.com/gka/d3-jetpack which includes some very nice helper functions!

From my perspective I would rather have $.select() instead of $() because it makes more clear what this function actually does.