Skip to content

Instantly share code, notes, and snippets.

View AndrewWUw's full-sized avatar
🏠
Working from home

Andrew WU AndrewWUw

🏠
Working from home
  • Sydney, Australia
View GitHub Profile
@Dexyne
Dexyne / Haskell on Ubuntu 13.04.md
Last active December 1, 2023 09:39
Install Haskell (haskell-plateform-2013.2.0.0 + GHC 7.6.3) on Ubuntu 13.04.
anonymous
anonymous / index.html
Created October 20, 2016 00:19
JSFragment used in XmlView // source https://jsbin.com/fukuwij
<!DOCTYPE html>
<html><head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="charset=utf-8">
<script src="https://openui5.hana.ondemand.com/resources/sap-ui-core.js" id="sap-ui-bootstrap" data-sap-ui-theme="sap_bluecrystal" data-sap-ui-libs="sap.m"></script>
<title>JSFragment used in XmlView</title>
<!-- Load UI5, select Blue Crystal theme and the "commons" control library -->
<script id='sap-ui-bootstrap' type='text/javascript'
@lenkan
lenkan / use-location.js
Created March 2, 2019 18:26
React hook that keeps up to date with the current location.
// @ts-check
import { useState, useEffect } from 'react'
function getCurrentLocation () {
return {
pathname: window.location.pathname,
search: window.location.search
}
}