The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

blog: add wicked cushions mini-review

Signed-off-by: Xe Iaso <me@xeiaso.net>

Xe Iaso 1abe0a9e e1cdfc6b

+63
+4
lume/src/_includes/base.njk
··· 77 77 <meta property="twitter:title" content="Xe Iaso"/> 78 78 {% endif %} 79 79 80 + {% if image %} 81 + <meta property="og:image" content="https://cdn.xeiaso.net/file/christine-static/{{ image }}.jpg"/> 82 + {% endif %} 83 + 80 84 {% if hero %} 81 85 <meta property="og:image" content="https://cdn.xeiaso.net/file/christine-static/hero/{{ hero.file }}.jpg"/> 82 86 <meta property="twitter:image" content="https://cdn.xeiaso.net/file/christine-static/hero/{{ hero.file }}.jpg"/>
+2
lume/src/_includes/blog.njk
··· 17 17 18 18 {{content | safe}} 19 19 20 + <hr/> 21 + 20 22 <button id="shareButton" type="button" class="rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50"> Share <svg 21 23 xmlns="http://www.w3.org/2000/svg" 22 24 class="icon icon-tabler icon-tabler-share-2 h-8 w-8"
+2
lume/src/_includes/talk.njk
··· 17 17 18 18 {{content | safe}} 19 19 20 + <hr/> 21 + 20 22 <button id="shareButton" type="button" class="rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50"> Share <svg 21 23 xmlns="http://www.w3.org/2000/svg" 22 24 class="icon icon-tabler icon-tabler-share-2 h-8 w-8"
+2
lume/src/_includes/vod.njk
··· 18 18 {{content | safe}} 19 19 </div> 20 20 21 + <hr/> 22 + 21 23 <button id="shareButton" type="button" class="rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50"> Share <svg 22 24 xmlns="http://www.w3.org/2000/svg" 23 25 class="icon icon-tabler icon-tabler-share-2 h-8 w-8"
+53
lume/src/blog/2024/wicked-cushions.mdx
··· 1 + --- 2 + title: Review of Wicked Cushions 3 + date: 2024-01-13 4 + image: blog/2024/wc-mini-review/wc_shot 5 + --- 6 + 7 + export const PercentageRing = ({ percentage }) => { 8 + let color = "green"; 9 + if (percentage < 50) { 10 + color = "red"; 11 + } 12 + if (percentage < 80) { 13 + color = "yellow"; 14 + } 15 + return ( 16 + <div className="relative inline-block mt-2 ml-20 md:ml-6"> 17 + <div 18 + className={`w-36 md:w-48 h-36 md:h-48 bg-bg-2 dark:bg-bgDark-2 border-8 border-${color}-light dark:border-${color}Dark-light rounded-full`} 19 + > 20 + <div 21 + className="absolute top-0 left-0 w-full h-full border-8 border-green-500 rounded-full" 22 + style={{ 23 + clip: `rect(0, 1em, 1em, ${(percentage / 100) * 2}em)`, 24 + }} 25 + ></div> 26 + </div> 27 + <div className="absolute inset-0 flex items-center justify-center"> 28 + <span className="text-2xl md:text-4xl font-bold"> 29 + {percentage / 10}/10 30 + </span> 31 + </div> 32 + </div> 33 + ); 34 + }; 35 + 36 + I wear headphones a lot. The thing that makes me frustrated with my headphones is how they feel on my head. I use DT 770 Pro headphones at my gaming desk and Audiotechnica ATH-M40x headphones at my work desk, and the cushions on the ATH-M40x's kinda suck over longer periods of time. 37 + 38 + This company called [Wicked Cushions](https://wickedcushions.com/) sponsored [Linus Tech Tips](https://www.youtube.com/@LinusTechTips)' coverage of CES 2024 and I saw that it was like $25 on Amazon so I used it to get free shipping for some sponges and a headphone extension cable for my husband. I figured there was nothing to lose by going for it. 39 + 40 + <XeblogPicture 41 + path="blog/2024/wc-mini-review/wc_shot" 42 + alt="A picture of black headphones with pink multicolored ear cushions. The cushions are about 1.5 cm thick." 43 + /> 44 + 45 + What can I say? They're cushions. They're squishy and feel nice on my head. 46 + 47 + Installation was a little finnicky (I'm pretty sure the cushions on the ATH-M40x headphones weren't really designed to be easily user-replaceable for good reason), but once I shimmied it around a few times everything fell into place. 48 + 49 + I had very low expectations going into them, but overall I think they are a solid upgrade for solid headphones. I think it also increased the sound deadening a bit, but I don't really have any easy way to test that without putting the old cushions on. That's a bit more effort than I want to give right now. 50 + 51 + I'll write a followup article in a few months if I have any other opinions about these things. I seriously doubt I will, but I might. It's headphone cushions, it's pretty hard to have opinions about them because they're good enough. 52 + 53 + <PercentageRing percentage={80} />