Skip to content

Instantly share code, notes, and snippets.

FWIW: I (@Rondy) am not the author of the content presented here, which is an outline from Edmond Lau's book. I've just copy-pasted it from somewhere and saved as a personal gist, before it got popular on newsnews.ycombinator.com. I don't remember where exactly the original source is from and neither could find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

@mnhlt
mnhlt / microfrontend.md
Created June 10, 2021 17:35
Microfrontend
title date tags categories
Journey to Microfrontend: Pilot
2021-06-09 19:43:03 -0700
microfrontend
distributed frontend
reactjs
coding
journey
microfrontend

Micro-frontend

https://micro-frontends.org/

@mnhlt
mnhlt / img_resize.js
Created April 14, 2020 03:48 — forked from makevoid/img_resize.js
Resize Images with Canvas on the clientside
var settings = {
max_width: 600,
max_height: 200
}
resize_image = function(img){
var ctx = canvas.getContext("2d")
var canvasCopy = document.createElement("canvas")
var copyContext = canvasCopy.getContext("2d")
@mnhlt
mnhlt / Git project
Last active December 14, 2017 16:41
Batch to install
#!/bin/sh
mkdir x-one && cd x-one
git clone ssh://git@code.eyeteam.vn:30022/gu/MIA-server.git server
cd server
git clone ssh://git@code.eyeteam.vn:30022/gu/GUone-compile.git compile
cd ..
git clone ssh://git@code.eyeteam.vn:30022/gu/FO-Client.git
git clone ssh://git@code.eyeteam.vn:30022/gu/MIA-Client.git client
cd ..