<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Stephane&#39;s notes</title>
  <subtitle>Short notes about tech and everything around it.</subtitle>
  <link href="https://rodet.org/feed.xml" rel="self"/>
  <link href="https://rodet.org/"/>
  <updated>2025-11-23T00:00:00Z</updated>
  <id>https://rodet.org/</id>
  <author>
    <name>Stephane Rodet</name>
    <email>info@rodet.org</email>
  </author>
  
  <entry>
    <title>A new, faster way for starting Carbon Design System projects</title>
    <link href="https://rodet.org/notes/2025/11-23-carbon-starter/"/>
    <updated>2025-11-23T00:00:00Z</updated>
    <id>https://rodet.org/notes/2025/11-23-carbon-starter/</id>
    <content type="html">&lt;p&gt;Getting a Carbon Design System project off the ground quickly is often a challenge for most teams, so we built a template to solve that.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://rodet.org/assets/images/2015-11-23-carbon-starter/carbon-starter-homepage.jpg&quot; alt=&quot;The home page of the template starter app&quot;&gt;&lt;/p&gt;
&lt;p&gt;A couple talented folks (Lee Chase, Michael A., Josip Ledić...) and myself have been working on this for a good part of the year - a ready to use template project with the Carbon Design System. We decided to go with React because that&#39;s what most teams use at the moment. We also wanted to demonstrate how Carbon should be best integrated, so the whole UI loads fast (server-side rendering, separation of the CSS bundle), with dark &amp;amp; light theming, a responsive layout, some sample unit tests and more. We estimate it will save at least 1 to 2 weeks of work to every team using it, but this is not counting the optimizations we pulled it to make it fast and robust (and we&#39;re probably not yet done with that). The main advantage is to start from a common baseline that contains things that users expect nowadays like a good theming support.&lt;/p&gt;
&lt;p&gt;It is also a great demo project for existing teams, to show how to best use the Carbon grid and the design system tokens (instead of fragile, hard-coded values).&lt;/p&gt;
&lt;p&gt;Already this project is gaining good traction, with more than 700 clones in the last two weeks.&lt;/p&gt;
&lt;p&gt;Go try it! We welcome feedback, issues and pull requests.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/carbon-design-system/carbon-react-router-starter&quot;&gt;https://github.com/carbon-design-system/carbon-react-router-starter&lt;/a&gt;&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>The distortion of social media</title>
    <link href="https://rodet.org/notes/2025/01-12-distortion-of-social-media/"/>
    <updated>2025-01-21T00:00:00Z</updated>
    <id>https://rodet.org/notes/2025/01-12-distortion-of-social-media/</id>
    <content type="html">&lt;p&gt;Really insightful and easy to read paper on the polarizing and distorting
effects of social media. This should be a must-read for every user.
Like everyone, I find it myself very hard to escape those behaviors.&lt;/p&gt;
&lt;p&gt;Find the PDF here:
&lt;a href=&quot;https://osf.io/preprints/psyarxiv/kgcrq&quot;&gt;Inside the Funhouse Mirror Factory: How Social Media Distorts Perceptions of Norms&lt;/a&gt;&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Thoughts on better housing</title>
    <link href="https://rodet.org/notes/2023/03-19-better-housing/"/>
    <updated>2023-03-19T00:00:00Z</updated>
    <id>https://rodet.org/notes/2023/03-19-better-housing/</id>
    <content type="html">&lt;p&gt;Today I stumbled on a fantastic video on YouTube called
&lt;a href=&quot;https://www.youtube.com/watch?v=VoYZlyBHyQM&quot;&gt;&amp;quot;How to turn your Neighborhood into a Village&amp;quot;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I found it eye opening how little citizens are, in average,
in control of their environment, and how many small and cheap solutions
could make life much more enjoyable together.&lt;/p&gt;
&lt;p&gt;Instead, we often look for expensive workarounds (listen to the comment about travelling
away for the weekend) while neglecting the local environment, but also at high
mental health cost for the inhabitants. People are lonely not only because of architecture,
but it&#39;s hard to think it has no role to play in the story.&lt;/p&gt;
&lt;p&gt;This is very refreshing to see new ideas come into urbanism, I can&#39;t wait to see more
of that applied everywhere.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Qualities of a frontend developer</title>
    <link href="https://rodet.org/notes/2022/02-17-frontend-skills/"/>
    <updated>2022-02-17T00:00:00Z</updated>
    <id>https://rodet.org/notes/2022/02-17-frontend-skills/</id>
    <content type="html">&lt;p&gt;Very often, I see people confused about the role
of a frontend developer. Those persons tend to think that
a frontend developer is just a developer, and that you
can have a backend developer assume the job of a frontend
developer in a matter of days (or weeks). I&#39;d argue that
coming to become a real productive frontend developer
takes one or more years. I think it is so because a frontend
developer requires some acquired capabilities that are just
not a part of the tool set of a backend developer.&lt;/p&gt;
&lt;p&gt;Good frontend developers make interfaces that are:&lt;/p&gt;
&lt;p&gt;&lt;br&gt;
&lt;img src=&quot;https://rodet.org/assets/images/efficiency.svg&quot; alt=&quot;Paper plane flying fast&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Efficient:&lt;/strong&gt; A good frontend is very lean in code. It doesn&#39;t
try to be perfect. For example, why using classes when you don&#39;t
need it? Also, every dependency should be stripped from the
delivered code, which called bundlers like Webpack to life. Everything gets
reduced to the minimum, because frontend developers know that most
of their code will be downloaded by the client. They also know how
to monitor the size and impact of the code they write to evaluate
not only the time it takes to execute, but also the weight downloaded
to client. They know that one byte is not always equal to one byte
when considering the impact to the page load time.
They optimize the code with asynchronous loading, but
in a way that has a minimal impact on the experience - choosing between
&lt;code&gt;async&lt;/code&gt; and &lt;code&gt;defer&lt;/code&gt;, for example.&lt;/p&gt;
&lt;p&gt;Frontend developers will also often code quick examples of features
in online tools like CodePen or CodeSandbox to test and share things
quickly. They will usually delay a full deployment when possible,
or when required will use dedicated tools like Netlify, that will
simplify the experience away so they can focus on their specialty instead.&lt;/p&gt;
&lt;p&gt;&lt;br&gt;
&lt;img src=&quot;https://rodet.org/assets/images/arch.svg&quot; alt=&quot;Paper plane flying fast&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Robust:&lt;/strong&gt; Frontend code, unlike server code, doesn&#39;t run in
a well-known and defined environment. You can be pretty sure that backend
developers are often staffed with frontend work in enterprise
products that list the browsers supported. That&#39;s not how it
works on the web. New browsers have to be accommodated for
(that means frontend developers must monitor beta versions
as they get released to be ready when they get released to the
general public), but also older browsers. New features should
fail gracefully. They can also have fallbacks, but we&#39;re back
to the first point where you can&#39;t just ship a full older browser
API to each user, so you have to carefully select what you
send over and when, possibly using feature detection.&lt;/p&gt;
&lt;p&gt;&lt;br&gt;
&lt;img src=&quot;https://rodet.org/assets/images/beautiful.svg&quot; alt=&quot;A circle with a shadow&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Beautiful:&lt;/strong&gt; Frontend developers code interfaces that
are elegant, beautiful, and have their own visual identity.
This is due to two acquired skills as well:
understanding of the design rules and learned taste from analyzing
and implementing proper designs. After a while, the frontend developer
becomes skilled into implementing designs in a pixel-perfect manner,
and even to correct small errors from the designs. They implement
the layout in a structure that supports the original structural intent
of the designer, so it behaves the right way on different sizes.
They are also able to engage in informed and qualitative feedback
with the designers to show where things could be improved.
Such a feedback is usually a mine field to start with for anyone
not well trained in the topic.&lt;/p&gt;
&lt;p&gt;&lt;br&gt;
&lt;strong&gt;Conclusion&lt;/strong&gt;
→ As you can see, those aptitudes require a mindset change for multiple
years to bring fruits and be applicable in business projects. Being
a frontend developer is a specialty of its own, and tools that pretend
to solve that in a few hours are just not telling the truth. They can
help with consistency, some tricky use cases, and other limited aspects,
but they won&#39;t solve all the points above.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>HCD and design thinking</title>
    <link href="https://rodet.org/notes/2021/10-18-hcd-design-thinking/"/>
    <updated>2021-10-18T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/10-18-hcd-design-thinking/</id>
    <content type="html">&lt;p&gt;Human centered design and design thinking - ever wondered how those two framework
relate to each other? As I am building a presentation on HCD
and artificial intelligence, I was wondering well and found this
by IDEO:
&lt;a href=&quot;https://designthinking.ideo.com/faq/whats-the-difference-between-human-centered-design-and-design-thinking&quot;&gt;What’s the difference between human-centered design and design thinking?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.trig.com/explore/design-thinking-and-human-centered-design-whats-the-difference&quot;&gt;Numerous&lt;/a&gt;
&lt;a href=&quot;https://medium.com/snapout/design-thinking-vs-human-centred-design-whats-the-difference-9ef855f55223&quot;&gt;articles&lt;/a&gt;
then go more in detail on that. In the end,
HCD and design thinking work hand in hand to provide great
outcomes that are doable, innovative, benefit the users and
minimize the negative side effects to society.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Article &quot;The Winners of Remote Work&quot;</title>
    <link href="https://rodet.org/notes/2021/09-09-remote-work/"/>
    <updated>2021-09-23T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/09-09-remote-work/</id>
    <content type="html">&lt;p&gt;&lt;a href=&quot;https://www.nytimes.com/2021/08/31/upshot/remote-work.html&quot;&gt;This article&lt;/a&gt;
gives a new point of view on the pros and cons
of remote work from an economic perspective. Interesting
because it steps away from the repeated &amp;quot;opinions&amp;quot; and go
more into the &amp;quot;what if?&amp;quot;. Make up your own mind.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Manage the dot files with git</title>
    <link href="https://rodet.org/notes/2021/06-22-dot-files/"/>
    <updated>2021-06-22T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/06-22-dot-files/</id>
    <content type="html">&lt;p&gt;Managing the unix configuration files in one&#39;s home directory
can be tricky. It turns out it&#39;s not as simple as creating
a git repository, because it usually needs to be empty on creation
(is that even possible with all this software that creates rogue
directories?), and will track all the files
not expressively added to &lt;code&gt;.gitignore&lt;/code&gt;. Today I found a good solution in
&lt;a href=&quot;https://www.atlassian.com/git/tutorials/dotfiles&quot;&gt;this tutorial&lt;/a&gt;.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Zen YouTube</title>
    <link href="https://rodet.org/notes/2021/06-06-zen-youtube/"/>
    <updated>2021-06-06T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/06-06-zen-youtube/</id>
    <content type="html">&lt;p&gt;I have to admit, I watch YouTube quite a lot those days.
I mean, what else can you do? OK, joking a bit here, but still
lockdown has its toll. It&#39;s important to admit that almost
no one can be expected to read about philosophy or complex topics
every evening (especially when you have small kids).&lt;/p&gt;
&lt;p&gt;What I found is that YouTube is a never-ending source of excellent
calming videos that can help me get my head free or better focus.
How? Let&#39;s see:&lt;/p&gt;
&lt;h1&gt;Lo-fi hip hop&lt;/h1&gt;
&lt;p&gt;The first time I got to hear lo-fi, I didn&#39;t like it. Can&#39;t remember
why, but I think this was also because of the rather low playlist
quality.&lt;/p&gt;
&lt;p&gt;After getting tired of hearing song lyrics while working, I gave
it another try and found the channel
&lt;a href=&quot;https://www.youtube.com/user/Chillhopdotcom&quot;&gt;Chillhop&lt;/a&gt; which to these days
is my favorite one. They provide super beautiful artwork and even
sell their music in physical form. Even our toddler likes those videos,
it sometimes help to get him asleep when he&#39;s nervous.&lt;/p&gt;
&lt;p&gt;There is hours and hours of lo-fi available, and not only on YouTube
but also on your favorite music streaming platform.&lt;/p&gt;
&lt;h1&gt;Train videos&lt;/h1&gt;
&lt;p&gt;Those days it&#39;s very hard to travel. But thanks to 4K and user-generated
content, travel videos have changed a lot. Away with the &amp;quot;best of&amp;quot;
travel tour with historic context and monument tours, and instead
welcome a &amp;quot;first person view&amp;quot; of travel.&lt;/p&gt;
&lt;p&gt;It all started with a recommendation of a
&lt;a href=&quot;https://www.youtube.com/watch?v=eZe4Q_58UTU&quot;&gt;1 hour walk in rainy New-York&lt;/a&gt;.
As I missed being there for a long time, I clicked on it and there
I was hooked&lt;/p&gt;
&lt;p&gt;Turns out there are lots of variations of that. There are videos from the
head of people walking or biking through cities, but also dashcams from
cars, and from trains or boats. You can even find some from gondola
in Venice. Crazy!&lt;/p&gt;
&lt;p&gt;One that I found the most addictive is looking
at a train travel from the eyes of a driver cabin. The ones &lt;a href=&quot;https://www.youtube.com/watch?v=nKOe2PuERD0&quot;&gt;through
Switzerland&lt;/a&gt; are the best.
They are usually taken on sunny days with
either snow or a beautiful green landscape. Looking at those allows
one to see the roads, the homes, the landscape. It is just a very
meditative exercise. Even our small kid loves to watch those too.
In fact, he&#39;s becoming a real train fan (he prefers steam trains though!).&lt;/p&gt;
&lt;p&gt;One thing is for sure: when everything reopens, we&#39;ll probably make
a big train tour through Switzerland!&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Speaking at OpenJS World tomorrow</title>
    <link href="https://rodet.org/notes/2021/06-01-openjs-world/"/>
    <updated>2021-06-01T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/06-01-openjs-world/</id>
    <content type="html">&lt;p&gt;I&#39;m incredibly excited and humbled to speak at OpenJS World 2021 with my colleague
Lucile about responsible coding, especially on sustainability.
Check the &lt;a href=&quot;https://sched.co/j06f&quot;&gt;event page&lt;/a&gt; and subscribe!
The talk will be published on June 2 on the OpenJS Foundation
&lt;a href=&quot;https://www.youtube.com/channel/UCjxM1d3fv_mSEBsyp5MTFrg&quot;&gt;YouTube channel&lt;/a&gt; -
of course you can check it later on as well.&lt;/p&gt;
&lt;p&gt;See you there, and looking forward the impulses and ideas!&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Recommendations for the week</title>
    <link href="https://rodet.org/notes/2021/03-19-week-recommendations/"/>
    <updated>2021-03-19T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/03-19-week-recommendations/</id>
    <content type="html">&lt;p&gt;It&#39;s that time again! So let&#39;s go to the meat:&lt;/p&gt;
&lt;h3&gt;📥 Workflow and productivity&lt;/h3&gt;
&lt;p&gt;I recently stumbled on a
&lt;a href=&quot;https://www.nytimes.com/2021/03/05/opinion/ezra-klein-podcast-cal-newport.html&quot;&gt;podcast interview&lt;/a&gt;
by Cal Newport (yes, him, again). The subtitle is
&lt;em&gt;&amp;quot;Cal Newport explains how Slack and Gmail are making
us miserable – and what to do about it&amp;quot;&lt;/em&gt;, and that tells it all.
I wouldn&#39;t say Gmail though, the podcast speaks rather
about email in general. It&#39;s full of great insights and questions,
and presents Agile and Extreme Programming as alternative workflows
for knowledge workers, not just developers.
A good way to reflect during the weekend.&lt;/p&gt;
&lt;h3&gt;📘 Tools&lt;/h3&gt;
&lt;p&gt;Never know what protocol to use while interacting with
a GitHub Enterprise repo (git, ssh, git??) ?
I found a great trick to make
my life with GitHub Enterprise easier.
Usually in enterprise IT, authentication is often tricky,
and allows only a certain worfklow. If you find yourself
hitting often the wrong protocol, you might consider
this &lt;a href=&quot;https://www.jvt.me/posts/2019/03/20/git-rewrite-url-https-ssh/&quot;&gt;configuration setting&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;🎶 Music&lt;/h3&gt;
&lt;p&gt;Dua Lipa&#39;s latest album &lt;em&gt;&amp;quot;Future Nostalgia&amp;quot;&lt;/em&gt;
(oh well, it&#39;s from 2020 already) is a big refresher in those
times. A mix of funk, EDM and pop, offering a both
modern and retro vibes and grooving all the time. Not only
I but the whole family likes to listen to it. If you want
to judge yourself, take a look at her
&lt;a href=&quot;https://www.youtube.com/watch?v=F4neLJQC1_E&quot;&gt;Tiny Desk&lt;/a&gt; performance.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Online tools the better way</title>
    <link href="https://rodet.org/notes/2021/02-28-online-tools/"/>
    <updated>2021-02-28T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/02-28-online-tools/</id>
    <content type="html">&lt;p&gt;Tomorrow I&#39;ll be giving our new hires an introduction into the online tools
most used at IBM. Like all companies that switched to remote for the pandemic,
we are heavy users of messaging and video/audio conference - this should
come with no surprise to anyone.&lt;/p&gt;
&lt;p&gt;Well so of course, it is important to be proficient with those tools
and to use them well. Developing a strategy to find the right content
in Slack is not completely simple (I might write about that later).&lt;/p&gt;
&lt;p&gt;One of the key messages from my presentation will be that those tools
should not be only used for productivity.
They should also be used for fun, creativity, and just connecting
with each others.&lt;/p&gt;
&lt;p&gt;I often hear many complain that this remote way of working is too
&amp;quot;transactional&amp;quot;, but really it is because we make it so actively.
Being aware of that is important. For example, I&#39;ve now decided
that I&#39;ll get in touch with one person every week to stay connected
and have a casual discussion over some random topic that is currently
relevant.&lt;/p&gt;
&lt;p&gt;Recently, I&#39;ve been approached by a former intern of the studio to
help on some technical topics. This never happened before to me that
someone working at another company asked me for technical mentoring. So it
looks like the remote work is enabling new networks, different from
the previous ones that were very much wall-constrained. You had to
be at the right conference, the right employer, the right university.
&lt;em&gt;Walled garden, that is&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;But if you&#39;re not working in the same room as your colleagues, why
not find experts and contacts elsewhere and get better or more
diversified information?&lt;/p&gt;
&lt;p&gt;Remote might be breaking those walls, for those who use it right.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Carbon impact of the website</title>
    <link href="https://rodet.org/notes/2021/02-22-carbon-impact/"/>
    <updated>2021-02-22T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/02-22-carbon-impact/</id>
    <content type="html">&lt;p&gt;As I was pushing out the week recommendations, I thought it would be
good to know the updated carbon usage now that I&#39;ve moved to
&lt;a href=&quot;http://netlify.com/&quot;&gt;Netlify&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I ran the website through
&lt;a href=&quot;https://www.websitecarbon.com/website/rodet-org/&quot;&gt;Website Carbon Calculator&lt;/a&gt;
and the following results came up. Not too shady isn&#39;t it 😉&lt;/p&gt;
&lt;p&gt;&lt;img style=&quot;max-width: 100%&quot; src=&quot;https://rodet.org/assets/images/website-impact.png&quot; alt=&quot;The results indicate that the page is better than 98% of the pages tested, it runs on sustainable energy and emits only 0.01g of CO2 per page view&quot;&gt;&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Recommendations for the week</title>
    <link href="https://rodet.org/notes/2021/02-21-week-recommendations/"/>
    <updated>2021-02-21T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/02-21-week-recommendations/</id>
    <content type="html">&lt;p&gt;Weeks are passing fast! Lockdown could be boring, but our kid is
learning so fast at the moment and keeping us very busy, so we
don&#39;t really see time fly by.&lt;/p&gt;
&lt;p&gt;Many colleagues of mine around Texas have been suffering from
the winter storm. I really hope that all of them can find their
home in a working state again and get access to drinkable water
soon. Tough times.&lt;/p&gt;
&lt;h3&gt;🌳 Sustainability&lt;/h3&gt;
&lt;p&gt;IBM, my employer, recently announced to be
&lt;a href=&quot;https://newsroom.ibm.com/2021-02-16-IBM-Commits-To-Net-Zero-Greenhouse-Gas-Emissions-By-2030&quot;&gt;bringing greenhouse gas emissions to a net zero by 2030&lt;/a&gt; -
so not by buying certificates but by really avoiding almost
all greenhouse gas emissions, and capturing the remainder.
I&#39;d been waiting such an announcement for a while, and I&#39;m very
happy this is happening. Jim Whitehurst is also very
&lt;a href=&quot;https://twitter.com/JWhitehurst/status/1361716023397859329&quot;&gt;committed to the topic&lt;/a&gt;,
so hopefully nice side projects will emerge from that
to help sustainability in all kinds of context.&lt;/p&gt;
&lt;h3&gt;📘 Tools&lt;/h3&gt;
&lt;p&gt;After I submitted a blog post originally written in Markdown that
had all kinds of typos, I decided to look if I could fix this
in some way. As the VSCode ecosystem seems to be growing to the
infinity, of course there was a tool to help! It&#39;s called
&lt;a href=&quot;https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker&quot;&gt;Code Spell Checker&lt;/a&gt;,
and the nice thing is that it also checks variables and comments.
But as a side feature, that means it also can check stuff like
HTML content, Markdown or even - surprise! - text files.
So yeah, what a useful project. Only 2M downloads 😏&lt;/p&gt;
&lt;h3&gt;🎶 Music&lt;/h3&gt;
&lt;p&gt;Already quite a few years ago, I was singing in a university choir.
A friend there got us tickets for a concert of Bach&#39;s Matthäus Passion
in Stuttgart. The concert was incredible. We had sang this piece
just around a year earlier, but this was really another level.
The conductor was Frieder Bernius, and he is internationally one of the
most acknowledged conductors for Bach.&lt;/p&gt;
&lt;p&gt;Anyway, recently I was looking for his recordings on Spotify,
and they have
&lt;a href=&quot;https://open.spotify.com/artist/70UgxnECn99WRhmPvpBWdS?si=rNoLbfaqSgO55tVDBQ_OCw&quot;&gt;tons of it&lt;/a&gt;.
Lockdown will not be long enough to hear all of that.
If you are looking for some top quality choir music
(there are often bad quality recordings out there), check this.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Jan 30 - Recommendations for the week</title>
    <link href="https://rodet.org/notes/2021/01-30-week-recommendations/"/>
    <updated>2021-01-30T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/01-30-week-recommendations/</id>
    <content type="html">&lt;p&gt;In those endless lockdown times, what do you want to do? Probably
not travelling much. In my case, beside being very busy with
our toddler, I tried to make my days more enjoyable and learn
new things. So why not share those? I recently found that the
AI recommendations I am submerged with every day are pretty
boring. Searching for friends and expert advices though, I found
I could get to much better recommendations - so here are
mine to share:&lt;/p&gt;
&lt;h3&gt;Learning&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://www.udemy.com/course/smart-tips-wellness/&quot;&gt;Smart Tips: Wellness&lt;/a&gt;:
By looking this up, I just realize how expensive it is. IBMers have now
access to Udemy for business, which is a pretty nice perk. Nonetheless, I found
this course very useful and uncomplicated. It&#39;s very practical, while
quite American in its tone (Europeans will understand what I mean, but
this is hard to describe). If you have access to Udemy, reward yourself
by learning about to live better - healthier, with less stress... A lot
of the things described there don&#39;t involve major changes in your life,
but rather small adjustments. Also, the background knowledge given on
many topics is very interesting.&lt;/p&gt;
&lt;h3&gt;Tools&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://css-doodle.com/&quot;&gt;CSS Doodle&lt;/a&gt; is what I use to make
the banners up here.
It&#39;s so much fun to code and bring instant results! Thus,
I often can start a new one in a few minutes and I get
directly in a state of flow. Not that easy with many of the
current &amp;quot;popular&amp;quot; web tools.&lt;/p&gt;
&lt;h3&gt;Music&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://open.spotify.com/album/5YzzV7NMiiVGKMve73OBYc?si=8DzNkv7HSGumnHOi_TgG-Q&quot;&gt;Purple Noon&lt;/a&gt;
by Washed Out. This is some very ambient,
somewhat electronic pop. A fitting music for those mellow
days to dream of the upcoming summer and destress.
I actually bought it as CD, as I am getting back to offline
medias. It&#39;s simpler to use, more reliable. The sound is better,
and I can even resell it once I don&#39;t want it anymore.
And it can also go on my music library. CDs are very cheap
nowadays, sometimes cheaper than the corresponding MP3s.&lt;/p&gt;
&lt;iframe class=&quot;spaced&quot; src=&quot;https://open.spotify.com/embed/album/5YzzV7NMiiVGKMve73OBYc&quot; width=&quot;300&quot; height=&quot;180&quot; frameborder=&quot;0&quot; allowtransparency=&quot;true&quot; allow=&quot;encrypted-media&quot;&gt;&lt;/iframe&gt;
&lt;p&gt;&lt;a href=&quot;https://open.spotify.com/album/6WaIQHxEHtZL0RZ62AuY0g?si=nx9lKlqUREq1CcDgzHhDdg&quot;&gt;The Wall&lt;/a&gt;
by Pink Floyd. What an album! While sometimes on the
fringe of too much, it shows an immense creativity and
uniqueness. It is at the boundary of mad, but I guess this
was a fitting mood at the times. It is the remastered
version - I&#39;d be curious to compare the original version.
I hadn&#39;t listened to it for maybe two decades, so it was
really a return to the past for me. It was also a great
occasion to hear again why this is such a legendary album.&lt;/p&gt;
&lt;iframe class=&quot;spaced&quot; src=&quot;https://open.spotify.com/embed/album/6WaIQHxEHtZL0RZ62AuY0g&quot; width=&quot;300&quot; height=&quot;180&quot; frameborder=&quot;0&quot; allowtransparency=&quot;true&quot; allow=&quot;encrypted-media&quot;&gt;&lt;/iframe&gt;
&lt;p&gt;Let me know if you find those useful!&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>An introduction into WCAG 3</title>
    <link href="https://rodet.org/notes/2021/01-26-wcag-3-intro/"/>
    <updated>2021-01-26T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/01-26-wcag-3-intro/</id>
    <content type="html">&lt;p&gt;WCAG 3 is slowly getting ready and brings many great improvements.
Especially the focus on ease of use and understanding matters I think,
as it will help making websites accessible more approachable.
Even more exciting is the extended scope of this standard, beyond just
the web. How do we make all kind of digital interfaces accessibles -
voice assistants, vehicles, natives apps?&lt;/p&gt;
&lt;p&gt;Take a peak at the new standard goals
&lt;a href=&quot;https://www.w3.org/WAI/standards-guidelines/wcag/wcag3-intro/&quot;&gt;here&lt;/a&gt;,
and go deeper look at the &lt;a href=&quot;https://www.w3.org/TR/wcag-3.0/&quot;&gt;working draft&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;PS - 2021-02-01: I just found that
&lt;a href=&quot;https://jspellman-77432.medium.com/an-insider-look-at-wcag-3-0-276e9b964a33&quot;&gt;great article&lt;/a&gt;
that summarizes in a more casual, but also contextual way,
what this all means and what is upcoming.&lt;/em&gt;&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>RSS enabled</title>
    <link href="https://rodet.org/notes/2021/01-23-rss/"/>
    <updated>2021-01-23T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/01-23-rss/</id>
    <content type="html">&lt;p&gt;You can now &lt;a href=&quot;https://rodet.org/feed.xml&quot;&gt;subscribe&lt;/a&gt; to all new posts to this website!
Let&#39;s keep open and distributed technologies alive.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Debunking electric mobility myths</title>
    <link href="https://rodet.org/notes/2021/01-16-climate-21/"/>
    <updated>2021-01-16T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/01-16-climate-21/</id>
    <content type="html">&lt;p&gt;This
&lt;a href=&quot;https://www.climate21podcast.com/1329991/7260388-renewable-energy-storage-and-electric-transportation-a-chat-with-auke-hoekstra&quot;&gt;candid discussion&lt;/a&gt;
between &lt;a href=&quot;https://twitter.com/TomRaftery&quot;&gt;Tom Raftery&lt;/a&gt; and
&lt;a href=&quot;https://twitter.com/AukeHoekstra&quot;&gt;Auke Hoekstra&lt;/a&gt;
is something I really enjoyed.
Behind debunking myths (or just outdated knowledge
from like... 2010), this episode brings some good mood
and hope in times that need it!&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Tech addiction</title>
    <link href="https://rodet.org/notes/2021/01-08-tech-addiction/"/>
    <updated>2021-01-08T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/01-08-tech-addiction/</id>
    <content type="html">&lt;p&gt;Another &lt;a href=&quot;https://youtu.be/PfVMRgK6eiA&quot;&gt;excellent video&lt;/a&gt;
by Simon Sinek about the damage that tech
is doing to our lives, to our childern and our economy.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Book - Together is Better</title>
    <link href="https://rodet.org/notes/2021/01-04-together-better/"/>
    <updated>2021-01-04T00:00:00Z</updated>
    <id>https://rodet.org/notes/2021/01-04-together-better/</id>
    <content type="html">&lt;p&gt;I just read &lt;a href=&quot;https://simonsinek.com/product/together-is-better/&quot;&gt;Together is Better&lt;/a&gt;
by Simon Sinek. This book was advised to me by my dear colleague
and JumpStart co-agitator &lt;a href=&quot;https://twitter.com/SvenStueven&quot;&gt;Sven Stueven&lt;/a&gt;.
What a brilliant advice. It is a very short book, but full of great statements.
It&#39;s not that it learned me a lot of new things, but rather put some things
in context and allows me to think further about what I should do next.
Very thankful for that. Thanks Sven!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;That idea is so fantastic.
Stop talking about it and do it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Leadership is an education.
And the best leaders think of themselves as the students, not the teachers.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Go read that book, you all ;)&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>A better way to approach a mentorship</title>
    <link href="https://rodet.org/notes/2020/12-28-mentors/"/>
    <updated>2020-12-28T00:00:00Z</updated>
    <id>https://rodet.org/notes/2020/12-28-mentors/</id>
    <content type="html">&lt;p&gt;Recently, I stumbled upon &lt;a href=&quot;https://www.youtube.com/watch?v=TChiE1FDXdY&quot;&gt;this video by Simon Sinek&lt;/a&gt;
about mentorship.
It explains something I wasn&#39;t aware consciously, so I think this is
really worth sharing - that mentors shouldn&#39;t be asked out of the blue,
but rather this is something that becomes and evolves with time, like
friendship. You don&#39;t ask someone to &amp;quot;be your friend&amp;quot;. Rather, you meet
more or less regularly, make time for each others, get to know each others, etc.&lt;/p&gt;
&lt;p&gt;When I was starting work, I asked an executive for mentoring me directly.
Of course he declined, and kindly asked my manager for a good fit.
That was a bit bold of me, but also too direct. Truth is, I was really
interested in his point of view. I then had to wait a few years before
being more in contact with executives, which I find very useful because
they usually have a deep understanding of the business and the big picture.
They are aware of the why and of the compromises necessary.&lt;/p&gt;
&lt;p&gt;In any case - get yourself mentors. Not one, multiple, to get a clearer view
on your issues and opportunities.&lt;/p&gt;
</content>
  </entry>
</feed>
