{
"type": "entry",
"author": {
"name": null,
"url": "http://tinysubversions.com/",
"photo": null
},
"url": "https://tinysubversions.com/notes/joining-asml/",
"published": "2024-07-12T00:00:00+00:00",
"content": {
"html": "<p>Big news in my world: I have been hired as a Senior Engineer at the Applied Social Media Lab at Harvard\u2019s Berkman Klein Center! (<a href=\"https://tinysubversions.com/notes/joining-asml/\">full item here</a>)</p>",
"text": "Big news in my world: I have been hired as a Senior Engineer at the Applied Social Media Lab at Harvard\u2019s Berkman Klein Center! (full item here)"
},
"name": "[Notes] I'm joining the Applied Social Media Lab!",
"post-type": "article",
"_id": "41626380",
"_source": "2776"
}
If you have a personal website, which I assume you do if you're following me here, you should add yourself to the Internet Phonebook while the call for websites is still open! They even have an "indie web" category! https://internetphonebook.net
{
"type": "entry",
"published": "2024-07-10T16:11:02-07:00",
"url": "https://aaronparecki.com/2024/07/10/17/",
"category": [
"indieweb"
],
"content": {
"text": "If you have a personal website, which I assume you do if you're following me here, you should add yourself to the Internet Phonebook while the call for websites is still open! They even have an \"indie web\" category! https://internetphonebook.net",
"html": "If you have a personal website, which I assume you do if you're following me here, you should add yourself to the Internet Phonebook while the call for websites is still open! They even have an \"indie web\" category! <a href=\"https://internetphonebook.net\"><span>https://</span>internetphonebook.net</a>"
},
"author": {
"type": "card",
"name": "Aaron Parecki",
"url": "https://aaronparecki.com/",
"photo": "https://aperture-media.p3k.io/aaronparecki.com/41061f9de825966faa22e9c42830e1d4a614a321213b4575b9488aa93f89817a.jpg"
},
"post-type": "note",
"_id": "41604749",
"_source": "16"
}
{
"type": "entry",
"published": "2024-07-03T10:59:16-07:00",
"url": "https://beesbuzz.biz/blog/8655-post-COVID-doldrums",
"name": "post-COVID doldrums",
"content": {
"text": "I\u2019m over COVID, and just have a little lingering bronchitis. Also some of the worst brain fog I\u2019ve ever had. I feel like my brain\u2019s been through a blender. Spatial relationships make very little sense, my reaction times are super slow, I am definitely not safe driving right now, and so on.\n\nMy standard state of affairs is best described as \u201cdazed and confused\u201d right now. I feel like my mental acuity has pretty much gone away. I\u2019m also making a lot of ridiculous spelling mistakes when I write, and I\u2019m having trouble stringing together basic procedures for things.\n\nBasically I feel like I\u2019ve taken massive brain damage and this has me all sorts of fucked up.\n\nAt least I\u2019m not alone in this but that\u2019s cold comfort. If I can\u2019t recover from this, what future do I have? My brain is pretty much the only thing I had going for me and now I don\u2019t even have that.",
"html": "<p>I\u2019m over COVID, and just have a little lingering bronchitis. Also some of the worst brain fog I\u2019ve ever had. I feel like my brain\u2019s been through a blender. Spatial relationships make very little sense, my reaction times are super slow, I am definitely <em>not</em> safe driving right now, and so on.</p><p>My standard state of affairs is best described as \u201cdazed and confused\u201d right now. I feel like my mental acuity has pretty much gone away. I\u2019m also making a lot of ridiculous spelling mistakes when I write, and I\u2019m having trouble stringing together basic procedures for things.</p><p>Basically I feel like I\u2019ve taken massive brain damage and this has me all sorts of fucked up.</p><p>At least <a href=\"https://www.nejm.org/doi/full/10.1056/NEJMe2400189\">I\u2019m not alone in this</a> but that\u2019s cold comfort. If I can\u2019t recover from this, what future do I have? My brain is pretty much the only thing I had going for me and now I don\u2019t even have that.</p>"
},
"author": {
"type": "card",
"name": "fluffy",
"url": "https://beesbuzz.biz/",
"photo": "https://beesbuzz.biz/static/headshot.jpg"
},
"post-type": "article",
"_id": "41544104",
"_source": "2778"
}
I prefer to use curly quotes and apostrophes in my posts, but unfortunately they are tricky to use on Windows. You have to type an incantation like ALT + 0147 to get “ and ALT + 0148 to get ” — and only on the keyboard number pad, not the numbers in the top row.
Alas, I have no number pad currently.
In recent years I’ve been using the Graphemica site since I have this search in my browser autocomplete: https://graphemica.com/search?q=quote. It’s a good reference site, but it is still a bit tedious to copy the characters.
So I set up these four bookmarklets. You can create a new bookmark in your browser, enter a title for it, then copy the full bookmarklet line into the URL field. Rinse and repeat. Each bookmarklet URL should start with javascript:
Left Quote: javascript: navigator.clipboard.writeText('“');
Right Quote: javascript: navigator.clipboard.writeText('”');
Right Single Quote / Apostrophe: javascript: navigator.clipboard.writeText('’');
Left Single Quote: javascript: navigator.clipboard.writeText('‘');
I initially had the null; at the end like the Stack Overflow answer. That worked in Chrome but I found it didn’t work in Firefox. When I removed it, it worked in both.
{
"type": "entry",
"published": "2024-07-02 11:41-0700",
"url": "https://gregorlove.com/2024/07/i-prefer-to-use/",
"category": [
"bookmarklet",
"writing",
"dev"
],
"content": {
"text": "I prefer to use curly quotes and apostrophes in my posts, but unfortunately they are tricky to use on Windows. You have to type an incantation like ALT + 0147 to get \u201c and ALT + 0148 to get \u201d \u2014 and only on the keyboard number pad, not the numbers in the top row.\n\n\n\nAlas, I have no number pad currently.\n\nIn recent years I\u2019ve been using the Graphemica site since I have this search in my browser autocomplete: https://graphemica.com/search?q=quote. It\u2019s a good reference site, but it is still a bit tedious to copy the characters.\n\nStack Overflow came to the rescue with a one-liner browser bookmarklet that lets you put text in your clipboard using the Clipboard API.\n\nSo I set up these four bookmarklets. You can create a new bookmark in your browser, enter a title for it, then copy the full bookmarklet line into the URL field. Rinse and repeat. Each bookmarklet URL should start with javascript:\n\nLeft Quote:\njavascript: navigator.clipboard.writeText('\u201c');\n\nRight Quote:\njavascript: navigator.clipboard.writeText('\u201d');\n\nRight Single Quote / Apostrophe:\njavascript: navigator.clipboard.writeText('\u2019');\n\nLeft Single Quote:\njavascript: navigator.clipboard.writeText('\u2018');\n\nI initially had the null; at the end like the Stack Overflow answer. That worked in Chrome but I found it didn\u2019t work in Firefox. When I removed it, it worked in both.",
"html": "<p>I prefer to use curly quotes and apostrophes in my posts, but unfortunately they are tricky to use on Windows. You have to type an incantation like <code>ALT + 0147</code> to get \u201c and <code>ALT + 0148</code> to get \u201d \u2014 and <em>only</em> on the keyboard number pad, not the numbers in the top row.</p>\n\n<p><img alt=\"animated image of a black woman on a news channel exclaiming \u201cain\u2019t nobody got time for that!\u201d\" src=\"https://gregorlove.com/site/assets/images/gifs/aint-nobody-got-time.webp\" /></p>\n\n<p>Alas, I have no number pad currently.</p>\n\n<p>In recent years I\u2019ve been using the Graphemica site since I have this search in my browser autocomplete: <a href=\"https://graphemica.com/search?q=quote\">https://graphemica.com/search?q=quote</a>. It\u2019s a good reference site, but it is still a bit tedious to copy the characters.</p>\n\n<p>Stack Overflow came to the rescue with a <a href=\"https://stackoverflow.com/a/59196111\">one-liner browser bookmarklet</a> that lets you put text in your clipboard using the <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API\">Clipboard API</a>.</p>\n\n<p>So I set up these four bookmarklets. You can create a new bookmark in your browser, enter a title for it, then copy the full bookmarklet line into the URL field. Rinse and repeat. Each bookmarklet URL should start with <code>javascript:</code></p>\n\n<p>Left Quote:<br /><code>javascript: navigator.clipboard.writeText('\u201c');</code></p>\n\n<p>Right Quote:<br /><code>javascript: navigator.clipboard.writeText('\u201d');</code></p>\n\n<p>Right Single Quote / Apostrophe:<br /><code>javascript: navigator.clipboard.writeText('\u2019');</code></p>\n\n<p>Left Single Quote:<br /><code>javascript: navigator.clipboard.writeText('\u2018');</code></p>\n\n<p>I initially had the <code>null;</code> at the end like the Stack Overflow answer. That worked in Chrome but I found it didn\u2019t work in Firefox. When I removed it, it worked in both.</p>"
},
"author": {
"type": "card",
"name": "gRegor Morrill",
"url": "https://gregorlove.com/",
"photo": "https://gregorlove.com/site/assets/files/6268/profile-2021-square.300x0.jpg"
},
"post-type": "note",
"_id": "41537174",
"_source": "95"
}
I've been using AI to extend my 100 Days of Music sketches into full length songs and it's been super fun! I upload the song I wrote and tell it to extend it, give it some guidance, then piece it back together in Logic Pro. I've finished 25 songs so far!
{
"type": "entry",
"published": "2024-07-01T18:21:56-07:00",
"url": "https://aaronparecki.com/2024/07/01/11/music",
"category": [
"ai",
"music",
"100daysofmusic"
],
"syndication": [
"https://bsky.app/profile/aaronpk.com/post/3kwba76jrd42u"
],
"content": {
"text": "I've been using AI to extend my 100 Days of Music sketches into full length songs and it's been super fun! I upload the song I wrote and tell it to extend it, give it some guidance, then piece it back together in Logic Pro. I've finished 25 songs so far!"
},
"author": {
"type": "card",
"name": "Aaron Parecki",
"url": "https://aaronparecki.com/",
"photo": "https://aperture-media.p3k.io/aaronparecki.com/41061f9de825966faa22e9c42830e1d4a614a321213b4575b9488aa93f89817a.jpg"
},
"post-type": "note",
"_id": "41528091",
"_source": "16"
}
{
"type": "entry",
"published": "2024-07-01T16:39:43-07:00",
"url": "https://beesbuzz.biz/blog/6728-Went-back-to-the-ER",
"name": "Went back to the ER",
"content": {
"text": "Last night I started feeling significant pain whenever I inhaled too deeply, telling me there was either pleurisy or another embolism happening. I gave it several hours to try to resolve on its own, and it just got worse and worse, so this morning, I headed to the ER.\n\nAnd there I waited, and waited, and waited, and then after around four hours of nothing happening while just sitting in the waiting room in agony, the pain had resolved itself, and I could breathe normally again.\n\nSo I asked about being discharged early, and was told to wait, and wait, and wait, and it was another hour or so before I was able to leave.\n\nAnyway I\u2019m back home now, and hopefully this is the last of the COVID drama in my life for a little while.",
"html": "<p>Last night I started feeling significant pain whenever I inhaled too deeply, telling me there was either <a href=\"https://en.wikipedia.org/wiki/Pleurisy\">pleurisy</a> or another embolism happening. I gave it several hours to try to resolve on its own, and it just got worse and worse, so this morning, I headed to the ER.</p><p>And there I waited, and waited, and waited, and then after around four hours of nothing happening while just sitting in the waiting room in agony, the pain had resolved itself, and I could breathe normally again.</p><p>So I asked about being discharged early, and was told to wait, and wait, and wait, and it was another hour or so before I was able to leave.</p><p>Anyway I\u2019m back home now, and hopefully this is the last of the COVID drama in my life for a little while.</p>"
},
"author": {
"type": "card",
"name": "fluffy",
"url": "https://beesbuzz.biz/",
"photo": "https://beesbuzz.biz/static/headshot.jpg"
},
"post-type": "article",
"_id": "41527499",
"_source": "2778"
}
{
"type": "entry",
"published": "2024-06-30T19:16:18-07:00",
"url": "https://beesbuzz.biz/blog/13792-Im-so-tired-of-being-sick",
"name": "I\u2019m so tired of being sick",
"content": {
"text": "I hate how every time I get sick, be it with COVID or anything else, I spend so much time feeling worthless and like I\u2019m in limbo and like everything is passing me by.\n\nI\u2019ve got stuff to do but I\u2019m feeling way too tired to do any of it and I\u2019m full of depression right now. Post-COVID everything just feels so pointless, and I also feel so alone.\n\nI\u2019m supposed to be getting my set together for Song Fight! Live, but I\u2019m just full of negative self-talk and a feeling that nobody gives a shit about me or my music. I hustle so much trying to find anyone who wants to work with me on anything and the best I can find is endless unpaid work for exposure which never amounts to anything.\n\nI forced myself to take a walk today and it was nice to get out of the house but I still just felt so alone with my thoughts, and those thoughts weren\u2019t great to listen to.\n\nSometimes it sucks to live alone.",
"html": "<p>I hate how every time I get sick, be it with COVID or anything else, I spend so much time feeling worthless and like I\u2019m in limbo and like everything is passing me by.</p><p>I\u2019ve got stuff to do but I\u2019m feeling way too tired to do any of it and I\u2019m full of depression right now. Post-COVID everything just feels so pointless, and I also feel so alone.</p><p>I\u2019m supposed to be getting my set together for Song Fight! Live, but I\u2019m just full of negative self-talk and a feeling that nobody gives a shit about me or my music. I hustle so much trying to find anyone who wants to work with me on anything and the best I can find is endless unpaid work for exposure which never amounts to anything.</p><p>I forced myself to take a walk today and it was nice to get out of the house but I still just felt so alone with my thoughts, and those thoughts weren\u2019t great to listen to.</p><p>Sometimes it sucks to live alone.</p>"
},
"author": {
"type": "card",
"name": "fluffy",
"url": "https://beesbuzz.biz/",
"photo": "https://beesbuzz.biz/static/headshot.jpg"
},
"post-type": "article",
"_id": "41518898",
"_source": "2778"
}