Live Table: https://diafygi.github.io/webcrypto-examples/
I couldn't find anywhere that had clear examples of WebCryptoAPI, so I wrote examples and made a live table with them. Pull requests welcome!
- generateKey | importKey |
Live Table: https://diafygi.github.io/webcrypto-examples/
I couldn't find anywhere that had clear examples of WebCryptoAPI, so I wrote examples and made a live table with them. Pull requests welcome!
| # Opens the bitbucket page for the current git repository in your browser | |
| function bit() { | |
| giturl=$(git config --get remote.origin.url) | |
| if [ "$giturl" == "" ] | |
| then | |
| echo "Not a git repository or no remote.origin.url set" | |
| exit 1; | |
| fi |
| var express = require('express'), | |
| app = express(), | |
| cookieParser = require('cookie-parser'), | |
| session = require('express-session'), | |
| RedisStore = require('connect-redis')(session); | |
| app.use(express.static(__dirname + '/public')); | |
| app.use(function(req, res, next) { | |
| if (~req.url.indexOf('favicon')) | |
| return res.send(404); |
Below is a collection of links and tools used in my day to day life as a creative developer. There are a few stages of this from Frontend, Middleware, Database, Creative, DevOps and General Tools. This is intended to be a living document of these resources.