6697
as port, make sure it is using TLS to connect.
Ainda esta tarde estava uma candidata do RIR a sugerir que L é "demasiado à esquerda" e IL "demasiado à direita"... não sabe o que tem em casa?
#ptpol
Ainda esta tarde estava uma candidata do RIR a sugerir que L é "demasiado à esquerda" e IL "demasiado à direita"... não sabe o que tem em casa?
#ptpol
Passámos horas, dias a tentar perceber o que ele queria, pesquisámos pelo Luca Pónio e nada.
Até que pusemos a rolar uma das preferidas dele, o I Will Survive (versão dos Cake), e eis que chega o verso:
"I just walked in to find you here with that sad look upon your face"
Passámos horas, dias a tentar perceber o que ele queria, pesquisámos pelo Luca Pónio e nada.
Até que pusemos a rolar uma das preferidas dele, o I Will Survive (versão dos Cake), e eis que chega o verso:
"I just walked in to find you here with that sad look upon your face"
22:34 -!- Irssi: Unable to connect server irc.mills.io port 6667 [Connection refused]
Sadly I cannot connect :/
[](https://movq.de/v/fa024865a8/ace6b.png)
[](https://movq.de/v/c732f4178a/aro3.png)
[](https://movq.de/v/c732f4178a/trans3.png)
More and full res PNGs:
https://movq.de/v/c732f4178a/
https://movq.de/v/fa024865a8/
[](https://movq.de/v/fa024865a8/ace6b.png)
[](https://movq.de/v/c732f4178a/aro3.png)
[](https://movq.de/v/c732f4178a/trans3.png)
More and full res PNGs:
https://movq.de/v/c732f4178a/
https://movq.de/v/fa024865a8/
I’ll try to implement the new hashing stuff in jenny before the “deadline”. But I don’t think you’ll see any texudus development from me in the near future. ☹️
I’ll try to implement the new hashing stuff in jenny before the “deadline”. But I don’t think you’ll see any texudus development from me in the near future. ☹️
irc.mills.io
in #edgeguard 👌 I'm @james there 😅
Programa da IL sobre o ambiente: "uma rota política reformista, sustentada numa economia livre e aberta, capaz de produzir as soluções e transformações tecnológicas e infraestruturais de que precisamos." [isto é: solucionismo tecnológico]; "mais tecnologia e cada vez mais barata, para acelerar a transição energética rumo a um futuro não só mais eficiente, mas mais abundante." [idem]; "A Iniciativa Liberal está comprometida com os objetivos estabelecidos no Acordo de Paris, e considera fundamental que Portugal alcance uma economia de carbono líquido zero até 2050." [meta que segundo a IEA tem de ser atingida em 2035 para cumprir com o Acordo de Paris].
Ou seja, o que os miúdos vieram mesmo estragar e destruir foi a fantasia que a IL tenta espalhar de que eles estão do lado da solução e não do problema quanto à crise climática.
#criseclimática
Programa da IL sobre o ambiente: "uma rota política reformista, sustentada numa economia livre e aberta, capaz de produzir as soluções e transformações tecnológicas e infraestruturais de que precisamos." [isto é: solucionismo tecnológico]; "mais tecnologia e cada vez mais barata, para acelerar a transição energética rumo a um futuro não só mais eficiente, mas mais abundante." [idem]; "A Iniciativa Liberal está comprometida com os objetivos estabelecidos no Acordo de Paris, e considera fundamental que Portugal alcance uma economia de carbono líquido zero até 2050." [meta que segundo a IEA tem de ser atingida em 2035 para cumprir com o Acordo de Paris].
Ou seja, o que os miúdos vieram mesmo estragar e destruir foi a fantasia que a IL tenta espalhar de que eles estão do lado da solução e não do problema quanto à crise climática.
#criseclimática

To this:

Why.
Red for “activated” and dark gray for “deactivated” was easy to recognize.
Now we have light gray for “activated” and dark gray for “deactivated”. It’s clearly worse.
Why, why, why.

To this:

Why.
Red for “activated” and dark gray for “deactivated” was easy to recognize.
Now we have light gray for “activated” and dark gray for “deactivated”. It’s clearly worse.
Why, why, why.

The
echo
in line 13 is useless, you can simplify this to: newdir="$WD/$now"
If you reversed this line with the previous one, you could make use of the variable in the directory creation: mkdir "$newdir"
.In line 16, pull the directory change out of the loop upfront. The loop body doesn't modify the working directory, so no need to reset it with each cycle. In fact, you could even spare the
cd
altogether when you simply tell find
where to look: find "$basedir" -type f…
.I didn't try it, but if I read the manpage correctly, you should be able to simplify line 19 as well:
> -C Change to DIR before performing any operations. This option is order-sensitive, i.e. it affects all options that follow.
Hence, remove the
cd
and put the -C "$WD"
as the first argument to tar
. Again, I didn't try it. Proceed with caution.Finally, you don't need to specify the full path to
rm
in line 21. I bet, /bin
is in your PATH
. When you removed the previous cd
from my last suggestion, the relative path that follows won't work anymore. So, just use the absolute path that you already have in a variable: rm -rf "$newdir"
I hope you find this tiny review a wee bit useful. :-)
Regarding
find | grep foo
, I recommend find -name '*foo*'
, prologic. Also, I regularly use -type d
and -type f
to find directories or files.
find | grep
.
tar
is from the late 1970ies), while trying to retain backwards-compatibilty, I’m not surprised that the UI isn’t too great. 🤔 find
has quite a few pitfalls, that is very true. At work, we don’t even use it anymore in more complex scenarios but write Python scripts instead. find
can be fast and efficient, but fewer and fewer people lack the knowledge to use it … The same goes for Shell scripting in general, actually.
tar
is from the late 1970ies), while trying to retain backwards-compatibilty, I’m not surprised that the UI isn’t too great. 🤔 find
has quite a few pitfalls, that is very true. At work, we don’t even use it anymore in more complex scenarios but write Python scripts instead. find
can be fast and efficient, but fewer and fewer people lack the knowledge to use it … The same goes for Shell scripting in general, actually.
rm data/cache*
and it's all good, things will just get rebuilt 👌
that being said, the one i'd use if i did switch to one would be astro and that one is so flexible i could really do anything with it including keeping my pages as is mostly without doing the blog stuff. idk! something to consider
that being said, the one i'd use if i did switch to one would be astro and that one is so flexible i could really do anything with it including keeping my pages as is mostly without doing the blog stuff. idk! something to consider