Eating a small square of dark chocolate (70% or higher cocoa percentage) three to four times a week may be 25 times as effective as taking statins for preventing heart disease
Statins are a class of drugs often prescribed by doctors to help lower cholesterol levels in the blood. By lowering the levels, they help prevent heart attacks and stroke.
Friday, September 21, 2018
Tuesday, September 18, 2018
O mundo de patas ao ar - a sua posição natural
Anormalidade total.
https://www.publico.pt/2018/09/18/economia/noticia/centrais-solares-vao-ter-de-comprar-direito-a-injectar-na-rede-1844327
_____
Não há limites - absolutamente nenhuns - para o que se pode convencer "a carneirada" a aceitar fazer.
Como é muito difícil de acreditar, vou repetir:
Não há limites - absolutamente nenhuns - para o que se pode convencer "a carneirada" a aceitar fazer.
http://ecportuguesaeeuropeia.blogspot.com/2012/04/o-problema-energetico-electrico.html
_____
"pagar apoios"
Insanidade.
https://www.publico.pt/2018/09/18/economia/noticia/centrais-solares-vao-ter-de-comprar-direito-a-injectar-na-rede-1844327
_____
Não há limites - absolutamente nenhuns - para o que se pode convencer "a carneirada" a aceitar fazer.
Como é muito difícil de acreditar, vou repetir:
Não há limites - absolutamente nenhuns - para o que se pode convencer "a carneirada" a aceitar fazer.
http://ecportuguesaeeuropeia.blogspot.com/2012/04/o-problema-energetico-electrico.html
_____
"pagar apoios"
Insanidade.
Sunday, September 16, 2018
Porque não quer
Sabem a d'"O sapo não lava o pé", não sabem? (tem mais de 300 milhões de visualizações). É
muito melhor do que a Cinderela.
Atentem também a isto:
https://www.amazon.com/American-Weigh-Scales-AWS-600-BLK-Nutrition/dp/B000O37TDO/ref=pd_lpo_vtph_79_lp_img_2?_encoding=UTF8&psc=1&refRID=FATM9XD9GGNP00YCQDGP
e concluam que isto é uma daquelas palhaçadas muito tristes:
(é do livro "Ceitis")
muito melhor do que a Cinderela.
Atentem também a isto:
https://www.amazon.com/American-Weigh-Scales-AWS-600-BLK-Nutrition/dp/B000O37TDO/ref=pd_lpo_vtph_79_lp_img_2?_encoding=UTF8&psc=1&refRID=FATM9XD9GGNP00YCQDGP
e concluam que isto é uma daquelas palhaçadas muito tristes:
(é do livro "Ceitis")
Saturday, September 15, 2018
Ó Lua que vais tão alta
A Lua está em lua cheia.
Sabiam que é impossível encontrar um texto sobre as fases da Lua com ortografia coerente ?
As fases: lua cheia e lua nova, deviam ser escritas Lua cheia e Lua nova.
https://ciberduvidas.iscte-iul.pt/consultorio/perguntas/minuscula-inicial-nas-designacoes-das-fases-da-lua/29127
Sabiam que é impossível encontrar um texto sobre as fases da Lua com ortografia coerente ?
As fases: lua cheia e lua nova, deviam ser escritas Lua cheia e Lua nova.
https://ciberduvidas.iscte-iul.pt/consultorio/perguntas/minuscula-inicial-nas-designacoes-das-fases-da-lua/29127
Friday, September 14, 2018
Sneaking around
Kyle Stalder
"Not as bright as I thought but still a very good flashlight.
Good for searching for Mexicans sneaking around."
__
In a review of a lantern.
____________________
Onde está a minha lista de homógrafas?
O mundo está cheio de coisas idiotas
O teclado Pt dos computadores – já tiveram bom vagar para pensarem no assunto – tem dois hífens - (é igual ao sinal "menos" -) e não tem travessão.
– Não tem travessão, dizes?!
– Incrível, não é?
—Isso aí também não é "o verdadeiro" travessão. Este (alt+0151) é que é! Podeis conferir
https://www.gutenberg.org/files/42942/42942-h/42942-h.htm
– Mas não sei porquê este (alt+0150) com um espaço entre o texto fica melhor! O tipográfico, chamemos-lhe assim, é demasiado comprido e não tem noção de proxémia.
– Não tem travessão, dizes?!
– Incrível, não é?
—Isso aí também não é "o verdadeiro" travessão. Este (alt+0151) é que é! Podeis conferir
https://www.gutenberg.org/files/42942/42942-h/42942-h.htm
– Mas não sei porquê este (alt+0150) com um espaço entre o texto fica melhor! O tipográfico, chamemos-lhe assim, é demasiado comprido e não tem noção de proxémia.
Thursday, September 13, 2018
Recamán Sequence: 0,1,3,6,2,7,13,20,12,21,11,22,10,23,9,24,8,25,43.....
# Python 3
# The Spooky Sequence (Recamán's Sequence)
# A005132
#by GPC - 2018
'''
definition od the sequence:
a(0) = 0;
for n > 0,
a(n) = a(n-1) - n
if positive and not already in the sequence,
otherwise a(n) = a(n-1) + n.
'''
try:
N = int(input("How many terms should I generate?"))
except ValueError:
N = 100
a = [0]
for n in range (1, N+1):
an = a[(n-1)] - n
if an > 0 and an not in a:
a.append (an)
else:
a.append(a[(n-1)] + n)
print()
print ("Here are the first", N, "terms of the Recamán's Sequence:")
print()
for i in range(int(len(a))):
print (i,":",a[i])
print("{:#^42}".format("fini"))
print("{:_^22}".format("(c) 2018 Gil Costa"))
import winsound
winsound.Beep(470,130)
winsound.Beep(1000,250)
# The Spooky Sequence (Recamán's Sequence)
# A005132
#by GPC - 2018
'''
definition od the sequence:
a(0) = 0;
for n > 0,
a(n) = a(n-1) - n
if positive and not already in the sequence,
otherwise a(n) = a(n-1) + n.
'''
try:
N = int(input("How many terms should I generate?"))
except ValueError:
N = 100
a = [0]
for n in range (1, N+1):
an = a[(n-1)] - n
if an > 0 and an not in a:
a.append (an)
else:
a.append(a[(n-1)] + n)
print()
print ("Here are the first", N, "terms of the Recamán's Sequence:")
print()
for i in range(int(len(a))):
print (i,":",a[i])
print("{:#^42}".format("fini"))
print("{:_^22}".format("(c) 2018 Gil Costa"))
import winsound
winsound.Beep(470,130)
winsound.Beep(1000,250)
Tuesday, September 11, 2018
Antero
".....atormentado por uma doença que o deixa debilitado no corpo e na alma. Isola-se em Vila do Conde.
Saturday, September 8, 2018
Monday, September 3, 2018
Life
I don't have another get-up-and-go Ieft in me. Do you understand that? I can't run anymore. I've hit a brick waII here.
This boy's life (1993)
Subscribe to:
Posts (Atom)