http://archiveofaffinities.tumblr.com/ http://klr.tumblr.com/ http://nathanjurgenson.com/ http://abroerman.tumblr.com/ https://youtreau.tumblr.com/ http://ttttttffffff.tumblr.com/ http://alinear.tumblr.com/ https://bloombergcyber.tumblr.com/ http://economicsresearch.tumblr.com/ http://js-rp.tumblr.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+++ ace (just ' ') :: spACE | |
+++ bar (just '|') :: vertical BAR | |
+++ bas (just '\\') :: Back Slash (escaped) | |
+++ buc (just '$') :: dollars BUCks | |
+++ cab (just '_') :: CABoose | |
+++ cen (just '%') :: perCENt | |
+++ col (just ':') :: COLon | |
+++ com (just ',') :: COMma | |
+++ doq (just '"') :: Double Quote | |
+++ dot (just '.') :: dot dot dot ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function palindrome(str) { | |
// make string lowercase | |
str.toLowerCase(); | |
// eliminate all weird characters | |
str.replace(/\W,_/gi, ''); | |
// I need to turn the 'str' variable into an array and reverse it | |
// turning it/assigning it into a new array, reverseStr | |
var reverseStr = str.split('').reverse().join(''); | |
from Securing Digital Democracy by J. Alex Halderman
01 Voting as a security problem
In the digital age, voting can be a very big computer security problem.
Is technology being used appropriately and safely in our voting process? Can it be?
The Security Mindset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that "edouerd.id" is my Blockstack ID. https://onename.com/edouerd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Welcome to the chat room! | |
realchaoticmass: kissthewires me too, so pumped | |
instantcalm_: no bladerunner spoilers either please | |
sadface00: http://sweetsweetmedicine.tumblr.com/archive | |
kissthewires: Cant Waaaaait | |
hamiltop11: there is apparently and 'engineer' in the new blade runner (easter egg) | |
sadface00: hi vadik | |
kissthewires: Is Covenant out on DVD download yet? | |
kissthewires: Have to see | |
kissthewires: Awesome |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
siteMetadata: { | |
title: "Édouard U.", | |
author: "Édouard Urcades", | |
}, | |
plugins: [ | |
{ | |
resolve: `gatsby-source-filesystem`, | |
options: { | |
path: `${__dirname}/src/pages`, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const _ = require("lodash") | |
const Promise = require("bluebird") | |
const path = require("path") | |
const select = require(`unist-util-select`) | |
const fs = require(`fs-extra`) | |
exports.createPages = ({ graphql, boundActionCreators }) => { | |
const { createPage } = boundActionCreators | |
return new Promise((resolve, reject) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "gatsby-starter-blog-no-styles", | |
"description": "Starter Gatsby Blog No Styles", | |
"version": "1.0.0", | |
"author": "Noah Glusenkamp <[email protected]>", | |
"bugs": { | |
"url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues" | |
}, | |
"dependencies": { | |
"gatsby": "^1.8.12", |