Skip to content

Instantly share code, notes, and snippets.

View SonNg2k's full-sized avatar
🎯
Focusing

Son Nguyen SonNg2k

🎯
Focusing
  • Outer space
View GitHub Profile
@SonNg2k
SonNg2k / mac-init
Created October 21, 2021 03:54 — forked from nileshk/mac-init
OS X Config Script
#!/bin/bash
# Run this on a new OS X installation
# Disable menu bar transparency
defaults write -g AppleEnableMenuBarTransparency -bool false
# Expand save panel by default
defaults write -g NSNavPanelExpandedStateForSaveMode -bool true
# Disable press-and-hold for keys in favor of key repeat
@SonNg2k
SonNg2k / buddha.txt
Created October 5, 2021 11:38
Blessing from Buddha
////////////////////////////////////////////////////////////////////
// _ooOoo_ //
// o8888888o //
// 88" . "88 //
// (| ^_^ |) //
// O\ = /O //
// ____/`---'\____ //
// .' \\| |// `. //
// / \\||| : |||// \ //
// / _||||| -:- |||||- \ //
@SonNg2k
SonNg2k / main.dart
Last active August 20, 2021 12:55 — forked from elisar4/main.dart
Flutter iOS Keyboard Animation
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primarySwatch: Colors.blue,