Skip to content

Instantly share code, notes, and snippets.

View jmanoto's full-sized avatar

Jeremy Manoto jmanoto

  • Sydney, Australia
  • 23:09 (UTC +10:00)
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jmanoto on github.
  • I am jmanoto (https://keybase.io/jmanoto) on keybase.
  • I have a public key ASCiEvVBuOEZ_HR21QGNu_tiT578GZlNSLGo_gRi53Efuwo

To claim this, I am signing this object:

@jmanoto
jmanoto / js-crypto-libraries.md
Created September 19, 2016 11:41 — forked from jo/js-crypto-libraries.md
List of JavaScript Crypto libraries.

JavaScript Crypto Libraries

I start with a list and plan to create a comparison table.

WebCryptoAPI

http://www.w3.org/TR/WebCryptoAPI/

This specification describes a JavaScript API for performing basic cryptographic operations in web applications, such as hashing, signature generation and verification, and encryption and decryption. Additionally, it describes an API for applications to generate and/or manage the keying material necessary to perform these operations. Uses for this API range from user or service authentication, document or code signing, and the confidentiality and integrity of communications.

@jmanoto
jmanoto / Seti.tmTheme
Created July 7, 2016 07:22
Seti Sublime theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>author</key>
<string>Ctf0</string>
<key>comment</key>
<string>Based on 'Neon' by Matt Morrison</string>
<key>name</key>
<string>Seti_UX</string>
@jmanoto
jmanoto / options.js
Last active August 29, 2015 14:01
Beta Dashboard Forecast widget (fork from mlava)
return {
"name": "Ninja Forecast.io",
"deviceMap": [
{ "deviceId": 2000, "minimum": 1, "maximum": 1} // Sandbox device until more specific ID is availble
],
"forceDeviceMapGroup": true
}
@jmanoto
jmanoto / options.js
Created August 19, 2013 06:48 — forked from elliots/options.js
Notification (style update)
return {
"name": "Notification",
"deviceMap": [{ "deviceType": "notification" }]
}
@jmanoto
jmanoto / options.js
Last active December 21, 2015 06:48 — forked from elliots/options.js
Lock Screen (style update)
return {
"name": "Lock Screen",
"deviceMap": [{ "deviceType": "lock-screen" }]
}
@jmanoto
jmanoto / options.js
Last active December 21, 2015 06:48 — forked from elliots/options.js
Text to Speech (style update)
return {
"name": "Text-to-speech",
"deviceMap": [{ "deviceType": "speech" }]
}
@jmanoto
jmanoto / options.js
Last active December 21, 2015 06:48 — forked from elliots/options.js
Open Url (updated style)
return {
"name": "Open URL",
"deviceMap": [{ "deviceType": "openurl" }]
}
@jmanoto
jmanoto / options.js
Last active June 27, 2024 13:50
Default Widget Gist
return {
"name": "Default Widget",
"deviceMap": [
{ minimum: "1", maximum:"1" }
]
}