Skip to content

Instantly share code, notes, and snippets.

View paschalidi's full-sized avatar
🌐
in Mexico city

Christos Paschalidis paschalidi

🌐
in Mexico city
View GitHub Profile
@paschalidi
paschalidi / ladder.md
Created March 29, 2019 18:08 — forked from jamtur01/ladder.md
Kickstarter Engineering Ladder
@paschalidi
paschalidi / webcryptoapi.html
Created March 21, 2019 11:37 — forked from deiu/webcryptoapi.html
Web Crypto API example: RSA keygen & export & import & sign & verify & encrypt & decrypt
<!-- MIT License -->
<html>
<head>
<script>
function generateKey(alg, scope) {
return new Promise(function(resolve) {
var genkey = crypto.subtle.generateKey(alg, true, scope)
genkey.then(function (pair) {
resolve(pair)
})

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@paschalidi
paschalidi / arrayBufferToString.js
Created January 24, 2019 09:33 — forked from skratchdot/arrayBufferToString.js
Array Buffer -> String and String -> ArrayBuffer conversions in javascript
// source: http://stackoverflow.com/a/11058858
function ab2str(buf) {
return String.fromCharCode.apply(null, new Uint16Array(buf));
}
@paschalidi
paschalidi / README-Template.md
Created November 7, 2018 09:42 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites