TL; DR: IMAP outlook.office365.com:993 SSL/TLS; SMTP smtp.office365.com:587 STARTTLS.
Settings > Mail, Contacts, Calendar > Add Account
var http = require("http"), | |
url = require("url"), | |
path = require("path"), | |
fs = require("fs") | |
port = process.argv[2] || 4002; | |
http.createServer(function(request, response) { | |
var uri = url.parse(request.url).pathname |
var username = "github"; // Put username here | |
var repo = "ruby"; // Put repository name here | |
/* | |
That's it! Now use this URL format: | |
http://github.com/<username>/<repo>/releases#MyAwesomePackagedApp.zip | |
Where <username> and <repo> are exactly as defined in those variables, and MyAwesomePackagedApp.zip is whatever filename of the ZIP you uploaded in the "releases" page of your repository. | |
**DOES not work with source code downloads** |
process.stdin.setEncoding('utf8'); | |
var str = "File I/O is provided by simple wrappers around standard POSIX functions. To use this module do require('fs'). All the methods have asynchronous and synchronous forms."; | |
console.log("Hello! "); | |
console.log("Type this out and press return: "); | |
console.log("--------------------------"); | |
console.log(str); | |
console.log("--------------------------"); | |
process.stdout.write("Press enter to start: "); |
<!-- | |
Feel free to edit this document! | |
--> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> |
#!/bin/bash | |
# | |
# Very simple ping request spammer | |
# | |
# Usage: | |
# sudo ./pingspam.sh ipv6address datasize threads & | |
# | |
# eg: sudo ./pingspam.sh ::1 4096 40 & | |
# |
--- | |
title: random | |
--- | |
<script> | |
var posts = [{% for post in site.posts %}"{{ post.url }}", {% endfor %}]; | |
var id = Math.floor(Math.random() * posts.length); | |
window.location.href = posts[id]; | |
</script> |
all: | |
for f in `find * -type d -maxdepth 0 ! -regex .`; do\ | |
gcc -o $$f/main.o $$f/main.c;\ | |
done; |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>infocomm</title> | |
<style> | |
* { | |
padding: 0; | |
margin: 0; | |
} |
SHELL := /bin/zsh | |
DIRECTORY = "_posts" | |
EXT_ENC = ".aes.b64" | |
EXT_FILE = ".md" | |
ENCRYPTION = "aes-128-cbc" | |
all: usage | |
usage: |