Showing posts with label e. Show all posts
Showing posts with label e. Show all posts

Sunday, 30 July 2017

Cover Reveal Backstroke Olympic Passions Series 3 by E E Grey

Cover Reveal Backstroke Olympic Passions Series 3 by E E Grey


bs

We are thrilled to bring you the cover for Backstroke, the third book in the Olympic Passions Series by E.E. Grey.

pink-divider-1_thumb2_thumb1_thumb_t

Read more �
{ Read More }


Sunday, 4 June 2017

Crítico Nostalgia Episódio 57 e novidade!!!

Crítico Nostalgia Episódio 57 e novidade!!!


Boa tarde, pessoal! Ontem mesmo tinha gente perguntando ali no chat quando ia ter Cr�tico e olha ele aqui! Este � o epis�dio 57 de verdade, j� que o anterior, como voc�s sabem, foi s� uma trollada que o Doug deu nos f�s. O filme da vez � o cl�ssico cult Moonwalker, do inesquec�vel (seja por qual motivo for) Michael Jackson. Bom divertimento e continuem lendo depois do epis�dio, ainda tem mais coisa nesse post!

Cr�tico Nostalgia Ep.057:
Moonwalker
Download: Aqui

No epis�dio anterior, Chester A. Bum tomou o lugar do Cr�tico para analisar o filme A Hist�ria Sem Fim. Bum j� tinha aparecido esporadicamente em outros epis�dios tamb�m, mas a sua pr�pria s�rie, Bum Reviews, ainda n�o estava dispon�vel no blog. At� agora, claro. A partir de agora, tentarei trazer sempre com cada epis�dio do Cr�tico pelo menos um epis�dio do Bum (ou do Cara de �culos, que t� encalhad�o h� s�culos). S�o v�deos curtos, de 3 ou 4 minutos, ent�o � jogo r�pido. O Bum � um morador de rua que, sabe-se l� como, sempre consegue entrar nos cinemas e depois faz suas pr�prias resenhas. Ao contr�rio do Cr�tico, por�m, ele fala de filmes novos (em termos, n�, j� que os v�deos s�o de 2008). Os v�deos tamb�m se resumem essencialmente ao Chester falando, j� que, por serem filmes em cartaz, ele n�o tinha como conseguir imagens (e se conseguisse, daria um problem�o). Quem assiste ao Cr�tico desde o come�o vai notar uma certa semelhan�a no estilo do Bum com o do Cr�tico no primeiro epis�dio, em que ele estava bem mais exc�ntrico. Na verdade, Doug apenas retrabalhou o conceito e criou um personagem. Mas chega de conversa! Have at you! Hoje, como � dia de estreia, tem tr�s epis�dios de uma vez! Aproveitem!

Bum Reviews Ep.01:
Speed Racer
Download: Aqui

Bum Reviews Ep.02:
As Cr�nicas de N�rnia: Pr�ncipe Caspian
Download: Aqui

Bum Reviews Ep.03:
Indiana Jones e o Reino da Caveira de Cristal
Download: Aqui

Assim como no caso do Cr�tico, como os epis�dios do Bum s�o mais antigos, a qualidade original n�o � l� essas coisas. Por isso, s� uma op��o de download. Quando chegarmos aos epis�dios que foram feitos em HD, passaremos a disponibilizar outras op��es, como sempre.
{ Read More }


Tuesday, 16 May 2017

Creating an Evolution e mail from the command line and python

Creating an Evolution e mail from the command line and python


Evolution is intended as a GUI e-mail client, so the scripting options are limited. Also, it looks like you cannot autosend e-mail from a script, theres so script command equivalent to the send button.


But thats a good thing; I can autosend from nail when I want to. So a script will compose the e-mail, which will sit on my desktop until I review it and click to send it. Nice.


shell command source

This command creates a window with To:, From:, Subject:, and Body filled in. From: is already known by Evolution, the rest is parsed from the following command:

evolution mailto:person@example.com?subject=Test&body=Some%20crazy%20story%20stuff%0D%0Acolumn1%09%09column2%09%09column3%0D%0A%0D%0ASincerely,%0D%0A%0D%0AMe


Another (easier) way:
evolution mailto:person@example.com?cc="second_person@example.com"&subject="This Is The Subject"&body="This is the body of the message"&attach=Desktop/test_file.xml
  • evolution mailto:person@example.com - Launches Evolutions e-mail composer and To: line
  • ?cc="Person@example.com" - CC: Line
  • &subject="Subject" or ?subject="Subject" - Subject line
  • &body="Body" - Body of the e-mail is everything after this line
  • &attach=/path/file - Files to attach
  • %20 - Space
  • %0D%0A - CR/LF (new line)
  • %09 - Tab

python command

Python 2.x has its own smtp module for creating e-mail, its far more useful in most circumstances. But in this case, we want the composed evolution window.

import os
body_string = This is the body of the e-mail message
body_string = body_string.replace( ,%20)
os.popen(evolution mailto:person@example.com?subject=Test&body= + body_string)
  • import os - Use pythons os module
  • body_string = This is the body of the e-mail message - The body in normal text
  • body_string = body_string.replace( ,%20) - Encode the spaces (evolution will decode them). Tabs, newlines, and other reserved strings need to be encoded.
  • os.popen(evolution mailto:person@example.com?subject=Test&body= + body_string) - The os.popen(cmd) executes shell cmd. Note that cmd is just a python string, and you can use all the string tools on it, like adding body_string.
>>> import os
>>> to = person@example.com
>>> cc = "second_person@example.com"
>>> subject = "This is the subject"
>>> body = "This is the body"
>>> attachment = Desktop/rss_test.xml
>>> os.popen(evolution mailto:+to+?cc=+cc+&subject=+subject+&body=+body+&attachment=+attachment)
{ Read More }