From 4663a081c10113510d50bf3e0f73e4588f38cad2 Mon Sep 17 00:00:00 2001 From: Felizia Bernutz Date: Wed, 3 Mar 2021 16:38:30 +0100 Subject: [PATCH] Update "crazy" wording to prevent Ableism --- Content/posts/thoughts-about-2020.md | 2 +- Output/feed.rss | 4 ++-- Output/posts/thoughts-about-2020/index.html | 2 +- Output/sitemap.xml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Content/posts/thoughts-about-2020.md b/Content/posts/thoughts-about-2020.md index 0646bea..4e43cef 100644 --- a/Content/posts/thoughts-about-2020.md +++ b/Content/posts/thoughts-about-2020.md @@ -10,7 +10,7 @@ One year ago, I wrote down the [most important things for me from 2019](https:// ## Adventurous Tenerife -In February, I made vacations on Tenerife on the Canary Islands! Life was still "normal". But crazy things happened there nevertheless. One day it was so unbelievable windy and stormy, we were told to stay at the hotel. The next day the sand arrived with the wind and the air turned orange after some time! See this [before and after picture on twitter](https://twitter.com/felibe444/status/1231627031668051969). I've learned that it's called a "Calima". Calimas are hot wind storms that carry sand towards the Canary Islands from the Sahara, capable of lifting dust thousands of meters above the Atlantic Ocean. The air smelled and felt dirty and sandy. Again, we were told to stay at the hotel, because you could have difficulties to breath. Definitely felt like a kind of apocalypse. +In February, I made vacations on Tenerife on the Canary Islands! Life was still "normal". But strange things happened there nevertheless. One day it was so unbelievable windy and stormy, we were told to stay at the hotel. The next day the sand arrived with the wind and the air turned orange after some time! See this [before and after picture on twitter](https://twitter.com/felibe444/status/1231627031668051969). I've learned that it's called a "Calima". Calimas are hot wind storms that carry sand towards the Canary Islands from the Sahara, capable of lifting dust thousands of meters above the Atlantic Ocean. The air smelled and felt dirty and sandy. Again, we were told to stay at the hotel, because you could have difficulties to breath. Definitely felt like a kind of apocalypse.

See you next time, adventurous Tenerife πŸŒ΅β˜€οΈ pic.twitter.com/Nh7kjITL9b

— diehimmelstraeumerin (@felibe444) February 26, 2020
diff --git a/Output/feed.rss b/Output/feed.rss index d9e20fe..98926c9 100644 --- a/Output/feed.rss +++ b/Output/feed.rss @@ -1,4 +1,4 @@ -#diehimmels­traeumeriniOS dev β€’ sketchnoting β€’ photography β€’ accessibility β€’ pineapple on pizza β€’ lioness β€’ she/herhttps://fbernutz.github.ioenSun, 14 Feb 2021 20:28:47 +0100Sun, 14 Feb 2021 20:28:47 +0100250https://fbernutz.github.io/posts/basic-ipad-supportHow I Added Basic iPad Support to my iPhone Only AppI have a confession to make. It's really sad, but true. In my career as an iOS developer, I've only ever build iPhone apps. iPads were never meant to be supported. Well... the apps "worked" in theory! Sort of. So, during my vacation in December, it was finally time to start working on the two-plus years old ticket to add iPad and iPhone landscape support for Cineaste App.https://fbernutz.github.io/posts/basic-ipad-supportSun, 14 Feb 2021 12:00:00 +0100How I Added Basic iPad Support to my iPhone Only App

I have a confession to make. It's really sad, but true. In my career as an iOS developer, I've only ever build iPhone apps. iPads were never meant to be supported. Well... all apps "worked" in theory! Sort of.

+#diehimmels­traeumeriniOS dev β€’ sketchnoting β€’ photography β€’ accessibility β€’ pineapple on pizza β€’ lioness β€’ she/herhttps://fbernutz.github.ioenWed, 3 Mar 2021 16:37:11 +0100Wed, 3 Mar 2021 16:37:11 +0100250https://fbernutz.github.io/posts/basic-ipad-supportHow I Added Basic iPad Support to my iPhone Only AppI have a confession to make. It's really sad, but true. In my career as an iOS developer, I've only ever build iPhone apps. iPads were never meant to be supported. Well... the apps "worked" in theory! Sort of. So, during my vacation in December, it was finally time to start working on the two-plus years old ticket to add iPad and iPhone landscape support for Cineaste App.https://fbernutz.github.io/posts/basic-ipad-supportSun, 14 Feb 2021 12:00:00 +0100How I Added Basic iPad Support to my iPhone Only App

I have a confession to make. It's really sad, but true. In my career as an iOS developer, I've only ever build iPhone apps. iPads were never meant to be supported. Well... all apps "worked" in theory! Sort of.

Screenshot of scaled app on iPad
A "beautifully" scaled iPhone app on iPad.

So, during my vacation in December, it was finally time to start working on the two-plus years old ticket to add iPad and iPhone landscape support for Cineaste App.

I gave myself a Christmas present and finished the feature on Christmas Eve (see the final PR on GitHub). The current version is available for testing on Testflight.

Feel free to test the app and send feedback! I would really appreciate it. πŸ™Œ

So, what did I do to add basic iPad and landscape support?

1) Activate that Checkmark!

The first important step is to activate that checkmark for iPad support. You can find that setting in Xcode under the settings of your main target under the tab "General" and the section "Deployment Info".

@@ -45,7 +45,7 @@ actionSheet.popoverPresentationController?.

I think this is a major improvement.

Screenshots of the movie detail before and after. On the before screenshot, the movie information have a width of the full screen. On the after screenshot, the movie information have a maximum of 130 characters per line, so it's easier to read a longer text.
On the left movie detail with full width text (before) and on the right the text with a nice readable width (after).
-

For more information about that, read "Readable Content Guides" at Use Your Loaf. Even though it's a post from 2016, it's still relevant. πŸ“š

I think with all these changes, the iPad version looks ~1000% better than before. But there are still some things which I may want to change in the future.

What's missing?

I loved the article "Designed for iPad" by @viditb which helped me a lot to identify what I'm still missing. πŸ“š

The currently missing features are:

  • Keyboard Support
  • Multi Window Support (but I'm not sure if this is really relevant for this app)
  • Drag and Drop Support (but I'm not sure if this is really relevant for this app)
  • Improved Layout for iPad (the movie lists still don't use the optimal layout, a better idea would be to use a split layout with UISplitViewController, a Grid Layout with a UICollectionView, or at least make use of a side bar to use the space on larger devices more efficient)

Conclusion

Adding support for iPad adds a lot of complexity to your app. You have to test so much more! There are many more different devices now, there is the split screen layout, you have to test rotating the devices, and and and...

But I really enjoyed it and it's worth it!

An iPad on a table with Cineaste App on screen. It shows a movie detail of the movie Weathering With You.

I had such respect for this task, but in retrospect it was not that difficult in my case. (This impression may vary, of course, depending on what your app does.) Just try it and improve it step by step. It doesn't have to be perfect right away.


This was my first experiment with iPad support. Please get in touch on Twitter and tell me what I might have missed or what I can improve.

]]>https://fbernutz.github.io/posts/thoughts-about-2020Thoughts about 2020One year ago, I wrote down the most important things for me from 2019. I really liked it, because it helped me to process the year and to remember what happened. Obviously, 2020 is marked by the pandemic. I wish so badly that this will be over soon! A few days ago, I watched "Soul" and it reminded me not to wait for something but to enjoy the little things. So, I need to write this down to remember myself that not everything was bad and that I've learned and experienced a lot.https://fbernutz.github.io/posts/thoughts-about-2020Wed, 30 Dec 2020 12:22:00 +0100Thoughts about 2020

One year ago, I wrote down the most important things for me from 2019. I really liked it, because it helped me to process the year and to remember what happened. Obviously, 2020 is marked by the pandemic. I wish so badly that this will be over soon! A few days ago, I watched "Soul" and it reminded me not to wait for something but to enjoy the little things. So, I need to write this down to remember myself that not everything was bad and that I've learned and experienced a lot.

Adventurous Tenerife

In February, I made vacations on Tenerife on the Canary Islands! Life was still "normal". But crazy things happened there nevertheless. One day it was so unbelievable windy and stormy, we were told to stay at the hotel. The next day the sand arrived with the wind and the air turned orange after some time! See this before and after picture on twitter. I've learned that it's called a "Calima". Calimas are hot wind storms that carry sand towards the Canary Islands from the Sahara, capable of lifting dust thousands of meters above the Atlantic Ocean. The air smelled and felt dirty and sandy. Again, we were told to stay at the hotel, because you could have difficulties to breath. Definitely felt like a kind of apocalypse.

Welcome, Sketchnotes!

In March, I integrated my sketchnotes on this website. It was a lot of work, but I could learn much about layouts with CSS. I wrote a blog post about the idea, the process and the implementation (see the tweet).

It feels awesome to have my own little place in the big world of the internet, where everything which matters to me can be discovered. A place with things I've created and am proud of.

Home Office Time

Since the mid of March and the first lockdown in Germany, I'm working from home.

Lettering next to a keyboard which says it's home office time

To work from home from one day to the other was really hard for me, I missed the ride to the office with my bicycle to get awake in the morning and the ride back home to clear my head. I had to learn that I need to move more and differently than before. Now, nine months later, I love working from home, especially the flexibility, the silence and the comfort.

Sharing Knowledge

Since April, I had the chance to teach iOS development with one of my iOS colleagues to three other developers which mostly had no experience with mobile development and iOS in specific. It was really fun to think about what are the most important topics, to prepare different topics and to see how fast and how much they've learned. I'm super proud of them, because they can now implement iOS tasks mostly on their own and we're now a bigger group of iOS developers - like a little community.

Conferences from the Living Room

In May, I took part in two online conferences which I've visited in person last year. It's a different experience, but I wouldn't miss it at any chance!

What I miss on online conferences

  • the random conversations between the talks
  • the food and the drinks
  • the partys, where you see some people you've already talked to earlier
  • traveling to beautiful cities, like Lugano

What I like about online conferences

  • possibility to pause the video, take a break and revisit later
  • watch talks from wherever you want
  • way cheaper!
  • use all the pencils you have for sketchnoting
  • use your own desk for sketchnoting
  • speakers could answer questions in chat during the talk

Read my opinion on why you should sketchnote on online conferences, if you are interested in it.

AppBuilders

AppBuilders was my very first online conference. They used Hopin as conference platform tool. You could actively talk in smaller groups or just listen to others. It made it especially easy for introverts.

I made sketchnotes of all talks and posted them after each talk on twitter. This got some attention and many people interacted with the tweets. I even got some shoutouts from people during the conference. It's still a bit surreal for me, but it always makes me happy when others find my sketchnotes useful.

It was great to have the sketchnotes integrated on the conference memento page:

I think they are perfect next to the youtube video because you can get a quick overview what the talk is about and then decide to watch a talk or not.

If you're interested in the talks, you can see all my sketchnotes from AppBuilders on this website or in this twitter thread.

For the first time in my life, I was mentioned in a newsletter and I was so surprised and honored! If you want, check out the specific issue, where I was mentioned in the SwiftLee newsletter by Antoine van der Lee (@twannl).

UIKonf

UIKonf took place just a week after AppBuilders. They also used Hopin. UIKonf is known for their social events the day before the conference. There were many online activities to choose from. I escaped from an "online escape room" with others and it was really fun and entertaining.

I also took sketchnotes of all the talks and that was really a lot for two days. I think next time I will include more breaks and not watch every talk. All the talks are online after the conference, so it's easy to catch up. UIKonf even used a private Youtube livestream, so you could pause and resume whenever you wanted!

See all my sketchnotes from UIKonf on this website or in this twitter thread.

Meetups

Although it's different to meet other people remotely and attend a conference in person, I loved that so many events and meetups were virtual. I was able to attend some meetups that I never would have been able to attend because they are far away from where I live. This is a great advantage!

SNConnect

This year I also participated in my first sketchnoting conference in September - SNConnect. It was mostly about interaction and having fun. The conference was self-organized, meaning there was no agenda in advance. Every morning we came together and anyone could submit a topic or ask a question if they just wanted some advice. The sketchnoting community is very open, friendly and the best part, they all love sketchnoting. Who would've thought? πŸ˜‰

I learned one of my favorite quotes at SNConnect:

"There’s no failing! FAIL is only your First Attempt In Learning"

– Someone at SNConnect

See all my sketchnotes from SNConnect on this website or in this twitter thread.

Discover new Sports

Since January, I have had an Apple Watch. It was one of the best decisions to buy it. It really keeps me moving! Especially when I started working from home, I stopped exercising and moving. I had to find activities other than playing soccer. Activities that I could do by myself or with a few others.

My sister invited me to go rock climbing with her in May. I had some bouldering experience before, but I love climbing more because you're outside in the nature and it's so fun to spend time with my sister. We go almost every weekend!

In August, I started going swimming two to three times a week. During the summer, the outdoor pools were still open and I could go there after work. I could get my mind off work by riding my bike and going to swim. I was immediately hooked on it. I could do it by myself and enjoy the weather in the summer. I really enjoyed the 50m swim lane. I tried to crawl for a bit, but it just didn't work for me and I panicked after a few strokes, because I couldn't get enough air into my lungs. So, I just stuck to breaststroke and I was happy (when the swim lane was long enough and the lane was clear). On my vacation in September, the AirBnB had access to a spa at a hotel next door. They had a pool, but the swim lane was only ~13m long. So annoying, but hey, there was water and it was free πŸ˜‰ One day, we went to a spa that had a loooong sports pool that was totally empty (of course) instead of the other hot tub and fun areas. I beat my highscore and swam 1km in under 20min! I was so happy the whole day.

In October, I started a swimming course to learn crawl swimming. I was lucky, that the course was held in spite of Corona. They limited the number of participants from 10 to 5 and instead of 13 there were only 5 sessions. Training with so few others was a total win, our swim coach was able to give a lot more individual feedback. After each session I was so proud to do a little better than last time. In the very last session, I even got the nicest compliment from my swim coach, see my tweet.

All in all, the swim was a complete success. I learned so much and I was able to overcome my fears with the front crawl.

Since November, all the pools have been closed due to lockdown. I really miss swimming and hope I don't have to relearn everything when they eventually reopen.

Since I can't go swimming right now, I bought a balance board. It's like a skateboard without wheels and you can do balance exercises with it in the living room in front of the TV. It's so simple but also really fun!

+

For more information about that, read "Readable Content Guides" at Use Your Loaf. Even though it's a post from 2016, it's still relevant. πŸ“š

I think with all these changes, the iPad version looks ~1000% better than before. But there are still some things which I may want to change in the future.

What's missing?

I loved the article "Designed for iPad" by @viditb which helped me a lot to identify what I'm still missing. πŸ“š

The currently missing features are:

  • Keyboard Support
  • Multi Window Support (but I'm not sure if this is really relevant for this app)
  • Drag and Drop Support (but I'm not sure if this is really relevant for this app)
  • Improved Layout for iPad (the movie lists still don't use the optimal layout, a better idea would be to use a split layout with UISplitViewController, a Grid Layout with a UICollectionView, or at least make use of a side bar to use the space on larger devices more efficient)

Conclusion

Adding support for iPad adds a lot of complexity to your app. You have to test so much more! There are many more different devices now, there is the split screen layout, you have to test rotating the devices, and and and...

But I really enjoyed it and it's worth it!

An iPad on a table with Cineaste App on screen. It shows a movie detail of the movie Weathering With You.

I had such respect for this task, but in retrospect it was not that difficult in my case. (This impression may vary, of course, depending on what your app does.) Just try it and improve it step by step. It doesn't have to be perfect right away.


This was my first experiment with iPad support. Please get in touch on Twitter and tell me what I might have missed or what I can improve.

]]>
https://fbernutz.github.io/posts/thoughts-about-2020Thoughts about 2020One year ago, I wrote down the most important things for me from 2019. I really liked it, because it helped me to process the year and to remember what happened. Obviously, 2020 is marked by the pandemic. I wish so badly that this will be over soon! A few days ago, I watched "Soul" and it reminded me not to wait for something but to enjoy the little things. So, I need to write this down to remember myself that not everything was bad and that I've learned and experienced a lot.https://fbernutz.github.io/posts/thoughts-about-2020Wed, 30 Dec 2020 12:22:00 +0100Thoughts about 2020

One year ago, I wrote down the most important things for me from 2019. I really liked it, because it helped me to process the year and to remember what happened. Obviously, 2020 is marked by the pandemic. I wish so badly that this will be over soon! A few days ago, I watched "Soul" and it reminded me not to wait for something but to enjoy the little things. So, I need to write this down to remember myself that not everything was bad and that I've learned and experienced a lot.

Adventurous Tenerife

In February, I made vacations on Tenerife on the Canary Islands! Life was still "normal". But strange things happened there nevertheless. One day it was so unbelievable windy and stormy, we were told to stay at the hotel. The next day the sand arrived with the wind and the air turned orange after some time! See this before and after picture on twitter. I've learned that it's called a "Calima". Calimas are hot wind storms that carry sand towards the Canary Islands from the Sahara, capable of lifting dust thousands of meters above the Atlantic Ocean. The air smelled and felt dirty and sandy. Again, we were told to stay at the hotel, because you could have difficulties to breath. Definitely felt like a kind of apocalypse.

Welcome, Sketchnotes!

In March, I integrated my sketchnotes on this website. It was a lot of work, but I could learn much about layouts with CSS. I wrote a blog post about the idea, the process and the implementation (see the tweet).

It feels awesome to have my own little place in the big world of the internet, where everything which matters to me can be discovered. A place with things I've created and am proud of.

Home Office Time

Since the mid of March and the first lockdown in Germany, I'm working from home.

Lettering next to a keyboard which says it's home office time

To work from home from one day to the other was really hard for me, I missed the ride to the office with my bicycle to get awake in the morning and the ride back home to clear my head. I had to learn that I need to move more and differently than before. Now, nine months later, I love working from home, especially the flexibility, the silence and the comfort.

Sharing Knowledge

Since April, I had the chance to teach iOS development with one of my iOS colleagues to three other developers which mostly had no experience with mobile development and iOS in specific. It was really fun to think about what are the most important topics, to prepare different topics and to see how fast and how much they've learned. I'm super proud of them, because they can now implement iOS tasks mostly on their own and we're now a bigger group of iOS developers - like a little community.

Conferences from the Living Room

In May, I took part in two online conferences which I've visited in person last year. It's a different experience, but I wouldn't miss it at any chance!

What I miss on online conferences

  • the random conversations between the talks
  • the food and the drinks
  • the partys, where you see some people you've already talked to earlier
  • traveling to beautiful cities, like Lugano

What I like about online conferences

  • possibility to pause the video, take a break and revisit later
  • watch talks from wherever you want
  • way cheaper!
  • use all the pencils you have for sketchnoting
  • use your own desk for sketchnoting
  • speakers could answer questions in chat during the talk

Read my opinion on why you should sketchnote on online conferences, if you are interested in it.

AppBuilders

AppBuilders was my very first online conference. They used Hopin as conference platform tool. You could actively talk in smaller groups or just listen to others. It made it especially easy for introverts.

I made sketchnotes of all talks and posted them after each talk on twitter. This got some attention and many people interacted with the tweets. I even got some shoutouts from people during the conference. It's still a bit surreal for me, but it always makes me happy when others find my sketchnotes useful.

It was great to have the sketchnotes integrated on the conference memento page:

I think they are perfect next to the youtube video because you can get a quick overview what the talk is about and then decide to watch a talk or not.

If you're interested in the talks, you can see all my sketchnotes from AppBuilders on this website or in this twitter thread.

For the first time in my life, I was mentioned in a newsletter and I was so surprised and honored! If you want, check out the specific issue, where I was mentioned in the SwiftLee newsletter by Antoine van der Lee (@twannl).

UIKonf

UIKonf took place just a week after AppBuilders. They also used Hopin. UIKonf is known for their social events the day before the conference. There were many online activities to choose from. I escaped from an "online escape room" with others and it was really fun and entertaining.

I also took sketchnotes of all the talks and that was really a lot for two days. I think next time I will include more breaks and not watch every talk. All the talks are online after the conference, so it's easy to catch up. UIKonf even used a private Youtube livestream, so you could pause and resume whenever you wanted!

See all my sketchnotes from UIKonf on this website or in this twitter thread.

Meetups

Although it's different to meet other people remotely and attend a conference in person, I loved that so many events and meetups were virtual. I was able to attend some meetups that I never would have been able to attend because they are far away from where I live. This is a great advantage!

SNConnect

This year I also participated in my first sketchnoting conference in September - SNConnect. It was mostly about interaction and having fun. The conference was self-organized, meaning there was no agenda in advance. Every morning we came together and anyone could submit a topic or ask a question if they just wanted some advice. The sketchnoting community is very open, friendly and the best part, they all love sketchnoting. Who would've thought? πŸ˜‰

I learned one of my favorite quotes at SNConnect:

"There’s no failing! FAIL is only your First Attempt In Learning"

– Someone at SNConnect

See all my sketchnotes from SNConnect on this website or in this twitter thread.

Discover new Sports

Since January, I have had an Apple Watch. It was one of the best decisions to buy it. It really keeps me moving! Especially when I started working from home, I stopped exercising and moving. I had to find activities other than playing soccer. Activities that I could do by myself or with a few others.

My sister invited me to go rock climbing with her in May. I had some bouldering experience before, but I love climbing more because you're outside in the nature and it's so fun to spend time with my sister. We go almost every weekend!

In August, I started going swimming two to three times a week. During the summer, the outdoor pools were still open and I could go there after work. I could get my mind off work by riding my bike and going to swim. I was immediately hooked on it. I could do it by myself and enjoy the weather in the summer. I really enjoyed the 50m swim lane. I tried to crawl for a bit, but it just didn't work for me and I panicked after a few strokes, because I couldn't get enough air into my lungs. So, I just stuck to breaststroke and I was happy (when the swim lane was long enough and the lane was clear). On my vacation in September, the AirBnB had access to a spa at a hotel next door. They had a pool, but the swim lane was only ~13m long. So annoying, but hey, there was water and it was free πŸ˜‰ One day, we went to a spa that had a loooong sports pool that was totally empty (of course) instead of the other hot tub and fun areas. I beat my highscore and swam 1km in under 20min! I was so happy the whole day.

In October, I started a swimming course to learn crawl swimming. I was lucky, that the course was held in spite of Corona. They limited the number of participants from 10 to 5 and instead of 13 there were only 5 sessions. Training with so few others was a total win, our swim coach was able to give a lot more individual feedback. After each session I was so proud to do a little better than last time. In the very last session, I even got the nicest compliment from my swim coach, see my tweet.

All in all, the swim was a complete success. I learned so much and I was able to overcome my fears with the front crawl.

Since November, all the pools have been closed due to lockdown. I really miss swimming and hope I don't have to relearn everything when they eventually reopen.

Since I can't go swimming right now, I bought a balance board. It's like a skateboard without wheels and you can do balance exercises with it in the living room in front of the TV. It's so simple but also really fun!

A collage of different pictures with a balance board from the top, an outdoor swimming pool, me climbing in between two rocks, me climbing in front of a rock, the view into tree tops and my feet from the top next to a swimming pool.
Balance Board, Swimming and Rock Climbing - my new sport activities this year

iPad and Apple Pencil

In August, I gave myself a birthday present: I ordered the iPad Pro 12.9" with the Apple Pencil. I wanted to use it for sketchnoting. A few weeks later, the Apple Pencil arrived. Nice! I had to stay patient because the iPad took another two weeks to arrive. If you want to know why I bought it, what I was hoping for and how I liked it, I recommend reading my blog post "Me, my new iPad Pro and the Apple Pencil".

Vacation Mode On

We were lucky with our vacation planning this year, so we managed to make a road trip to Austria in September without risking too much. It was great to explore the many lakes and hike in the mountains! We were able to go stand up paddling (I LOVE IT), canoeing, hiking and exploring. The pictures speak for themselves.

diff --git a/Output/posts/thoughts-about-2020/index.html b/Output/posts/thoughts-about-2020/index.html index 3a37e98..7494331 100644 --- a/Output/posts/thoughts-about-2020/index.html +++ b/Output/posts/thoughts-about-2020/index.html @@ -43,7 +43,7 @@
-

Dec 30, 2020 β‹… 14 min read

Thoughts about 2020

One year ago, I wrote down the most important things for me from 2019. I really liked it, because it helped me to process the year and to remember what happened. Obviously, 2020 is marked by the pandemic. I wish so badly that this will be over soon! A few days ago, I watched "Soul" and it reminded me not to wait for something but to enjoy the little things. So, I need to write this down to remember myself that not everything was bad and that I've learned and experienced a lot.

Adventurous Tenerife

In February, I made vacations on Tenerife on the Canary Islands! Life was still "normal". But crazy things happened there nevertheless. One day it was so unbelievable windy and stormy, we were told to stay at the hotel. The next day the sand arrived with the wind and the air turned orange after some time! See this before and after picture on twitter. I've learned that it's called a "Calima". Calimas are hot wind storms that carry sand towards the Canary Islands from the Sahara, capable of lifting dust thousands of meters above the Atlantic Ocean. The air smelled and felt dirty and sandy. Again, we were told to stay at the hotel, because you could have difficulties to breath. Definitely felt like a kind of apocalypse.

Welcome, Sketchnotes!

In March, I integrated my sketchnotes on this website. It was a lot of work, but I could learn much about layouts with CSS. I wrote a blog post about the idea, the process and the implementation (see the tweet).

It feels awesome to have my own little place in the big world of the internet, where everything which matters to me can be discovered. A place with things I've created and am proud of.

Home Office Time

Since the mid of March and the first lockdown in Germany, I'm working from home.

Lettering next to a keyboard which says it's home office time

To work from home from one day to the other was really hard for me, I missed the ride to the office with my bicycle to get awake in the morning and the ride back home to clear my head. I had to learn that I need to move more and differently than before. Now, nine months later, I love working from home, especially the flexibility, the silence and the comfort.

Sharing Knowledge

Since April, I had the chance to teach iOS development with one of my iOS colleagues to three other developers which mostly had no experience with mobile development and iOS in specific. It was really fun to think about what are the most important topics, to prepare different topics and to see how fast and how much they've learned. I'm super proud of them, because they can now implement iOS tasks mostly on their own and we're now a bigger group of iOS developers - like a little community.

Conferences from the Living Room

In May, I took part in two online conferences which I've visited in person last year. It's a different experience, but I wouldn't miss it at any chance!

What I miss on online conferences

  • the random conversations between the talks
  • the food and the drinks
  • the partys, where you see some people you've already talked to earlier
  • traveling to beautiful cities, like Lugano

What I like about online conferences

  • possibility to pause the video, take a break and revisit later
  • watch talks from wherever you want
  • way cheaper!
  • use all the pencils you have for sketchnoting
  • use your own desk for sketchnoting
  • speakers could answer questions in chat during the talk

Read my opinion on why you should sketchnote on online conferences, if you are interested in it.

AppBuilders

AppBuilders was my very first online conference. They used Hopin as conference platform tool. You could actively talk in smaller groups or just listen to others. It made it especially easy for introverts.

I made sketchnotes of all talks and posted them after each talk on twitter. This got some attention and many people interacted with the tweets. I even got some shoutouts from people during the conference. It's still a bit surreal for me, but it always makes me happy when others find my sketchnotes useful.

It was great to have the sketchnotes integrated on the conference memento page:

I think they are perfect next to the youtube video because you can get a quick overview what the talk is about and then decide to watch a talk or not.

If you're interested in the talks, you can see all my sketchnotes from AppBuilders on this website or in this twitter thread.

For the first time in my life, I was mentioned in a newsletter and I was so surprised and honored! If you want, check out the specific issue, where I was mentioned in the SwiftLee newsletter by Antoine van der Lee (@twannl).

UIKonf

UIKonf took place just a week after AppBuilders. They also used Hopin. UIKonf is known for their social events the day before the conference. There were many online activities to choose from. I escaped from an "online escape room" with others and it was really fun and entertaining.

I also took sketchnotes of all the talks and that was really a lot for two days. I think next time I will include more breaks and not watch every talk. All the talks are online after the conference, so it's easy to catch up. UIKonf even used a private Youtube livestream, so you could pause and resume whenever you wanted!

See all my sketchnotes from UIKonf on this website or in this twitter thread.

Meetups

Although it's different to meet other people remotely and attend a conference in person, I loved that so many events and meetups were virtual. I was able to attend some meetups that I never would have been able to attend because they are far away from where I live. This is a great advantage!

SNConnect

This year I also participated in my first sketchnoting conference in September - SNConnect. It was mostly about interaction and having fun. The conference was self-organized, meaning there was no agenda in advance. Every morning we came together and anyone could submit a topic or ask a question if they just wanted some advice. The sketchnoting community is very open, friendly and the best part, they all love sketchnoting. Who would've thought? πŸ˜‰

I learned one of my favorite quotes at SNConnect:

"There’s no failing! FAIL is only your First Attempt In Learning"

– Someone at SNConnect

See all my sketchnotes from SNConnect on this website or in this twitter thread.

Discover new Sports

Since January, I have had an Apple Watch. It was one of the best decisions to buy it. It really keeps me moving! Especially when I started working from home, I stopped exercising and moving. I had to find activities other than playing soccer. Activities that I could do by myself or with a few others.

My sister invited me to go rock climbing with her in May. I had some bouldering experience before, but I love climbing more because you're outside in the nature and it's so fun to spend time with my sister. We go almost every weekend!

In August, I started going swimming two to three times a week. During the summer, the outdoor pools were still open and I could go there after work. I could get my mind off work by riding my bike and going to swim. I was immediately hooked on it. I could do it by myself and enjoy the weather in the summer. I really enjoyed the 50m swim lane. I tried to crawl for a bit, but it just didn't work for me and I panicked after a few strokes, because I couldn't get enough air into my lungs. So, I just stuck to breaststroke and I was happy (when the swim lane was long enough and the lane was clear). On my vacation in September, the AirBnB had access to a spa at a hotel next door. They had a pool, but the swim lane was only ~13m long. So annoying, but hey, there was water and it was free πŸ˜‰ One day, we went to a spa that had a loooong sports pool that was totally empty (of course) instead of the other hot tub and fun areas. I beat my highscore and swam 1km in under 20min! I was so happy the whole day.

In October, I started a swimming course to learn crawl swimming. I was lucky, that the course was held in spite of Corona. They limited the number of participants from 10 to 5 and instead of 13 there were only 5 sessions. Training with so few others was a total win, our swim coach was able to give a lot more individual feedback. After each session I was so proud to do a little better than last time. In the very last session, I even got the nicest compliment from my swim coach, see my tweet.

All in all, the swim was a complete success. I learned so much and I was able to overcome my fears with the front crawl.

Since November, all the pools have been closed due to lockdown. I really miss swimming and hope I don't have to relearn everything when they eventually reopen.

Since I can't go swimming right now, I bought a balance board. It's like a skateboard without wheels and you can do balance exercises with it in the living room in front of the TV. It's so simple but also really fun!

+

Dec 30, 2020 β‹… 14 min read

Thoughts about 2020

One year ago, I wrote down the most important things for me from 2019. I really liked it, because it helped me to process the year and to remember what happened. Obviously, 2020 is marked by the pandemic. I wish so badly that this will be over soon! A few days ago, I watched "Soul" and it reminded me not to wait for something but to enjoy the little things. So, I need to write this down to remember myself that not everything was bad and that I've learned and experienced a lot.

Adventurous Tenerife

In February, I made vacations on Tenerife on the Canary Islands! Life was still "normal". But strange things happened there nevertheless. One day it was so unbelievable windy and stormy, we were told to stay at the hotel. The next day the sand arrived with the wind and the air turned orange after some time! See this before and after picture on twitter. I've learned that it's called a "Calima". Calimas are hot wind storms that carry sand towards the Canary Islands from the Sahara, capable of lifting dust thousands of meters above the Atlantic Ocean. The air smelled and felt dirty and sandy. Again, we were told to stay at the hotel, because you could have difficulties to breath. Definitely felt like a kind of apocalypse.

Welcome, Sketchnotes!

In March, I integrated my sketchnotes on this website. It was a lot of work, but I could learn much about layouts with CSS. I wrote a blog post about the idea, the process and the implementation (see the tweet).

It feels awesome to have my own little place in the big world of the internet, where everything which matters to me can be discovered. A place with things I've created and am proud of.

Home Office Time

Since the mid of March and the first lockdown in Germany, I'm working from home.

Lettering next to a keyboard which says it's home office time

To work from home from one day to the other was really hard for me, I missed the ride to the office with my bicycle to get awake in the morning and the ride back home to clear my head. I had to learn that I need to move more and differently than before. Now, nine months later, I love working from home, especially the flexibility, the silence and the comfort.

Sharing Knowledge

Since April, I had the chance to teach iOS development with one of my iOS colleagues to three other developers which mostly had no experience with mobile development and iOS in specific. It was really fun to think about what are the most important topics, to prepare different topics and to see how fast and how much they've learned. I'm super proud of them, because they can now implement iOS tasks mostly on their own and we're now a bigger group of iOS developers - like a little community.

Conferences from the Living Room

In May, I took part in two online conferences which I've visited in person last year. It's a different experience, but I wouldn't miss it at any chance!

What I miss on online conferences

  • the random conversations between the talks
  • the food and the drinks
  • the partys, where you see some people you've already talked to earlier
  • traveling to beautiful cities, like Lugano

What I like about online conferences

  • possibility to pause the video, take a break and revisit later
  • watch talks from wherever you want
  • way cheaper!
  • use all the pencils you have for sketchnoting
  • use your own desk for sketchnoting
  • speakers could answer questions in chat during the talk

Read my opinion on why you should sketchnote on online conferences, if you are interested in it.

AppBuilders

AppBuilders was my very first online conference. They used Hopin as conference platform tool. You could actively talk in smaller groups or just listen to others. It made it especially easy for introverts.

I made sketchnotes of all talks and posted them after each talk on twitter. This got some attention and many people interacted with the tweets. I even got some shoutouts from people during the conference. It's still a bit surreal for me, but it always makes me happy when others find my sketchnotes useful.

It was great to have the sketchnotes integrated on the conference memento page:

I think they are perfect next to the youtube video because you can get a quick overview what the talk is about and then decide to watch a talk or not.

If you're interested in the talks, you can see all my sketchnotes from AppBuilders on this website or in this twitter thread.

For the first time in my life, I was mentioned in a newsletter and I was so surprised and honored! If you want, check out the specific issue, where I was mentioned in the SwiftLee newsletter by Antoine van der Lee (@twannl).

UIKonf

UIKonf took place just a week after AppBuilders. They also used Hopin. UIKonf is known for their social events the day before the conference. There were many online activities to choose from. I escaped from an "online escape room" with others and it was really fun and entertaining.

I also took sketchnotes of all the talks and that was really a lot for two days. I think next time I will include more breaks and not watch every talk. All the talks are online after the conference, so it's easy to catch up. UIKonf even used a private Youtube livestream, so you could pause and resume whenever you wanted!

See all my sketchnotes from UIKonf on this website or in this twitter thread.

Meetups

Although it's different to meet other people remotely and attend a conference in person, I loved that so many events and meetups were virtual. I was able to attend some meetups that I never would have been able to attend because they are far away from where I live. This is a great advantage!

SNConnect

This year I also participated in my first sketchnoting conference in September - SNConnect. It was mostly about interaction and having fun. The conference was self-organized, meaning there was no agenda in advance. Every morning we came together and anyone could submit a topic or ask a question if they just wanted some advice. The sketchnoting community is very open, friendly and the best part, they all love sketchnoting. Who would've thought? πŸ˜‰

I learned one of my favorite quotes at SNConnect:

"There’s no failing! FAIL is only your First Attempt In Learning"

– Someone at SNConnect

See all my sketchnotes from SNConnect on this website or in this twitter thread.

Discover new Sports

Since January, I have had an Apple Watch. It was one of the best decisions to buy it. It really keeps me moving! Especially when I started working from home, I stopped exercising and moving. I had to find activities other than playing soccer. Activities that I could do by myself or with a few others.

My sister invited me to go rock climbing with her in May. I had some bouldering experience before, but I love climbing more because you're outside in the nature and it's so fun to spend time with my sister. We go almost every weekend!

In August, I started going swimming two to three times a week. During the summer, the outdoor pools were still open and I could go there after work. I could get my mind off work by riding my bike and going to swim. I was immediately hooked on it. I could do it by myself and enjoy the weather in the summer. I really enjoyed the 50m swim lane. I tried to crawl for a bit, but it just didn't work for me and I panicked after a few strokes, because I couldn't get enough air into my lungs. So, I just stuck to breaststroke and I was happy (when the swim lane was long enough and the lane was clear). On my vacation in September, the AirBnB had access to a spa at a hotel next door. They had a pool, but the swim lane was only ~13m long. So annoying, but hey, there was water and it was free πŸ˜‰ One day, we went to a spa that had a loooong sports pool that was totally empty (of course) instead of the other hot tub and fun areas. I beat my highscore and swam 1km in under 20min! I was so happy the whole day.

In October, I started a swimming course to learn crawl swimming. I was lucky, that the course was held in spite of Corona. They limited the number of participants from 10 to 5 and instead of 13 there were only 5 sessions. Training with so few others was a total win, our swim coach was able to give a lot more individual feedback. After each session I was so proud to do a little better than last time. In the very last session, I even got the nicest compliment from my swim coach, see my tweet.

All in all, the swim was a complete success. I learned so much and I was able to overcome my fears with the front crawl.

Since November, all the pools have been closed due to lockdown. I really miss swimming and hope I don't have to relearn everything when they eventually reopen.

Since I can't go swimming right now, I bought a balance board. It's like a skateboard without wheels and you can do balance exercises with it in the living room in front of the TV. It's so simple but also really fun!

A collage of different pictures with a balance board from the top, an outdoor swimming pool, me climbing in between two rocks, me climbing in front of a rock, the view into tree tops and my feet from the top next to a swimming pool.
Balance Board, Swimming and Rock Climbing - my new sport activities this year

iPad and Apple Pencil

In August, I gave myself a birthday present: I ordered the iPad Pro 12.9" with the Apple Pencil. I wanted to use it for sketchnoting. A few weeks later, the Apple Pencil arrived. Nice! I had to stay patient because the iPad took another two weeks to arrive. If you want to know why I bought it, what I was hoping for and how I liked it, I recommend reading my blog post "Me, my new iPad Pro and the Apple Pencil".

Vacation Mode On

We were lucky with our vacation planning this year, so we managed to make a road trip to Austria in September without risking too much. It was great to explore the many lakes and hike in the mountains! We were able to go stand up paddling (I LOVE IT), canoeing, hiking and exploring. The pictures speak for themselves.

diff --git a/Output/sitemap.xml b/Output/sitemap.xml index d7b07ac..6353a25 100644 --- a/Output/sitemap.xml +++ b/Output/sitemap.xml @@ -1 +1 @@ -https://fbernutz.github.io/aboutdaily1.02021-01-17https://fbernutz.github.io/about/cvmonthly0.52021-01-17https://fbernutz.github.io/about/motivatorsmonthly0.52021-01-14https://fbernutz.github.io/iosdaily1.02021-02-15https://fbernutz.github.io/postsdaily1.02021-02-14https://fbernutz.github.io/posts/basic-ipad-supportmonthly0.52021-02-14https://fbernutz.github.io/posts/building-apps-for-everyonemonthly0.52020-10-30https://fbernutz.github.io/posts/github-actionsmonthly0.52021-02-14https://fbernutz.github.io/posts/ipad-and-apple-pencilmonthly0.52021-02-14https://fbernutz.github.io/posts/sketchnotes-on-online-conferencesmonthly0.52020-10-30https://fbernutz.github.io/posts/thoughts-about-2019monthly0.52021-02-14https://fbernutz.github.io/posts/thoughts-about-2020monthly0.52021-01-31https://fbernutz.github.io/posts/welcome-sketchnotesmonthly0.52021-01-10https://fbernutz.github.io/sketchnotesdaily1.02021-02-07https://fbernutz.github.io/sketchnotes/alnue19-die-4-entscheidenden-perspektivenmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-die-agile-transformationmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-impressionen-einer-reise-in-die-agilitaetmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-management-hat-euch-gross-gemachtmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-traum-vs-wirklichkeitmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-warum-agilitaet-auch-stabilitaet-brauchtmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-accessibility-for-iosmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-apps-for-allmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-building-swift-clismonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-custom-swiftui-componentsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-getting-started-with-combinemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-make-your-voice-heardmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-practical-machine-learningmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-property-wrappersmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-quantum-computersmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-realtime-video-processingmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-small-team-big-opensourcemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-uimode-pitch-blackmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-uitesting-over-the-yearsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/apple19-special-eventmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/apple20-special-eventmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/dachfest18-01monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/devfest19-how-javascript-influenced-our-livesmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/devfest19-light-or-darkmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/devfest19-understanding-declarative-uimonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/gdg19-kotlin-multiplatformmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/heldenreisemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-1monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-10monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-2monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-3monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-4monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-5monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-6monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-7monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-8monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-9monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-5-stranger-things-you-can-do-with-timelanemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-appcode-under-the-hoodmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-becoming-an-ios-development-expertmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-big-o-notation-of-your-appmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-choose-your-own-swiftui-adventuremonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-core-data-best-practicesmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-how-to-continuously-update-your-native-app-and-not-die-tryingmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-how-to-scale-your-app-with-the-platform-teammonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-ios-ci-in-da-housemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-leveraging-lidar-for-immersive-experiences-with-realitykitmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-making-a-component-librarymonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-secure-authentication-are-you-sure-you-do-it-rightmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-shipping-a-feature-in-spotifymonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-swiftui-tales-from-the-hyperdeckmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-typescript-for-the-swift-developermonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-using-core-nfc-to-scan-and-verify-identity-documentsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-we-are-now-apple-platform-developersmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-yesterday-i-didnt-get-anything-donemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/overnight-oatsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/snconnect20-introductionmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/snconnect20-lets-letter-togethermonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/snconnect20-tips-and-tricks-for-sketchnoting-in-procreatemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-advanced-colors-in-iosmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-clues-approach-to-backend-driven-uimonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-consistency-principlemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-detangling-gesture-recognizersmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-from-heroic-leaders-to-high-performing-teamsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-how-to-market-your-mobile-appmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-inclusive-accessible-app-developmentmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-internationalizing-your-appmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-kotlin-nativemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-mobile-me-its-complicatedmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-muse-prototype-challengesmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-promises-in-iosmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-swift5-strings-interpolationmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-building-a-mobile-based-startup-businessmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-building-programming-language-in-swiftmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-combine-connect-midi-signals-to-swiftuimonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-conductors-its-all-about-communicationmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-cross-platform-collaboration-patternsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-data-trusts-what-why-howmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-explain-metal-like-i-m-5monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-fixing-combine-code-with-timelane-instrumentmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-multi-threaded-asynchronous-parallel-world-of-swiftmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-prepping-for-a-swiftui-futuremonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-rich-text-core-textmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-state-driven-developmentmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-swift-scriptsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-swiftui-data-flow-with-reduxmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-visualizing-the-structure-of-a-swift-projectmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-we-need-to-talk-about-websocketsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-who-can-say-they-have-learned-swiftmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-who-s-afraid-of-the-big-bad-bluetoothmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-why-is-swift-so-much-better-on-servermonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/verstaendlich-schreibenmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc16-in-app-purchases-with-swift3monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-accessibility-custom-actionsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-accessibility-inspectormonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-advances-in-ui-data-sourcesmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-creating-great-localized-experiences-with-xcode-11monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-implementing-dark-mode-in-iosmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-introducing-swift-uimonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-keynote-1monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-keynote-2monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-keynote-3monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-modernizing-your-ui-for-ios-13monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-visual-design-accessibilitymonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-whats-new-in-ios-designmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-whats-new-in-swiftmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-writing-great-accessibility-labelsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-advances-in-uicollectionviewmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-keynotemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-make-your-app-visually-accessiblemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-meet-scribble-for-ipadmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-meet-widgetkitmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-modern-cell-configurationmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-state-of-the-unionmonthly0.52021-02-14 \ No newline at end of file +https://fbernutz.github.io/aboutdaily1.02021-01-17https://fbernutz.github.io/about/cvmonthly0.52021-01-17https://fbernutz.github.io/about/motivatorsmonthly0.52021-01-14https://fbernutz.github.io/iosdaily1.02021-02-15https://fbernutz.github.io/postsdaily1.02021-02-14https://fbernutz.github.io/posts/basic-ipad-supportmonthly0.52021-02-14https://fbernutz.github.io/posts/building-apps-for-everyonemonthly0.52020-10-30https://fbernutz.github.io/posts/github-actionsmonthly0.52021-02-14https://fbernutz.github.io/posts/ipad-and-apple-pencilmonthly0.52021-02-14https://fbernutz.github.io/posts/sketchnotes-on-online-conferencesmonthly0.52020-10-30https://fbernutz.github.io/posts/thoughts-about-2019monthly0.52021-02-14https://fbernutz.github.io/posts/thoughts-about-2020monthly0.52021-03-03https://fbernutz.github.io/posts/welcome-sketchnotesmonthly0.52021-01-10https://fbernutz.github.io/sketchnotesdaily1.02021-02-07https://fbernutz.github.io/sketchnotes/alnue19-die-4-entscheidenden-perspektivenmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-die-agile-transformationmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-impressionen-einer-reise-in-die-agilitaetmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-management-hat-euch-gross-gemachtmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-traum-vs-wirklichkeitmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/alnue19-warum-agilitaet-auch-stabilitaet-brauchtmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-accessibility-for-iosmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-apps-for-allmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-building-swift-clismonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-custom-swiftui-componentsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-getting-started-with-combinemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-make-your-voice-heardmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-practical-machine-learningmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-property-wrappersmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-quantum-computersmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-realtime-video-processingmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-small-team-big-opensourcemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-uimode-pitch-blackmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/appbuilders20-uitesting-over-the-yearsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/apple19-special-eventmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/apple20-special-eventmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/dachfest18-01monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/devfest19-how-javascript-influenced-our-livesmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/devfest19-light-or-darkmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/devfest19-understanding-declarative-uimonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/gdg19-kotlin-multiplatformmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/heldenreisemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-1monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-10monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-2monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-3monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-4monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-5monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-6monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-7monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-8monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/mismatch-how-inclusion-shapes-design-9monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-5-stranger-things-you-can-do-with-timelanemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-appcode-under-the-hoodmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-becoming-an-ios-development-expertmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-big-o-notation-of-your-appmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-choose-your-own-swiftui-adventuremonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-core-data-best-practicesmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-how-to-continuously-update-your-native-app-and-not-die-tryingmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-how-to-scale-your-app-with-the-platform-teammonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-ios-ci-in-da-housemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-leveraging-lidar-for-immersive-experiences-with-realitykitmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-making-a-component-librarymonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-secure-authentication-are-you-sure-you-do-it-rightmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-shipping-a-feature-in-spotifymonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-swiftui-tales-from-the-hyperdeckmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-typescript-for-the-swift-developermonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-using-core-nfc-to-scan-and-verify-identity-documentsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-we-are-now-apple-platform-developersmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/nsspain20-yesterday-i-didnt-get-anything-donemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/overnight-oatsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/snconnect20-introductionmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/snconnect20-lets-letter-togethermonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/snconnect20-tips-and-tricks-for-sketchnoting-in-procreatemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-advanced-colors-in-iosmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-clues-approach-to-backend-driven-uimonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-consistency-principlemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-detangling-gesture-recognizersmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-from-heroic-leaders-to-high-performing-teamsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-how-to-market-your-mobile-appmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-inclusive-accessible-app-developmentmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-internationalizing-your-appmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-kotlin-nativemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-mobile-me-its-complicatedmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-muse-prototype-challengesmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-promises-in-iosmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf19-swift5-strings-interpolationmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-building-a-mobile-based-startup-businessmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-building-programming-language-in-swiftmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-combine-connect-midi-signals-to-swiftuimonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-conductors-its-all-about-communicationmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-cross-platform-collaboration-patternsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-data-trusts-what-why-howmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-explain-metal-like-i-m-5monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-fixing-combine-code-with-timelane-instrumentmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-multi-threaded-asynchronous-parallel-world-of-swiftmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-prepping-for-a-swiftui-futuremonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-rich-text-core-textmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-state-driven-developmentmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-swift-scriptsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-swiftui-data-flow-with-reduxmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-visualizing-the-structure-of-a-swift-projectmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-we-need-to-talk-about-websocketsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-who-can-say-they-have-learned-swiftmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-who-s-afraid-of-the-big-bad-bluetoothmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/uikonf20-why-is-swift-so-much-better-on-servermonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/verstaendlich-schreibenmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc16-in-app-purchases-with-swift3monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-accessibility-custom-actionsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-accessibility-inspectormonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-advances-in-ui-data-sourcesmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-creating-great-localized-experiences-with-xcode-11monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-implementing-dark-mode-in-iosmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-introducing-swift-uimonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-keynote-1monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-keynote-2monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-keynote-3monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-modernizing-your-ui-for-ios-13monthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-visual-design-accessibilitymonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-whats-new-in-ios-designmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-whats-new-in-swiftmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc19-writing-great-accessibility-labelsmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-advances-in-uicollectionviewmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-keynotemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-make-your-app-visually-accessiblemonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-meet-scribble-for-ipadmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-meet-widgetkitmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-modern-cell-configurationmonthly0.52021-02-14https://fbernutz.github.io/sketchnotes/wwdc20-state-of-the-unionmonthly0.52021-02-14 \ No newline at end of file