@prologic@twtxt.net I did, and it did. I am more than rubbish at CSS, so there!
(#rk3npuq) Can you confirm the fix temporarily in browser before I make the CSS change? I’m rubbish at CSS 🤣
Can you confirm the fix temporarily in browser before I make the CSS change? I’m rubbish at CSS 🤣 ⌘ Read more
**(#rk3npuq) Ahhh! It’s all Soren’s fault 🤣
commit ea9eaaf3d3977701dcb84b927c77c4f921bdbf43
Author: sorenpeter <sorenpeter@noreply@mills.i ...**
Ahhh! It’s all Soren’s fault 🤣
commit ea9eaaf3d3977701dcb84b927c77c4f921bdbf43
Author: sorenpeter
Date: Sat Sep 24 23:34:07 2022 +0000
Replacing Pico.css with Simple.css (<a href="https://we.loveprivacy.club/search?q=%23990">#990</a>)
Replacing pico.css with simple.css along with some small UI changes
⌘ [Read more](https://twtxt.net/twt/j22xw4q)
@prologic@twtxt.net is that a rhetorical question? :-D
@bender@twtxt.net Didn’t we fix this ages ago?! 🤦♂️
(#rk3npuq) @bender@bender Didn’t we fix this ages ago?! 🤦♂️
@bender @twtxt.net Didn’t we fix this ages ago?! 🤦♂️ ⌘ Read more
@bender@twtxt.net Fair enough 👌
(#5ww6qaq) @bender@bender Fair enough 👌
@bender @twtxt.net Fair enough 👌 ⌘ Read more
@prologic@twtxt.net there is a space on the first line on that codeblock. I think this one is the culprit:
pre>code {
padding:0 .25rem;
}
@prologic@twtxt.net I can live without highlights. Actually, I prefer not to have them. A good search is all I want.
@bender@twtxt.net It does right 🤣 (no highlights though, will have to figure out how I refactor the display code to support that)
(#5ww6qaq) @bender@bender It does right 🤣 (no highlights though, will have to figure out how I refactor the display code to support that …
@bender @twtxt.net It does right 🤣 ( no highlights though, will have to figure out how I refactor the display code to support that) ⌘ Read more
**Search syntax appears to be:
hello
"hello world"
hello AND world
hello OR world
hello NOT world
"this is a phrase"
```**
Search syntax appears to be:
hello
“hello world”
hello AND world
hello OR world
hello NOT world
“this is a phrase”
”` ⌘ Read more
@prologic@twtxt.net pretty neat, search actually works now!
@lyse@lyse.isobeef.org I’m open to other suggestions 🤣 But hopefully both adding the additional prompt, not allowing it to enter shell history and removing from my shell history prevents me from doing such silly things in haste by pressing ^R and using fuzzy search which if you type fast you sometimes get wrong 😑
(#zzyjqvq) @lyse@lyse I’m open to other suggestions 🤣 But hopefully both adding the additional prompt, not allowing it to enter …
@lyse @lyse.isobeef.org I’m open to other suggestions 🤣 But hopefully both adding the additional prompt, not allowing it to enter shell history and removing from my shell history prevents me from doing such silly things in haste by pressing ^R and using fuzzy search which if you type fast you sometimes get wron … ⌘ Read more
(#dptuzoa) I had a day like that just today, in fact I’ve had one of those weeks, actually no wait, I’ve had one of those months! 🤯
I had a day like that just today, in fact I’ve had one of those weeks, actually no wait, I’ve had one of those months! 🤯 ⌘ Read more
FYI: I’ve re-opened up search for anonymous use. So things like this now work without having to have an account on this pod or login. 👌 #search #twtxt
FYI: I’ve re-opened up search for anonymous use. So things like this now work without having to have an account on this pod or login. 👌 #sear …
FYI: I’ve re-opened up search for anonymous use. So things like this now work without having to have an account on this pod or login. 👌 #search #twtxt ⌘ Read more
@bender@twtxt.net Gah! Stay strong. 😩
@movq@www.uninformativ.de having a similar one here, and it is only 11:41. Ugh!
(#nhf2wda) Fixed.
Fixed. ⌘ Read more
(#nhf2wda) Confirmed. Fix inbound.
Confirmed. Fix inbound. ⌘ Read more
Is it just me or is there a display bug for “Yarn”(s) that are duplicating the root twt? 🤔
Is it just me or is there a display bug for “Yarn”(s) that are duplicating the root twt? 🤔 ⌘ Read more
(#zzyjqvq) This is an example of what I believe every SRE should master and whatever Post Incident Review (PIR) should focus on. Where did t …
This is an example of what I believe every SRE should master and whatever Post Incident Review (PIR) should focus on. Where did the system fail. What are the missing or incomplete Safety Controls. ⌘ Read more
(#zzyjqvq) Then I cleaned up my shell history of all of the invocations I ever made of dkv rm ... to make sure I never ever have this so easil …
Then I cleaned up my shell history of all of the invocations I ever made of dkv rm ... to make sure I never ever have this so easily accessible in my shell history ( ^R):
”`
$ awk ‘
/^#/ { ts = $0; next }
/^dkv rm/ { next }
{ if (ts) print ts; ts=“”; print }
’ ~/.bash_history > ~/.bash_history.tmp && mv ~/.bash_history.tmp ~/.bash_history && history -r
”` ⌘ Read more
**(#zzyjqvq) So I re-write this shell alias that I used all the time alias dkv="docker rm" to be a much safer shell function:
dkv() {
if ...**
So I re-write this shell alias that I used all the time `alias dkv="docker rm"` to be a much safer shell function:
dkv() {
if [[ “$1” == “rm” && -n “$2” ]]; then
read -r -p "Are you sure you want to delete volume '$2'? [Y/n] " confirm
confirm=${confirm:-Y}
if [[ "$confirm" =~ ^[Yy]$ ]]; then
# Disable history
set +o history
# Delete the volume
dock ... ⌘ [Read more](https://twtxt.net/twt/ml3toqq)
This weekend (as some of you may now) I accidently nuke this Pod’s entire data volume 🤦♂️ What a disastrous incident 🤣 I decided …
This weekend ( as some of you may now) I accidently nuke this Pod’s entire data volume 🤦♂️ What a disastrous incident 🤣 I decided instead of trying to restore from a 4-month old backup ( we’ll get into why I hadn’t been taking backups consistently later), that we’d start a fresh! 😅 Spring clean! 🧼 – Anyway… One of the things I realised was I was missing a very critical Safety Controls in my own … ⌘ Read more
ProDesk 600 G4 Mini with a Core i5-8500T, 32Go of DDR4 RAM and 256Go SSD storage. A cheaper alternative to an 8GB RPi5 + Argon one v3 m.2 RPi case kit (NVME not included) 🤷. It should be here by Friday 🤞
@prologic@twtxt.net @kat@yarn.girlonthemoon.xyz The worst part is Waiting for the confirmation call and then for the package to arrive 🥲
@bender@twtxt.net Please remind me to fix this after I’m done with this cachet branch and it’s merged 🤞
(#idk64aa) @bender@bender Please remind me to fix this after I’m done with this cachet branch and it’s merged 🤞
@bender @twtxt.net Please remind me to fix this after I’m done with this cachet branch and it’s merged 🤞 ⌘ Read more
(#idk64aa) Okay that’s a bug 😆
Okay that’s a bug 😆 ⌘ Read more
Does mentioning @prologic@twtxt.netdoesnm.p.psf.lt not work? 🧐
(#idk64aa) Does mentioning @prologic@prologic not work? 🧐
Does mentioning @prologic @twtxt.net doesnm.p.psf.lt not work? 🧐 ⌘ Read more
@prologic@twtxt.netdoesnm.p.psf.lt@doesnm.p.psf.lt 😂😂😂
@bender@twtxt.net I know! 😂 Thankfully I think I fixed most problematic bugs 🤞
(#irccp5a) @bender@bender I know! 😂 Thankfully I think I fixed most problematic bugs 🤞
@bender @twtxt.net I know! 😂 Thankfully I think I fixed most problematic bugs 🤞 ⌘ Read more
@movq@www.uninformativ.de Just keep them for a while.
(#bzshema) @movq@movq Just keep them for a while.
@movq @www.uninformativ.de Just keep them for a while. ⌘ Read more
@kat@yarn.girlonthemoon.xyz call her Gata. 😂
@prologic@twtxt.net yup yup. Much work to be done, so little time. 😩
@movq@www.uninformativ.de one less dead account! 😅
@bender@twtxt.net Whoohoo! 🥳
(#az35blq) @bender@bender Whoohoo! 🥳
@bender @twtxt.net Whoohoo! 🥳 ⌘ Read more
Hey, hey, I am back. I lost all my worthless twtxts, but at least I still have the blackjack and hookers!
@movq@www.uninformativ.de well, Bender told me to tell you he will refollow as soon as hos account is rebirth once more.
@prologic@twtxt.net I wonder what this will do to my followers list. I suspect there were a lot of dead accounts out there. 😅
@prologic@twtxt.net NOOOOOOOOOOOOOOOOO
@lyse@lyse.isobeef.org Very nice 😊
(#az565zq) @lyse@lyse Very nice 😊
@lyse @lyse.isobeef.org Very nice 😊 ⌘ Read more