Skip to content

Instantly share code, notes, and snippets.

View rootscript's full-sized avatar

Carlos rootscript

  • UK
View GitHub Profile
@rootscript
rootscript / Json2li.elm
Last active October 18, 2016 00:50 — forked from freakingawesome/so-35028430.elm
How to extract the results of Http Requests in Elm
import Html exposing (..)
import Html.App exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Html.Attributes exposing (..)
import Http
import Task exposing (Task)
import Json.Decode as Json exposing ((:=))
type Msg
@rootscript
rootscript / framerSnippets01.coffee
Created November 1, 2017 00:42
[Framer Snippets 01] useful bits & pieces #framer #snippets
Utils.insertCSS('@import url(http://fonts.googleapis.com/css?family=Pacifico)')
PacificoLayer = new Layer
html: "This is Pacifico"
style: { fontFamily: "Pacifico" }
Utils.insertCSS('@import url(http://fonts.googleapis.com/css?family=Rozha+One);')
RozhaOneLayer = new Layer
html: "This is Rozha One"