<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Blog on Ornella K. Friggit</title>
    <link>http://ornella.xyz/blog/</link>
    <description>Recent content in Blog on Ornella K. Friggit</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Mon, 23 Jun 2025 00:00:00 +0000</lastBuildDate>
    <atom:link href="http://ornella.xyz/blog/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Adopting adapters</title>
      <link>http://ornella.xyz/blog/2025/g/adopting-adapters/</link>
      <pubDate>Mon, 23 Jun 2025 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2025/g/adopting-adapters/</guid>
      <description>&lt;p&gt;Another on-the-fly post about some code opinions I have. Inspiration struck, and since the last time I felt this and acted on it was over 6 months ago, I decided to ride the wave!&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;ve been thinking about the adapter pattern lately. Some may know I am a fan of functional programming, particularly beause of how well it lends itself to unit testing and test-driven development.&lt;/p&gt;&#xA;&lt;p&gt;A coworker introduced me to the adapter pattern a couple of years ago, and I love it. It&amp;rsquo;s essentially an elegant way to inject methods as inputs into a larger function, and is particularly helpful for a few reasons:&#xA;1 - implementing the same basic functionality for different domains&#xA;2 - testing with very lightweight mocks. This is particularly helpful when you&amp;rsquo;re working with serverless functions, where you may want to test all the barebones of functionality locally.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Poème: Oublier</title>
      <link>http://ornella.xyz/blog/2025/c/poeme-oublier/</link>
      <pubDate>Sat, 22 Mar 2025 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2025/c/poeme-oublier/</guid>
      <description>&lt;p&gt;Oublier nos ancêtres&lt;/p&gt;&#xA;&lt;p&gt;Comme si on ne les portait pas,&lt;/p&gt;&#xA;&lt;p&gt;Par fragments,&lt;/p&gt;&#xA;&lt;p&gt;Emmagasinés,&lt;/p&gt;&#xA;&lt;p&gt;en milliards d&amp;rsquo;exemplaires&lt;/p&gt;&#xA;&lt;p&gt;dans le noyau de nos cellules.&lt;/p&gt;&#xA;&lt;p&gt;Puis,&lt;/p&gt;&#xA;&lt;p&gt;Répéter leurs parcours&lt;/p&gt;&#xA;&lt;p&gt;Comme le premier enfant&lt;/p&gt;&#xA;&lt;p&gt;Qui apprit à téter.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Notes/TIL: git clean -fdx</title>
      <link>http://ornella.xyz/blog/2024/m/git-clean/</link>
      <pubDate>Tue, 17 Dec 2024 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2024/m/git-clean/</guid>
      <description>&lt;p&gt;I am working in a Typescript monorepo. On top of all the node_modules everywhere, there are also generated files, like copied over tsconfigs etc. I needed to clear all those out because it seemed something was off with dependencies. I just learned about &lt;code&gt;git clean -fdx&lt;/code&gt;, which resets the repo to only the files tracked in git. Pretty neat!&lt;/p&gt;&#xA;&lt;p&gt;It&amp;rsquo;s close to what I do with worktrees anyway - at some point I should write about my use of worktrees and maybe publish a couple of my lil custom scripts.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Notes/rabbit hole: auto-generating Git co-authors</title>
      <link>http://ornella.xyz/blog/2024/l/notes-git-auto-co-authors/</link>
      <pubDate>Tue, 05 Nov 2024 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2024/l/notes-git-auto-co-authors/</guid>
      <description>&lt;p&gt;As a refactoring freak, I sometimes run into the scenario where someone reaches out to me about code that I&amp;rsquo;ve &amp;ldquo;written&amp;rdquo; - but in reality all I&amp;rsquo;ve done is move it to a new file. Because my name is on the commit message for this code, and there&amp;rsquo;s no other history for it, it looks like I&amp;rsquo;m the actual author.&lt;/p&gt;&#xA;&lt;p&gt;Right now, I&amp;rsquo;m reorganizing a package in a monorepo and I want to make sure I attribute credit where it&amp;rsquo;s due / don&amp;rsquo;t erase the git history and end up having to &amp;ldquo;support&amp;rdquo; questions about the content of the files.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Notes on React composability</title>
      <link>http://ornella.xyz/blog/2024/k/notes-on-react-composability/</link>
      <pubDate>Thu, 31 Oct 2024 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2024/k/notes-on-react-composability/</guid>
      <description>&lt;p&gt;I am helping out in the front-end at work, and my coworker&amp;rsquo;s pushing for us to use this pattern in React he calls composability. I was unfamiliar with the pattern, and I&amp;rsquo;ll be honest upfront, I&amp;rsquo;m not a big fan.&lt;/p&gt;&#xA;&lt;p&gt;How it basically goes is: for components that contain multiple sub-elements, instead of exporting 1 component that controls its own sub-elements with props, we export a bunch of components within 1 object variable - one being the root element, the others being any sub-elements. Then, we arrange them in the file that&amp;rsquo;s importing this stuff, as children of the root element. Sorry if that&amp;rsquo;s a bit confusing - I&amp;rsquo;ll give an example below.&lt;/p&gt;</description>
    </item>
    <item>
      <title>On technical writing</title>
      <link>http://ornella.xyz/blog/2024/k/on-technical-writing/</link>
      <pubDate>Tue, 29 Oct 2024 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2024/k/on-technical-writing/</guid>
      <description>&lt;p&gt;🎶&lt;em&gt;Technical killed the blog posting star&lt;/em&gt; 🎶&lt;/p&gt;&#xA;&lt;p&gt;Heeeeyyyy.&lt;/p&gt;&#xA;&lt;p&gt;My &lt;a href=&#34;http://ornella.xyz/blog/2023/f/static-site-luv/&#34;&gt;last post on here&lt;/a&gt; was me announcing a new series of technical posts, with great fanfare and the justification that it&amp;rsquo;s something I find difficult and daunting but want to do. I was all - I should face my fears, I should challenge myself.&lt;/p&gt;&#xA;&lt;p&gt;After publishing that, I didn&amp;rsquo;t blog for over a year.&lt;/p&gt;&#xA;&lt;p&gt;I honestly find this fact as embarrassing as it is fucking hilarious. I clearly wasn&amp;rsquo;t lying when I said I have some mental block around this. This commitment seemingly singlehandedly killed a regular writing habit I&amp;rsquo;d kept up for a couple of years. (to be honest, it&amp;rsquo;s not the only thing: I&amp;rsquo;d also been working on my home renovation, which is the biggest project of my life, and that took up so much brainspace.)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tech Talk F: Static site luv</title>
      <link>http://ornella.xyz/blog/2023/f/static-site-luv/</link>
      <pubDate>Fri, 09 Jun 2023 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2023/f/static-site-luv/</guid>
      <description>&lt;p&gt;Since I&amp;rsquo;ve had this website, it&amp;rsquo;s gotten staticker and staticker. Why&amp;rsquo;s that? Let&amp;rsquo;s talkaboutit!&lt;/p&gt;&#xA;&lt;h2 id=&#34;whats-a-static-site&#34;&gt;&#xA;    &lt;a href=&#34;#whats-a-static-site&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  What&amp;rsquo;s a static site?&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;To explain what a static site is, it&amp;rsquo;s probably better to start with &amp;ldquo;what&amp;rsquo;s a dynamic site?&amp;rdquo;&lt;/p&gt;&#xA;&lt;h3 id=&#34;traditional-dynamic-sites-runtime-generated-html&#34;&gt;&#xA;    &lt;a href=&#34;#traditional-dynamic-sites-runtime-generated-html&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  Traditional dynamic sites: runtime-generated HTML&#xA;&lt;/h3&gt;&#xA;&lt;p&gt;Well, a dynamic site is the opposite of a static site. You&amp;rsquo;re welcome.&lt;/p&gt;&#xA;&lt;p&gt;Okay, more seriously: in most traditional websites, a server contains code files, say python or javascript files for instance, that mainly do two things.&lt;/p&gt;</description>
    </item>
    <item>
      <title>New series: Tech Talks</title>
      <link>http://ornella.xyz/blog/2023/f/new-series-tech-talks/</link>
      <pubDate>Thu, 08 Jun 2023 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2023/f/new-series-tech-talks/</guid>
      <description>&lt;h2 id=&#34;why-not&#34;&gt;&#xA;    &lt;a href=&#34;#why-not&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  Why not&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;I think I&amp;rsquo;ve referenced it before: I am very uncomfortable talking about technical topics online. And yes, I know I&amp;rsquo;ve bragged that I don&amp;rsquo;t feel impostor syndrome, but really, I feel something very close to it: I just don&amp;rsquo;t know how to talk about tech, long form, in a way that feels like me. I find myself either putting on tech bro unearned confidence, or cutesy &amp;ldquo;I&amp;rsquo;m just a coder girl UwU&amp;rdquo; vibes. To be fair, I am cocky and I am cute, but&amp;hellip; I don&amp;rsquo;t know.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Self-hosting Mastodon</title>
      <link>http://ornella.xyz/blog/2023/b/self-hosting-mastodon/</link>
      <pubDate>Wed, 15 Feb 2023 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2023/b/self-hosting-mastodon/</guid>
      <description>&lt;h2 id=&#34;whats-mastodon&#34;&gt;&#xA;    &lt;a href=&#34;#whats-mastodon&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  What&amp;rsquo;s Mastodon&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;I am not going to explain this here, so sorry! An explanation of Mastodon deserves its own post and I don&amp;rsquo;t have time right now. Need to write out more technical stuff while it&amp;rsquo;s still fresh in my brain.&lt;/p&gt;&#xA;&lt;p&gt;However, I will very likely write out a blog post about mastodon and decentralized web in general, since I&amp;rsquo;ve been proselytizing (is that the word?) to people in real life for months and I&amp;rsquo;ve gotten fairly good at the spiel.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Social update</title>
      <link>http://ornella.xyz/blog/2023/b/social-update/</link>
      <pubDate>Tue, 14 Feb 2023 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2023/b/social-update/</guid>
      <description>&lt;p&gt;Hey all! if you were wondering: I am not on social media at the moment, here&amp;rsquo;s why!&lt;/p&gt;&#xA;&lt;h2 id=&#34;twitter-migration&#34;&gt;&#xA;    &lt;a href=&#34;#twitter-migration&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  Twitter migration&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;I don&amp;rsquo;t have twitter anymore, intentionally, because I deleted all my content.&lt;/p&gt;&#xA;&lt;h2 id=&#34;mastodon-messup&#34;&gt;&#xA;    &lt;a href=&#34;#mastodon-messup&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  Mastodon messup&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;I am supposed to have mastodon! But 3.5 weeks ago, I wanted to migrate away from masto.host in order to totally host my own instance and tinker with the code, so I made a backup of my db, put up the instance, and then tried to restore postgres from the db backup&amp;hellip; unsuccessfully. Something about permissions. I don&amp;rsquo;t know much about postgres.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Post A: “Watching the Birds”</title>
      <link>http://ornella.xyz/blog/2023/a/a-watching-the-birds/</link>
      <pubDate>Sun, 22 Jan 2023 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2023/a/a-watching-the-birds/</guid>
      <description>&lt;h2 id=&#34;at-grandmas-house&#34;&gt;&#xA;    &lt;a href=&#34;#at-grandmas-house&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  At grandma&amp;rsquo;s house&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;&amp;ldquo;Quelle chance, hein? De pouvoir regarder les oiseaux.&amp;rdquo;&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;&amp;ldquo;What a [luck/privilege/gift], huh? To be able to [watch/look at] the birds.&amp;rdquo;&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;I think back to that moment often. It was a few years ago, around 2 to 5 years. My grandma was sitting at the kitchen table, facing the bay window with a view onto the garden. She was watching birds in the cherry tree, as she often does.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme M: “Fun on the Side”</title>
      <link>http://ornella.xyz/blog/2022/12/scheme-m-fun-on-the-side/</link>
      <pubDate>Sat, 31 Dec 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/12/scheme-m-fun-on-the-side/</guid>
      <description>&lt;p&gt;Maybe this scheme should be called &amp;ldquo;Make it up, Mwahahaha&amp;rdquo; because I most definitely am not writing this in the month of M, or even in 2022 at all. It is February (B) 2023. In true cheater fashion, I could make slimy excuses like &amp;ldquo;time is arbitrary, look at my calendar&amp;rdquo; &amp;ndash; (&lt;em&gt;&amp;ldquo;baby, the westernized idea of monogamy is so artificial and outdated&amp;rdquo;&lt;/em&gt;) &amp;ndash; but really, it all comes down to &amp;ldquo;It looks nice to me if there&amp;rsquo;s a scheme for every month&amp;rdquo; and &amp;ldquo;lying is a perk of coding my own website&amp;rdquo;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme L: “Traveling Light”</title>
      <link>http://ornella.xyz/blog/2022/12/scheme-l-traveling-light/</link>
      <pubDate>Sun, 04 Dec 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/12/scheme-l-traveling-light/</guid>
      <description>&lt;p&gt;Did you think this would be a metaphorical title again? You thought wrong! This month, I&amp;rsquo;m discussing how I approach traveling, which has allowed me to have lots of fun, relaxing, short trips this year.&lt;/p&gt;&#xA;&lt;h2 id=&#34;definition&#34;&gt;&#xA;    &lt;a href=&#34;#definition&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  Definition&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;You pack for comfort and experiences.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-story&#34;&gt;&#xA;    &lt;a href=&#34;#the-story&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  The story&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Last year, I did &lt;em&gt;lots&lt;/em&gt; of traveling. Most of it was to see family, and it left me really exhausted (see Scheme K, Kora Theory). This year, I also did lots of traveling, but it actually has not tired me as much, and in fact, sometimes has even energized me!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Follow-up to scheme J: Thank you friends!</title>
      <link>http://ornella.xyz/blog/2022/11/scheme-j-follow-up-thank-you/</link>
      <pubDate>Fri, 04 Nov 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/11/scheme-j-follow-up-thank-you/</guid>
      <description>&lt;p&gt;Last month, when the deadline came around for my post, I felt like a contestant on who wants to be a millionaire, and I asked for help. Specifically, what I struggle(d) with was managing my energy.&lt;/p&gt;&#xA;&lt;p&gt;3 of you reached out with some really great insight. I&amp;rsquo;m super inspired by how you approach managing your time, in particular. I think I still have a lot of room to get better when it comes to that, especially at work, and I will definitely use your experiences and advice to do that. One thing I am wrestling with a lot is guilt: when I am not working during the day, I feel guilty and rushed, and when I work at night, I feel guilty for not having good work-life balance.&#xA;It feels like a set schedule might be a good bet for now, but I don&amp;rsquo;t know, I feel like it&amp;rsquo;s kind of a bummer since I have so much freedom! It&amp;rsquo;s like when you take a kid to the ice cream place and you say &amp;ldquo;you can have anything you want&amp;rdquo; and they go for a one-scoop vanilla cone.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme K: “De-re-contextualized tasks”</title>
      <link>http://ornella.xyz/blog/2022/11/scheme-k-de-re-contextualized-tasks/</link>
      <pubDate>Fri, 04 Nov 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/11/scheme-k-de-re-contextualized-tasks/</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve said before that I write this series because I take pleasure in it. I am starting not to, in a way that&amp;rsquo;s more than just trepidation about a task on my to-do list.&lt;/p&gt;&#xA;&lt;p&gt;I don&amp;rsquo;t like that it&amp;rsquo;s making me write from a place of authority, at a time where I don&amp;rsquo;t feel like I am, and as a result, doing that feels like playing a role. It&amp;rsquo;s making me sound like I have my shit together.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme J: “Phone a Friend”</title>
      <link>http://ornella.xyz/blog/2022/10/scheme-j-joker-call-a-friend/</link>
      <pubDate>Fri, 07 Oct 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/10/scheme-j-joker-call-a-friend/</guid>
      <description>&lt;p&gt;So last month, I totally forgot how the alphabet worked and thought the next letter after I was K. It&amp;rsquo;s not, apparently.&lt;/p&gt;&#xA;&lt;p&gt;Anyway, let me just warn you, while this is technically a scheme post, ummm&amp;hellip; well, let&amp;rsquo;s go into it.&lt;/p&gt;&#xA;&lt;h2 id=&#34;definition&#34;&gt;&#xA;    &lt;a href=&#34;#definition&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  Definition&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;When you don&amp;rsquo;t know what to do&amp;hellip; phone a friend?&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-story&#34;&gt;&#xA;    &lt;a href=&#34;#the-story&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  The story&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;This month, I started a new job (yay!) and it is going amazing. There is one main thing that I&amp;rsquo;m struggling with, though, and that is managing my time and energy. It&amp;rsquo;s something that I struggled with a lot at Recurse as well.&lt;/p&gt;</description>
    </item>
    <item>
      <title>My standard advice for junior software engineers in their first job</title>
      <link>http://ornella.xyz/blog/2022/09/standard-advice-for-juniors/</link>
      <pubDate>Sat, 17 Sep 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/09/standard-advice-for-juniors/</guid>
      <description>&lt;p&gt;I wrote about getting a first dev job a while ago&amp;hellip; but what about after you start?&#xA;Here are a few pieces of advice that often crop up when I&amp;rsquo;m mentoring junior software engineers, which I&amp;rsquo;ve found myself doing a lot in the last 3 years!&lt;/p&gt;&#xA;&lt;h2 id=&#34;1-feel-free-to-look-ignorant&#34;&gt;&#xA;    &lt;a href=&#34;#1-feel-free-to-look-ignorant&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  1. Feel free to look ignorant.&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Being a junior software engineer is an extremely liberating spot to be, because others &lt;em&gt;expect&lt;/em&gt; you not to know things. So take advantage! Ask silly questions, be open about you&amp;rsquo;re struggling with a task. It saves everyone time, people usually like to help, and again, it&amp;rsquo;s expected.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme I: “Explanation Loop”</title>
      <link>http://ornella.xyz/blog/2022/09/scheme-i-explanation-loop/</link>
      <pubDate>Mon, 05 Sep 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/09/scheme-i-explanation-loop/</guid>
      <description>&lt;!-- raw HTML omitted --&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;I-I, say that you remember! It&amp;rsquo;s the month of I, so we&amp;rsquo;re going to get personal again. Kind of. A little.&lt;/p&gt;&#xA;&lt;p&gt;One of the most important skills of a developer is the ability to exchange information, and more specifically, to give suggestions and explanations. To explain explanations: I&amp;rsquo;d say the goal of an explanation is to give someone information that 1) they don&amp;rsquo;t know and 2) is useful.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme H: “Kora Theory”</title>
      <link>http://ornella.xyz/blog/2022/08/scheme-h-kora-theory/</link>
      <pubDate>Thu, 11 Aug 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/08/scheme-h-kora-theory/</guid>
      <description>&lt;p&gt;I don&amp;rsquo;t know much about musical instruments, but I know even less about string theory, which is what I was going to title this scheme at first. This isn&amp;rsquo;t even an article about music, or koras, but I love the kora, and I guess this is a good time to plug it (why not.)&lt;/p&gt;&#xA;&lt;p&gt;The kora is a stringed instrument, usually 21 strings. You can play chords, by holding down multiple strings, but oftentimes you&amp;rsquo;re playing one string at a time in quick succession - think harp - and creating beautiful, harmonious pieces.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme G: “Keep it Factual, Friend”</title>
      <link>http://ornella.xyz/blog/2022/07/scheme-g-keep-it-factual-friend/</link>
      <pubDate>Wed, 27 Jul 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/07/scheme-g-keep-it-factual-friend/</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve been meaning to write about impostor syndrome for a while. It&amp;rsquo;s something I have lots of thoughts about, and they often feel parallel to whatever emotions people seem to be describing.&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;d describe the feeling of impostor syndrome as: &amp;ldquo;&lt;strong&gt;I don&amp;rsquo;t belong here, the others don&amp;rsquo;t realize it, and it&amp;rsquo;s going to be a problem when they find out&lt;/strong&gt;.&amp;rdquo;&lt;/p&gt;&#xA;&lt;p&gt;As a preface/disclaimer: my parents are from 2 different countries (and continents), and I grew up in 3 other countries, going to international schools.&#xA;I don&amp;rsquo;t think I&amp;rsquo;ve ever felt a sense of full cultural belonging&amp;hellip; ever. So in a way, I feel like I can&amp;rsquo;t fully relate to the discomfort of not belonging &amp;ndash; it feels like it&amp;rsquo;s always just been a fact of life, that whatever group I&amp;rsquo;m in will only be able to relate to a fraction of my experience.&lt;/p&gt;</description>
    </item>
    <item>
      <title>First Checkin: Live from Recurse Center</title>
      <link>http://ornella.xyz/blog/2022/07/first-checkin-recurse/</link>
      <pubDate>Sat, 09 Jul 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/07/first-checkin-recurse/</guid>
      <description>&lt;p&gt;So I said I was going to write about &lt;a href=&#34;https://www.recurse.com/&#34;&gt;Recurse&lt;/a&gt;, but I really wasn&amp;rsquo;t sure what specifically. I find it a lot easier to write about things after they&amp;rsquo;ve happened than during. Here we go though: we&amp;rsquo;re at the halfway point of my half-batch, so let&amp;rsquo;s talk about it!&lt;/p&gt;&#xA;&lt;h2 id=&#34;first-off-whats-recurse&#34;&gt;&#xA;    &lt;a href=&#34;#first-off-whats-recurse&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  First off, what&amp;rsquo;s Recurse?&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;AKA, what the hell am I talking about?&lt;/p&gt;&#xA;&lt;p&gt;Since June 27, I&amp;rsquo;ve been participating in a Recurse Center batch. &lt;a href=&#34;https://www.recurse.com/about&#34;&gt;The Recurse Center&lt;/a&gt; (AKA Recurse) is a self-directed educational retreat for programmers. There&amp;rsquo;s some light framework - facilitators, guidelines -, but no teachers. It&amp;rsquo;s not a bootcamp. You&amp;rsquo;re just learning what you personally want to learn, among peers who might have 6 months or 40 years of experience coding.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sagesse de Papa: some gems of wisdom from my dad</title>
      <link>http://ornella.xyz/blog/2022/07/sagesse-de-papa/</link>
      <pubDate>Fri, 08 Jul 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/07/sagesse-de-papa/</guid>
      <description>&lt;p&gt;My dad and I talk on the phone pretty often. One of our last conversations went something like this:&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Papa&lt;/strong&gt;: &amp;ldquo;I read your blog, abc or xyz or whatever it&amp;rsquo;s called right now&amp;rdquo;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Me&lt;/strong&gt;: &amp;ldquo;Oh, cool! Did you like i&amp;ndash;&amp;rdquo;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Papa&lt;/strong&gt;: &amp;ldquo;Yeah, there&amp;rsquo;s a typo.&amp;rdquo;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Me&lt;/strong&gt;: &amp;ldquo;Oh. Right. I&amp;rsquo;m sure there is one, or many. I don&amp;rsquo;t go through an editor or anything.&amp;rdquo;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Papa&lt;/strong&gt;: &amp;ldquo;Yeah, there are several typos.&amp;rdquo;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Me&lt;/strong&gt;: &amp;ldquo;&amp;hellip; Okay. Where?&amp;rdquo;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme F: “Thanks, not sorry”</title>
      <link>http://ornella.xyz/blog/2022/07/scheme-f-thanks-not-sorry/</link>
      <pubDate>Fri, 08 Jul 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/07/scheme-f-thanks-not-sorry/</guid>
      <description>&lt;h2 id=&#34;definition&#34;&gt;&#xA;    &lt;a href=&#34;#definition&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  Definition&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;When you feel guilt, you reframe it to gratefulness.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-story&#34;&gt;&#xA;    &lt;a href=&#34;#the-story&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  The story&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;The month of F was a stressful month. I was applying to Recurse, trying to negotiate leave, getting and recovering from COVID, traveling to my brother&amp;rsquo;s wedding and back&amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;I also privately got some genuine but harsh feedback on my blog that I wasn&amp;rsquo;t prepared for (it had to do with what a hypothetical potential employer would think about it, sex tech and candor.) I started to overthink things &amp;ndash; what I should post, what I should take down, what would shock people in the industry, what would annoy them, and ultimately, whether, or to what degree, I care.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Digital Migration</title>
      <link>http://ornella.xyz/blog/2022/05/digital-migration/</link>
      <pubDate>Sun, 29 May 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/05/digital-migration/</guid>
      <description>&lt;p&gt;If you know me from Twitter, you&amp;rsquo;ve seen me talk about wanting to get off the platform. Here&amp;rsquo;s a lot more info about that!&lt;/p&gt;&#xA;&lt;h2 id=&#34;1-social-media-in-general&#34;&gt;&#xA;    &lt;a href=&#34;#1-social-media-in-general&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  1. Social media in general&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;I&amp;rsquo;m increasingly skeptical of social media, but I really enjoy online community. At various points, I&amp;rsquo;ve had Facebook, Instagram, Tumblr, Twitter, Snapchat, and Reddit accounts. I had Facebook for nearly 10 years (2008-2018 iirc), and cold-deleted it with just a quick post to DM me for my phone number or other ways to get in touch. It was an instant relief.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme E: “Crushable Work Goals”</title>
      <link>http://ornella.xyz/blog/2022/04/scheme-e-crushable-work-goals/</link>
      <pubDate>Mon, 25 Apr 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/04/scheme-e-crushable-work-goals/</guid>
      <description>&lt;p&gt;Right off the bat, two things.&lt;/p&gt;&#xA;&lt;p&gt;First, I am writing this on 3E. Meaning I did not wait until the very last day of the month to do this task (please clap.)&lt;/p&gt;&#xA;&lt;p&gt;Second, this one is definitely a scheme, and it is one that gets pretty close to career advice. I want to clarify that again, like with every post in this series, I’m talking about a strategy I’ve used. I’m not advising you to do the same, or saying I invented it (and I’ll give credit when/where I know it’s due). This is my personal experience.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme D: “Multi-threaded Tidying”</title>
      <link>http://ornella.xyz/blog/2022/04/scheme-d-multi-threaded-tidying/</link>
      <pubDate>Fri, 22 Apr 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/04/scheme-d-multi-threaded-tidying/</guid>
      <description>&lt;p&gt;Hello and welcome to the end of D!&lt;/p&gt;&#xA;&lt;p&gt;So, I’m going to be honest, this is a point in the series where we’re veering into micro strategy/life hacks instead of proper schemes, but this is my blog and nobody’s going to stop me. So let’s talk about the way I keep my apartment tidy: multi-threading!&lt;/p&gt;&#xA;&lt;h2 id=&#34;definition&#34;&gt;&#xA;    &lt;a href=&#34;#definition&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  Definition&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;You pick up objects and put them down in the right place, and sometimes you do that with several objects at a time.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme C: “Priorities”</title>
      <link>http://ornella.xyz/blog/2022/03/scheme-c-priorities/</link>
      <pubDate>Wed, 23 Mar 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/03/scheme-c-priorities/</guid>
      <description>&lt;p&gt;This is a post I am writing a few days into D, but I am going to pretend I published it on time as scheme C. The reason it&amp;rsquo;s a little late is kind of explained by the rest of the post!&lt;/p&gt;&#xA;&lt;p&gt;At some point in the spring of last year - I wish I remembered when exactly - I came up with a simple system to prioritize my life, and it&amp;rsquo;s worked really well for me.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme B: “First Week Social”</title>
      <link>http://ornella.xyz/blog/2022/02/scheme-b-first-week-social/</link>
      <pubDate>Fri, 25 Feb 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/02/scheme-b-first-week-social/</guid>
      <description>&lt;p&gt;Today is 28 B. I am waiting for my brother and grandma to arrive at the train station, and of course, just remembered it’s my deadline to write my second strategy. Luckily, I’d come up with a subject a while ago, which I’ll call First Week Social.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-story&#34;&gt;&#xA;    &lt;a href=&#34;#the-story&#34; class=&#34;header-link&#34;&gt;#&lt;/a&gt;&#xA;  The story&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;In the French school system, you get put into “classes” which are basically groups of around 30 kids who have the same teachers. We don’t really have pick-and-choose classes like in the Anglo-Saxon system, so basically you spend your entire year with the same 30 kids every day for 8 hours a day. It had never been a problem until I got to the 10th grade (or &lt;em&gt;seconde&lt;/em&gt;,) which is the first year of high school in the French system.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Scheme A: “No Solutions”</title>
      <link>http://ornella.xyz/blog/2022/01/scheme-a-no-solutions/</link>
      <pubDate>Fri, 28 Jan 2022 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2022/01/scheme-a-no-solutions/</guid>
      <description>&lt;p&gt;It&amp;rsquo;s the last day of the month of A (ornellember format), so I&amp;rsquo;d like to start a little series. I consider myself to be a schemer— I don’t manipulate people, but I usually have a plan, or three, to deal with stuff ranging from socially tricky situations to getting a promotion.&lt;/p&gt;&#xA;&lt;p&gt;I think it’d be fun if, for every month of this 13-month year, I shared one strategy I’ve used. So here’s the first! I call this one “No Solutions.”&lt;/p&gt;</description>
    </item>
    <item>
      <title>Comprehensive advice to get your first dev job</title>
      <link>http://ornella.xyz/blog/2021/10/getting-your-first-dev-job/</link>
      <pubDate>Sat, 16 Oct 2021 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2021/10/getting-your-first-dev-job/</guid>
      <description>&lt;p&gt;After you complete college, bootcamp, or self-training, it can be really hard to try to get your first junior role in tech. In the last 2 years, I’ve talked to so many friends and family about this very challenging process, and recently thought I should share this with a larger audience. I’m no expert, yadayada, but these tips were really helpful for me, so I decided to put together a comprehensive guide to job searching.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Money Recap and Lessons Learned in 2020</title>
      <link>http://ornella.xyz/blog/2021/1/money-recap/</link>
      <pubDate>Mon, 11 Jan 2021 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2021/1/money-recap/</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve learned a lot about money on the Internet, so I&amp;rsquo;ll give back and share some (good and bad) financial decisions I made in 2020. For context, I started working in tech in September 2019, and at Disney in Nov 2019. Prior to that, from 2017 to 2019, my income had been 30-45k per year. It tripled when I moved into coding.&lt;/p&gt;&#xA;&lt;p&gt;Disclaimer: I wish I made money from any of the companies I mentioned in this post, but I don&amp;rsquo;t, quite sadly. Also, this is a recap of my good and bad choices, not advice.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Feature in Business Insider: Resistance Map</title>
      <link>http://ornella.xyz/blog/2020/11/feature-business-insider-resistance-map/</link>
      <pubDate>Mon, 16 Nov 2020 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2020/11/feature-business-insider-resistance-map/</guid>
      <description>&lt;p&gt;In June of 2020, I sat bleary-eyed in my makeshift home office and felt like a useless fraud. What was the point of sitting all day writing code for money when outside, there were Black people being killed and brutalized every day? At the time, I had a friend staying over for a couple of weeks who usually lived with an immunocompromised relative, so the risk associated with marching was irresponsible. I still knew there was something I could do.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Journeys in Accessibility: an interview for Society x Tech</title>
      <link>http://ornella.xyz/blog/2020/08/journeys-in-accessibility/</link>
      <pubDate>Sat, 15 Aug 2020 00:00:00 +0000</pubDate>
      <guid>http://ornella.xyz/blog/2020/08/journeys-in-accessibility/</guid>
      <description>&lt;p&gt;In August, Ademusoyo Awosika-Olumo asked me a few questions about accessibility for her blog Society x Tech, which does many amazing interviews with movers and shakers in the industry. Find my full answers below, and read the &lt;a href=&#34;https://www.societyxtech.com/blog/2020-08-23-q-a-with-ornella-friggit-how-can-we-incorporate-accessibility-practices-in-our-web-development/&#34;&gt;post as published on the Society x Tech blog here&lt;/a&gt;!&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;How would you describe yourself?&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;I’d describe myself as a front-end engineer who wants what she codes to be inclusive of everyone. I am pretty new to web accessibility – in fact, I started coding as a full-time job less than a year ago, so I am pretty new to writing software. However, I have been lucky enough to start learning about accessibility early in my career, and I have made it a point to make it central to my craft. In my opinion, writing accessible software is simply a requirement of being a good front-end developer. As I continue to grow as an engineer, my understanding of accessibility grows proportionally.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
