Skip to content

Instantly share code, notes, and snippets.

View hliyan's full-sized avatar

Hasitha N. Liyanage hliyan

View GitHub Profile
@hliyan
hliyan / rest-api-01.go
Created May 1, 2019 11:19
REST API in Go
package main
import (
"encoding/json"
"fmt"
"io"
"log"
"net/http"
)
@hliyan
hliyan / post-message.html
Created July 29, 2019 11:57
Events using postMessage
<html>
<body>
<div>
<button onClick="onButton()">Hello</button>
</div>
<script>
// credit: https://dbaron.org/log/20100309-faster-timeouts
const eventQueue = [];
@hliyan
hliyan / svelte.md
Last active July 18, 2020 06:16
Svelte

1. Basics

<script>
	let name = 'world';
</script>

<h1>Hello {name}!</h1>