Ana Tudor
@anatudor
Same me, another platform. Authentic Transylvanian vampire. I code stuff. Usually involves some Maths. I enjoy music mandatory religion classes warned me about. And other things that may kill me. Interaction usually restricted. anatudor.codeberg.page
I also have custom blocking rules to hide stuff. Like recommendations and things like that. This is what YouTube looks like for me.
Psst, don't rotate just the last one, it breaks things - see screenshot below.
Also made a couple more tweaks so the popover doesn't open outside the viewport (on the left side of the left edge) in the vertical RtL case. The magic: ``` nav { display: grid; align-content: start; block-size: 100% } ```
The changes in the CSS & SVG fork codepen.io/thebabydino/... That illustration was from an old, old article css-tricks.com/tight-fittin... The arrow orientation I would solve it with a rotation variable based on lang attribute value.
Well... this keeps repeating over and over... trying to connect, disconnected... over and over again...
Also, a different strategy for the button triangle is probably needed - it doesn't point in the right direction in the case of vertical text, which is always going to be a problem with .svg/ images in general (and emojis). If still using a SVG anyway, use one that puts the triangle in the middle.
I don't have a smartphone. Managed to get a cable connection, doesn't work. 👇
*I can* read it, but damn, somebody did not think this through... FYI, I have a setting forcing dark mode on all websites in case this looks different for you. A developer worth the pay *should* have tested for that. cc @zen-browser.app
Help? How can I create a bootable USB? I downloaded balenaEtcher and tried to do the same as 1.5 years ago, except now nothing happens when I click Run. gist.github.com/thebabydino/... This used to work before.
Compared to the mountains of crap I've seen, this is not bad, but you can get choppy results if you transition `padding`/ `font-size`. Yes, transitioning those is easier/ more straightforward, but modern CSS lets us to get the desired scale factor out of relative dimensions (not fixed pixel ones).
This "tutorial" is 2025-dated... Screaming... you cannot possibly be this intellectually lazy. Most modern feature in that CSS: unprefixed box-sizing. Over a decade of cross-browser support. 2nd most modern: border-radius. Over 15 years of cross-browser support. px everywhere = fuck responsivity
Asked here because search brought some serious atrocities my way... Whatever you do, don't do this... It can produce choppy animations. Fixed pixel heights = fuck responsivity. If all is !important, nothing is !important. And for the love of satan, stop putting prefixed versions last!
Thunder & lightning have arrived, though no rain yet. It did feel... stuffy? in the city, especially on the side of the roads in the sun, so you could tell it was bound to happen. The seagulls are so noisy. The cats don't seem to give a crap, just lying on the warm roof... happiness is a warm butt!
Is anyone else hitting this @codepen.io bug? There is no collab, it's a private demo I haven't shared with anyone, and I certainly haven't touched it on another device. There is no option other than Refresh, but if I click that, I lose all my unsaved changes.
Strange what the 🧠 chooses to remember. Going down the stairs at Saturn with the album the day it came out. The warning seen later that day at the Nandu enclosure at the zoo. About them being thieves, stealing stuff like phones/ cameras. The 🦁 in Munich when seeing the tour. The choc I got then.
I would just like to point out that "hotter than Hell" is a pretty normal occurrence for most of the world...
Save for the trip to see Kreator in April, this year has been a disaster. And now seeing Immolation in Vienna is the one thing I'm hanging on to keep me afloat this summer.
Stupid Hugo question: is there an equivalent of the JS indexOf? Got a structure like 👇 and given a bucket/ item link, I want to get that bucket/ item, as well as the index so I can link to prev/ next bucket/ item. Can do {{ $bmatch := where $buckets "link" "bucket-2-link" }} but the index? Thx!
Came across another one. It's maddening when they ask for comments or to click some links, all these engagement tricks just so they make the code available... My demo is publicly available on CodePen.
Individual transform functions are well supported now, `transform: rotate(180deg)` can be just `rotate: .5turn` for example. You can have real punch through transparency with a simple SVG filter - that is, you don't depend on blending, can use any colours you wish. stackoverflow.com/a/78548682/1...
I have a few more tricks to share 🤭 `inset: 0` instead of setting top, left, width, height bsky.app/profile/anat... transform-origin: center or transform-origin: 50% is unnecessary, both produce the default result (you also have transform-origin: 50 in one place which is just broken and ignored)
I use `clamp()` to make fonts scale with the viewport all the time and I've needed sideways text quite a few times - see bsky.app/profile/anat... You can see an example of it in this tabs demo codepen.io/thebabydino/... - the text scales with the viewport and the tabs are sideways.