I hereby claim:
- I am download13 on github.
- I am download13 (https://keybase.io/download13) on keybase.
- I have a public key ASC2prsbB75bU-y2-GUK-ldXfigfpjetwftKyaHcIh8W1Qo
To claim this, I am signing this object:
{ | |
"connection": "default", | |
"info": { | |
"name": "user", | |
"description": "" | |
}, | |
"attributes": { | |
"username": { | |
"type": "string", | |
"minLength": 3, |
<!DOCTYPE html> | |
<body> | |
<script src="index.jsx"></script> | |
</body> |
I hereby claim:
To claim this, I am signing this object:
#include "easypush.h" | |
#include <ESP8266WiFi.h> | |
#include <WiFiClientSecure.h> | |
#define WIFI_SSID "" | |
#define WIFI_KEY "" | |
#define HOST "easypush.erindachtler.me" | |
#define PATH "/notify/GI0eafKjLYh3NzuY" | |
#define LEFT_ENABLE D5 | |
#define L_POS D1 | |
#define L_NEG D2 | |
#define RIGHT_ENABLE D6 | |
#define R_POS D4 | |
#define R_NEG D3 | |
#include <ESP8266WiFiMulti.h> | |
#include <ESP8266WebServer.h> |
#include <ESP8266WiFi.h> | |
#include <ESP8266HTTPClient.h> | |
#define WIFI_SSID "yourssid" | |
#define WIFI_KEY "yourkey" | |
#define NOTIFY_URL "http://maker.ifttt.com/trigger/<eventname>/with/key/<yourkey>" | |
#define SECOND 1000 | |
#define QUARTER_SECOND 250 |
import element from 'virtual-element'; // Using deku | |
// import React from 'react'; // Switch to this if you are using React | |
import pathToRegexp from 'path-to-regexp'; | |
export function renderRoutes(path, routes) { | |
return Object.keys(routes).map(routePath => { | |
let paramsInfo = []; | |
let re = pathToRegexp(routePath, paramsInfo); | |
let paramNames = paramsInfo.map(p => p.name); |
package main | |
import ( | |
"net/http" | |
"io/ioutil" | |
"strings" | |
"strconv" | |
"math" | |
"fmt" | |
) |