Skip to content

Instantly share code, notes, and snippets.

View yunyu's full-sized avatar
😎

Yunyu Lin yunyu

😎
View GitHub Profile
@yunyu
yunyu / README.md
Last active June 6, 2021 13:48 — forked from nicerobot/README.md
Mac OS X uninstall script for packaged install of node.js from https://stackoverflow.com/a/9287292/23056

To run this, you can try:

curl -ksO https://gist.githubusercontent.com/yunyu/3b76f198aaaaccfe78de13a3d1a31856/raw/uninstall-node.sh
chmod +x ./uninstall-node.sh
./uninstall-node.sh
rm uninstall-node.sh
@yunyu
yunyu / bottom_sheet_fix.dart
Created February 17, 2019 19:51 — forked from crimsonsuv/bottom_sheet_fix.dart
Flutter Modal bottom sheet whith input fix and full screen sheet
//Flutter Modal Bottom Sheet
//Modified by Suvadeep Das
//Based on https://gist.github.com/andrelsmoraes/9e4af0133bff8960c1feeb0ead7fd749
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:meta/meta.dart';
const Duration _kBottomSheetDuration = const Duration(milliseconds: 200);