Based on https://busylog.net/telnet-imap-commands-note/
- -k -- don't verify certificate (optional)
- -n -- use .netrc for username and password (optional)
- -X -- request to send to server
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" | |
"strconv" |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |
Based on https://busylog.net/telnet-imap-commands-note/
function postUpdatedxkcdIfNecessary() { | |
var properties = PropertiesService.getUserProperties(); | |
var latestComic = JSON.parse(UrlFetchApp.fetch("http://xkcd.com/info.0.json").getContentText()); | |
if (latestComic["num"] > properties.getProperty("lastComic")) { | |
var title = latestComic["title"]; | |
var imageURL = latestComic["img"]; | |
var altText = latestComic["alt"]; | |
var number = latestComic["num"]; |
2017-06-20
My notes from Alistair in the 'hexagone', a cross-over meetup event mixing:
With @TotherAlistair and @tpierrain.
#!/usr/bin/env python3 | |
""" | |
License: MIT License | |
Copyright (c) 2023 Miel Donkers | |
Very simple HTTP server in python for logging requests | |
Usage:: | |
./server.py [<port>] | |
""" | |
from http.server import BaseHTTPRequestHandler, HTTPServer |
function shouldStop(startTime) { | |
return new Date().getTime() - startTime.getTime() > 300000; // 5 minutes | |
} | |
function archive() { | |
var days = 7; // How old a message must be to be archived | |
var startTime = new Date(); | |
var date = new Date(); | |
date.setDate(date.getDate() - days); | |
var label = GmailApp.getUserLabelByName("[LABEL NAME]"); |
https://rfc3161.ai.moda | |
https://rfc3161.ai.moda/adobe | |
https://rfc3161.ai.moda/microsoft | |
https://rfc3161.ai.moda/apple | |
https://rfc3161.ai.moda/any | |
http://rfc3161.ai.moda | |
http://timestamp.digicert.com | |
http://timestamp.globalsign.com/tsa/r6advanced1 | |
http://rfc3161timestamp.globalsign.com/advanced | |
http://timestamp.sectigo.com |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.