Skip to content

Instantly share code, notes, and snippets.

View urcades's full-sized avatar
🎡
the world

é. urcades urcades

🎡
the world
View GitHub Profile
+++ 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 ...
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('');
@urcades
urcades / systems-1.md
Last active July 11, 2017 16:36
Product Design & Systems Conversation
amardeep

[10:05] how much is a design system just a digital usage guide?

[10:06] after going to the design sys meetup yesterday

[10:06] which i thought was pretty bad

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

Verifying that "edouerd.id" is my Blockstack ID. https://onename.com/edouerd
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
module.exports = {
siteMetadata: {
title: "Édouard U.",
author: "Édouard Urcades",
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/pages`,
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) => {
{
"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",