This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am francisl on github. | |
* I am francisl (https://keybase.io/francisl) on keybase. | |
* I have a public key ASCMbt9NizzH60S9tn4RxhL3J3YjW_2mhT2B5nL3OrlNwAo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../paper-input/paper-input.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
// LIVESCRIPT ---------------------------- | |
var log = grunt.log; | |
var growl = require('growl') | |
function handleResult(from, dest, err, stdout, code, done) { | |
if(err){ | |
growl('ERROR', stdout); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define (start-threaded-server) | |
(display "starting server ") | |
(write-line (number->string x)) | |
(set! x (+ x 1)) | |
(let ((t (make-thread (lambda () | |
(with-exception-handler | |
(lambda (exn) | |
(begin | |
(thread-sleep! 1) | |
(display ((condition-property-accessor 'exn 'location) exn)) |