When I lived in Japan, I went to a meetup that would get organized every few weeks, and it was all about learning Swift. People with different coding levels, from beginners to more advanced devs would meet and share their progress in learning Swift. I want to start the same thing for Svelte now, this […]
Category Archives: svelte
Experimenting with Svelte (2): The doubts
- Posted in development javascript svelte website workflow - 3 comments
So… experiments with Svelte. The 2nd post (read the first one first!) I showed the beta website to a friend. I said it should be fast. He replied: fast is an understatement. It’s instant. That’s the good. Now… the bad. The realization has come that the Svelte community is still growing and many problems are […]
Experimenting with Svelte
- Posted in development svelte web website - 1 comment
I had to wait for 2 hours in a hospital today, so naturally I spend my time writing down long-winded thoughts in Notes.app. We are re-building our company website in Svelte. This seemed to spark some interest on Twitter, so I decided to write about it. This is a draft for a blog post that […]
Svelte event update
- Posted in community development events svelte
(I sent this e-mail to the attendees of the first Svelte Society Belgium event.) Hi Svelte enthusiasts, Svelte is picking up steam, with multiple Svelte events in the world, you can find out about them via https://twitter.com/sveltesociety I personally heard about a meeting in Amsterdam, one in Tokyo… there’s many things going on. Let’s hope […]
Write less, do more with Svelte
- Posted in development javascript svelte
A few days ago I watched Rich Harris’s talk at JSCamp. It offers a different perspective on Svelte than the talk I usually recommend when learning about Svelte – which is called Rethinking Reactivity. This talk is focussed on the idea “write less, do more” which was jQuery’s tagline. Rich Harris says that one of […]
Skilliverse demo
- Posted in data-visualisation development svelte
A demo I made of my “skilliverse” app that I made with Svelte.
Improving my programming skills
- Posted in computers development interface javascript side-projects svelte
Somewhere this year I started a journey to learn some more Javascript, mostly triggered by wanting to reach a next level in terms of user interface. In August the learning suddenly accelerated fast, mostly by getting excited about Svelte and finding myself with some extra time on my hands for the first time in a […]
Svelte screencasts
- Posted in development javascript svelte
I made some screencasts showing how to implement components in Svelte. Implement a Card component with Svelte 3 Implement a Table view with Svelte 3 I am working on a UI framework/method to rapidly prototype interfaces. As I build it I thought I would strategically record certain parts so our team and others can learn […]
Svelte: dynamic CSS classes
- Posted in svelte - 1 comment
I might start writing some blog posts to keep up with learning Svelte. I wrote this one, more might follow, but I am not promising anything ;). The first topic of today is :class. Take a look at this code, we add a class of .blue when foo is true: <script> var foo = true; […]