# I am the Watcher. I am your guide through this vast new twtiverse.
#
# Usage:
# https://watcher.sour.is/api/plain/users View list of users and latest twt date.
# https://watcher.sour.is/api/plain/twt View all twts.
# https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri.
# https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject.
#
# Options:
# uri Filter to show a specific users twts.
# offset Start index for quey.
# limit Count of items to return (going back in time).
#
# twt range = 1 25
# self = https://watcher.sour.is/conv/ru3ln2q
Despite my earlier rant, today is a pretty lucky day. I've got a job as a tester, that'll start soon. Still a little nervous about it, but really looking forward to it!
@thecanine I start a new job in a few weeks myself 😅
Good luck to you in your new gig 🤞
@thecanine I start a new job in a few weeks myself 😅
Good luck to you in your new gig 🤞
@prologic Thanks and good luck with the new job to you as well!
@lyse Manual testing of internal systems and websites along with the bugs reported.
@lyse it's not so bad, it's fun to see everything explode when you squeeze the window! 😝
@lyse that's what happen to me too when I use any kind of CSS framework/library, that's why I only use vanilla CSS for everything I work on.
I just came to hate them deeply, Flex and Grids are just there to replace everything for me.
@justamoment Yeah, I don't understand CSS frameworks either. Soooo much garbage in there that I don't need in a million years. Just write all the rules from ground up. Only a few rules will do most of the time.
@lyse especially if you rely on native elements.
I think the main issue is that they call themselves framework so you think they can do everything for you but it's really wrong, CSS is too opinionated when you build complex structure you can't adapt them at all, the only solution is to use utility based classes.
I'll still go for vanilla CSS.
@justamoment Exactly! About 90% or maybe even more of my rules target just elements, not classes or IDs. I don't like my HTML being polluted with tons of useless classes and <div>
and <span>
hells, just to make up for some weird positioning and alignment problem. As always, simplicity is key.
@lyse I absolutely avoid selecting elements for the sake of scalability with only few exceptions, what I prefer is using a convention like suit css or, if I need to, the even better css-modules.
A couple of extra divs is no big deal, you just need to keep everything readable and encapsulated.
@justamoment No, that goes totally against my philosophy. But I don't build fancy web applications, mostly write documents. And a few simple applications, that don't need a shitload of different styling.
@lyse In my case most of what I built is an interactive app or something so it's useful too have a decoupled styling for it, I also heavily really on CSS variables and the like.
@justamoment So do you use the same stylesheet for several web applications then? Or do you have a common base stylesheet where everthing else builds upon?
@lyse all my project are entirely standalone.
If I want to share parts then those become encapsulated entities to be included is said projects.
The reason to build it scalable with only classes is to have a logic structure that can be read in both HTML and CSS to understand quickly how they work as a block, even though I use lot of classes I often have at most one or two of them per element.
The other reason is that it helps me find the right part to work on on older projects, just yesterday I had to extend a part for a client project and I did it by finding the needed classes like this:
.ProductList > .ProductItem > .ProductItem-price
(The arrows are how I looked for them in HTML)
Then I can append the new element to have a note on the price.
Another thing that helps me is that I have only one level deep selectors with only pseudo selectors and utility classes as exceptions.
@justamoment Ok, thanks for your insights. I would just try to build my rules based on the HTML structure if I had to tackle this. But luckily my stuff isn't so complicated to begin with. Phew. ;-)
@lyse complicated or not you can rely on classes as a way to semantically group parts, but it's up to you anyway.
As long as you make cool stuff nobody cares how you did it. 😜