Let's say you want to host domains first.com and second.com.
Create folders for their files:
| Summary of passwords by sperglord8008s, updated November 1. 2020. For login try "root", "default", "defaul" or "root" | |
| 00000000 | |
| 059AnkJ | |
| 4uvdzKqBkj.jg | |
| 7ujMko0admin | |
| 7ujMko0vizxv | |
| 123 | |
| 1111 | |
| 1234 |
http://embedded-lab.com/blog/stm32-gpio-ports-insights/
http://hertaville.com/stm32f0-gpio-tutorial-part-1.html
The libmaple libraries, on which STM32duino is based, provides access to registers by the syntax:
GPIOA->regs->REG| ############################################################################ | |
| # # | |
| # ------- Useful Docker Aliases -------- # | |
| # # | |
| # # Installation : # | |
| # copy/paste these lines into your .bashrc or .zshrc file or just # | |
| # type the following in your current shell to try it out: # | |
| # wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash | |
| # # | |
| # # Usage: # |
| # RS256 | |
| # private key | |
| openssl genrsa -out rs256-4096-private.rsa 4096 | |
| # public key | |
| openssl rsa -in rs256-4096-private.rsa -pubout > rs256-4096-public.pem | |
| # ES512 | |
| # private key | |
| openssl ecparam -genkey -name secp521r1 -noout -out ecdsa-p521-private.pem | |
| # public key |
VICE is the best by such a commanding margin that you really needn't look elsewhere. Open source and has the largest community.
However, other options are:
| #!/bin/bash | |
| # download and install latest geckodriver for linux or mac. | |
| # required for selenium to drive a firefox browser. | |
| install_dir="/usr/local/bin" | |
| json=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest) | |
| if [[ $(uname) == "Darwin" ]]; then | |
| url=$(echo "$json" | jq -r '.assets[].browser_download_url | select(contains("macos"))') | |
| elif [[ $(uname) == "Linux" ]]; then | |
| url=$(echo "$json" | jq -r '.assets[].browser_download_url | select(contains("linux64"))') |
| (ns pubsub-with-callbacks | |
| "Adapted from Timothy Baldridge's 2013 core.async examples: | |
| * https://raw.githubusercontent.com/halgari/clojure-conj-2013-core.async-examples/master/src/clojure_conj_talk/core.clj" | |
| (:require [clojure.core.async :as async])) | |
| (def pub-channel (async/chan 1)) | |
| (def publisher (async/pub pub-channel :tag)) | |
| (def print-channel (async/chan 1)) | |
| (defn run-print-channel |
| // Spec http://www.ecma-international.org/ecma-262/6.0/#sec-json.stringify | |
| const replacer = (key, value) => | |
| value instanceof Object && !(value instanceof Array) ? | |
| Object.keys(value) | |
| .sort() | |
| .reduce((sorted, key) => { | |
| sorted[key] = value[key]; | |
| return sorted | |
| }, {}) : | |
| value; |
| (ns blog-ring.middleware | |
| (:require [ring.middleware.params :refer [wrap-params]] | |
| [ring.middleware.keyword-params :refer [wrap-keyword-params]])) | |
| ((wrap-params identity) | |
| {:query-string "clojure=yes&lisp=maybe"}) | |
| ;; -> {:query-string "clojure=yes&lisp=maybe", | |
| ;; :form-params {}, | |
| ;; :params {"clojure" "yes", "lisp" "maybe"}, | |
| ;; :query-params {"clojure" "yes", "lisp" "maybe"}} |