create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
# Read email in inbox, look for any URLs and update them to wallabag, delete email if URLs found in it. | |
# Built from various internet sources. Final code donated under GPL v3 by Github user aptgetupgrade | |
# Tested using python 2. Could be run as part of a crontab, e.g. every 5 mins. | |
# | |
import sys | |
import imaplib | |
import getpass | |
import email | |
import email.header | |
import datetime |
#!/bin/bash | |
settings() { | |
SCRIPT_DIR="$(dirname "$0")" | |
} | |
main() { | |
request $@ | |
settings | |
run |
->Setting processData to false lets you prevent jQuery from automatically transforming the data into a query string. | |
And Setting the contentType to false is imperative. | |
Refference link: https://developer.mozilla.org/en-US/docs/Web/API/FormData/Using_FormData_Objects | |
//01// File Upload using FormData Object in Javascript | |
Syntax: | |
var formData = new FormData(); // Currently empty | |
formData.append(name, value); // custom text field where key/value pair | |
formData.append(name, value, filename); // Custom file uploading |