I have several breathing problems with my nose and some inside bits. I always just thought breathing with your mouth was considerably easier, but people can’t do it because it’s not elegant.
Now I’m trying to get the surgery covered
I made this one to find binaries in NixOs and other systems
get_bin_path() {
paths=${2:-$PATH}
for dr in $(echo $paths | tr ':' '\n') ; do
if [ -f "$dr/$1" ] ; then
echo "$dr/$1"
return 0
fi
done
return 1
}
Then I made this one to, if I have a shell o opened inside neovim it will tell the neovim process running the shell to open a file on it, instead of starting a new process
_nvim_con() {
abs_path=$(readlink --canonicalize "$@" | sed s'| |\\ |'g)
$(get_bin_path nvim) --server $NVIM --remote-send "<ESC>:edit $abs_path<CR>"
exit
}
# start host and open file
_nvim_srv() {
$(get_bin_path nvim) --listen $HOME/.cache/nvim/$$-server.pipe $@
}
if [ -n "$NVIM" ] ; then
export EDITOR="_nvim_con"
else
export EDITOR="_nvim_srv"
fi
Lastly this bit:
which if it detects a file and a line number split by a :
it will open the file and jump to the line
_open() {
path_parts=$(readlink --canonicalize "$@" | sed s'| |\\ |'g | sed 's/:/\t/' )
file=$(echo "$path_parts" | awk ' { print $1 }' )
line=$(echo "$path_parts" | awk ' { print $2 }' )
if [ -n "$line" ] ; then
# has line number
if [ -n "$NVIM" ] ; then
$(get_bin_path nvim) --server $NVIM --remote-send "<ESC>:edit $file<CR>:+$line<CR>"
exit
else
$(get_bin_path nvim) --listen $HOME/.cache/nvim/$$-server.pipe $file "+:$line"
fi
else
$EDITOR $file
fi
}
alias nvim="_open"
I agree that forcing return to office is either stupid or harmful. But I do like the people I work with, and not seeing them anymore would be saddening
The solution is obvious though, simply allow choice
o, a, os, as for “the”
um, uma, uns, umas for “a”
both lists mean: singular masculine, singular feminine, plural masculine, plural feminine.
and if the gender is unknown or mixed you use the masculine
A very tiny armchair, my brother is a two year old
my dog on my brother’s armchair
that makes sense
but in this case, the bank, or whatever good site, would probably not even allow non-TLS connections
and if the mesh necessitates TLS only on an exit node*. Then yeah, that’s a stupid and flawed network. And it also wouldn’t be transparent (in the sense of using just like a normal ISP)
*I’m not sure how it connects to the rest of the internet, but assuming there are exit nodes that connect to other networks
Why would you not use TLS to connect to sites on a mesh network?
There’s a list of GUI editors here.
But I don’t know which one exactly they were talking about
The “dirt” of killing that CEO is incredibly clean
like: Closed the gate after the wolf got in?
There are “AI mazes” that do that.
I remember reading and article about this but haven’t found it yet
Removed by mod
He was short, bald, and a principaled dork.
Flashback of him getting stabed in the heart during a bar fight while in the academy
Ubuntu is based on Debian, so Pop_OS! still uses .deb
About IPs or URLs?
IPv6 is quite complex, but not that complex
Thanks, I’ll look into it :)