Yes. I did maintenance at apartments for college students (which is probably a factor), and plunging their toilets was a regular occurrence. We kept a plunger on the golf cart for this reason, they often didn't own one.
One side note since you mentioned Drano: it made things more difficult for me because they'd use it on more than just clogged toilets: clogged sinks and bathtub drains, which are caused by hair. Using Drano when it's already backed up just dilutes the Drano, rendering it next to useless. I'd have to go fetch gloves and then rigorously clean the acid off my needlenose pliers after removing the hairball.
I used to use RealPage OneSite when I worked in facility maintenance. As recently as 2018, it was an old clunky webapp that only worked in Internet Explorer.
At the time, I was like, why has no one disrupted them yet? but I later realized building boring, complex software like this is hard, and convincing an org with hundreds of satellite offices to switch is even harder.
I like having my terminal attached to my editor, but I don't like it integrated with the editor. Some of the integration features are cool, like clicking to view a file in the editor straight from an error message, but I always get frustrated with the integrated terminal's small size, and it's not convenient to resize it. Or it can slow down the editor when a lot of output is happening (VS Code). Sometimes it's a third-party solution that isn't well maintained (Atom, Sublime Text).
Ideally, I'd love a way to glue sets of windows together and move them around as one piece, without being a tiling window manager.
Great looking tool! I have a UX nitpick about the pricing page, the loading indicator saying "fetching our best prices" gives me the impression that the prices change frequently, and that I should check back later.
I'm curious about this too, as I've only used credit unions and branchless banks. Credit union branches are plastered with loan and mortgage advertising, and the people who handle the loans are salespeople, but I've never been "ambushed" upon walking in.
The only time anything close has happened to me was years ago when I deposited a $40k check into savings. The teller went and got a manger who asked if I wanted to hear about investment options. I declined and that was it. Not an unreasonable question to ask somebody delisting a large sum of money.
What do you dislike about tab groups? Or is Chrome's implementation on mobile not good?
I think the current design is ugly. The way Edge handles them in the vertical tabs sidebar looks a lot better than the way other Chromium derivatives handle them in the tab strip, but still not the best. I like Vivaldi's implementation better, but the UI is relatively laggy. I miss old Opera.
I find them unpredictable. I don't know when something will open in a new group, I don't know how I can move a tab out of/into a group. I find it to be kind of a mess. And of course it was shoved at me without even asking whether I want it.
(Thanks in advance for the solution. I mostly use Firefox anyway)
I use Hugo for my blog and keep it NPM-free. I try to be careful with my dependencies (currently 3; 2 of which I maintain), which I manage using Hugo's modules feature and keep local copies using the `hugo mod vendor` command.
My posts are in Markdown files, and I write them using either my text editor or Typora, which is a little more WYSIWYG and makes adding images so much easier.
Hugo's archetypes feature is great: running `hugo new posts/title.md` quickly scaffolds a new post based on a template from a Markdown file, with frontmatter entered already, and then opens that Markdown file in Typora, ready to start writing (you can add your editor in Hugo's config). While it wouldn't be too difficult to make a script that does this, I loved having this out of the box.