Skip to content

Instantly share code, notes, and snippets.

View lekhanhtoan37's full-sized avatar
😀

Le Toan lekhanhtoan37

😀
  • Viet Nam
View GitHub Profile

Keybase proof

I hereby claim:

  • I am lekhanhtoan37 on github.
  • I am lekhanhtoan37 (https://keybase.io/lekhanhtoan37) on keybase.
  • I have a public key ASCm0EDGsUk0mUhOv3gX4h4j9PgFD4PnpzpF5Ocv0E4gAgo

To claim this, I am signing this object:

@lekhanhtoan37
lekhanhtoan37 / .bash_profile
Created November 30, 2019 18:00 — forked from hernamesbarbara/.bash_profile
bash_profile with terminal colors and useful aliases
#!/bin/bash
export TERM=xterm-color
export CLICOLOR=1
export GREP_OPTIONS='--color=auto'
# export LSCOLORS=Exfxcxdxbxegedabagacad
export LSCOLORS=gxfxcxdxbxegedabagacad # Dark lscolor scheme
# Don't put duplicate lines in your bash history
export HISTCONTROL=ignoredups
# increase history limit (100KB or 5K entries)
export HISTFILESIZE=100000
@lekhanhtoan37
lekhanhtoan37 / Fonts.swift
Created September 3, 2020 16:06 — forked from khanlou/Fonts.swift
Print all fonts in Swift 3
UIFont.familyNames.forEach({ familyName in
let fontNames = UIFont.fontNames(forFamilyName: familyName)
print(familyName, fontNames)
})