Skip to content

Instantly share code, notes, and snippets.

View FilipNest's full-sized avatar

Filip Hnízdo FilipNest

View GitHub Profile
@FilipNest
FilipNest / js.md
Last active April 4, 2018 18:17
JavaScript Subset

JavaScript

Embedding JavaScript

Make a .js file.

Embed it in HTML with :

@FilipNest
FilipNest / typechecker.js
Last active July 26, 2017 11:20
Function type checker doodle
<script>
// Doodle of function type checking just for fun. Add string_, array_, number_, boolean_, object_
// to start of argument name in function and add [F.check]() to the end of the function. Doesn't work with destructuring etc yet
// Mostly just a doodle to play with symbols
var F = {
check: Symbol(),
get required() {
@FilipNest
FilipNest / irisjs-tutorial.md
Last active August 31, 2016 12:10
irisjs cms tutorial

This tutorial will show you how to create a simple blog site with a live updating comment feed and email notifications when a comment is received.

You'll need node.js 6.0 or greater installed.

Creating a blog site with a live updating comment feed and email notifications

Getting started

  • Create a new folder and initialise a new node.js npm project by using npm init and following the instructions.