Skip to content

Instantly share code, notes, and snippets.

View ohanhi's full-sized avatar

Ossi Hanhinen ohanhi

View GitHub Profile
@ohanhi
ohanhi / keybase.md
Created February 24, 2020 13:51
keybase
View keybase.md

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

View Flags.elm
module Flags exposing (..)
import Browser
import Browser.Navigation
import Html exposing (p, text)
import Url
main : Program Int Int Msg
main =
@ohanhi
ohanhi / AutoExpand.elm
Created March 18, 2017 17:53
A pure Elm auto expanding text area
View AutoExpand.elm
module AutoExpand exposing (main)
-- https://embed.ellie-app.com/Gnv9Bznh4na1/0
import Html exposing (Html, div, p, br, textarea, text)
import Html.Attributes exposing (rows, style)
import Html.Events exposing (onInput, on)
import Json.Decode exposing (Decoder, field, at, map2, int, string)
type alias Model =
View ohanhi.zsh-theme
autoload -U colors && colors
autoload -Uz vcs_info
zstyle ':vcs_info:*' stagedstr '%F{green}•'
zstyle ':vcs_info:*' unstagedstr '%F{yellow}•'
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' enable git svn
theme_precmd () {
if [[ -z $(git ls-files --other --exclude-standard 2> /dev/null) ]] {
View why-and-when-to-elm.md
@ohanhi
ohanhi / JsonApi.elm
Created March 26, 2016 15:57
Example abstraction layer on top of elm-http-extra
View JsonApi.elm
module JsonApi where
import Task exposing (Task)
import Json.Decode exposing (Decoder)
import Json.Encode exposing (Value)
import Http.Extra as HttpExtra exposing (..)
import Task exposing (Task)
import Json.Decode exposing (Decoder)
@ohanhi
ohanhi / console.log.js
Last active November 5, 2020 09:09
console.log
View console.log.js
var x = 1;
console.log(x);
if(1) {
var x = 2;
console.log(x);
}
console.log(x);
var x = 10;
function foo(x) {
@ohanhi
ohanhi / joy-of-composition.md
Last active February 3, 2021 18:14
The Joy of Composition - Why stateless rendering is pure bliss
View joy-of-composition.md
@ohanhi
ohanhi / frp.md
Last active December 23, 2022 13:06
Learning FP the hard way: Experiences on the Elm language