Skip to content

Instantly share code, notes, and snippets.

View VerteDinde's full-sized avatar

Keeley Hammond VerteDinde

View GitHub Profile
@VerteDinde
VerteDinde / keybase.md
Created February 26, 2017 18:54
keybase

Keybase proof

I hereby claim:

  • I am VerteDinde on github.
  • I am keeleyhammond (https://keybase.io/keeleyhammond) on keybase.
  • I have a public key whose fingerprint is AEEF EE70 BB5C DDBD 34DD 452D 2752 6048 91D2 4345

To claim this, I am signing this object:

@VerteDinde
VerteDinde / keeley-hammond-resume.md
Last active April 24, 2017 19:29
Keeley Hammond Resume

Keeley Hammond

440.227.6814 // keeley.m.hammond@gmail.com // GitHub // Twitter

Technical Profile

  • Languages + Libraries/Frameworks: Node, React, Angular, HTML5, CSS3, Sass, JavaScript, Python, JSON, XML Postgres, MongoDB, MySQL
  • Tools: Trello, Slack, Basecamp, Bootstrap, Mocha, Git/GitHub, SQLite, Sinatra, Jekyll, WordPress, Heroku, Adobe CC
@VerteDinde
VerteDinde / about.md
Last active September 11, 2017 03:53 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@VerteDinde
VerteDinde / adafruit-installation-instructions.md
Last active December 21, 2021 14:50
AdaFruit Installation Instructions

IoT Hackathon 2019

AdaFruit Hardware Installation

Hardware + What to Install

In addition to the Microsoft Azure Sphere, we also have hardware available from Adafruit (hardware list).

You will need to install the Arduino IDE to program the device. Depending on your operating system, you may require drivers for the Feather HUZZAH. Follow the instructions here to install drivers and run the Blink Test and the Connecting via WiFi to make sure your system and WiFi are set up correctly.

@VerteDinde
VerteDinde / electron-openjs.md
Last active June 23, 2020 21:05
Electron + OpenJS: Additional Resources

Welcome! 👋

If you're here, you may have watched Electron's OpenJS keynote and are looking for additional resources. We're happy that you're interested in Electron!

Below are a list of all of the resources listed in the keynote, as well as some additional links that you may find helpful.

I'd like to learn more about Electron!

@VerteDinde
VerteDinde / index.html
Created March 11, 2021 18:47
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
@VerteDinde
VerteDinde / index.html
Created March 30, 2021 23:14
window focus
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
</head>
<body>
@VerteDinde
VerteDinde / index.html
Created May 26, 2021 23:39
Protocol Load API
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
</head>
<body>
@VerteDinde
VerteDinde / index.html
Last active May 27, 2021 19:12
String Protocol Example
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
</head>
<body>
@VerteDinde
VerteDinde / index.html
Created May 28, 2021 01:09
App Default Protocol Demo
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>app.setAsDefaultProtocol Demo</title>
</head>