This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# prints quote of the day | |
$temp = [System.IO.Path]::GetTempPath() | |
$today = Get-Date -UFormat "%Y-%m-%d" | |
$file = "$temp\qod-$today.json" | |
try { | |
if (Test-Path $file) { | |
$qod = (Get-Content -Path $file | ConvertFrom-Json) | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Bookmarklet to write my webponto e-mail message. | |
* Create a bookmark in your browser and paste this script in the 'location' field. | |
*/ | |
(function(){ | |
'use strict'; | |
const cfg = { | |
to: 'rodolfo.jesus', | |
cc: 'marco.scheid', |