Skip to content

Instantly share code, notes, and snippets.

View GiveMeSomething's full-sized avatar
🌴
Chilling~

Minh Hoàng Tiến GiveMeSomething

🌴
Chilling~
  • undefined
  • Hanoi, Vietnam
View GitHub Profile
#### Open Powershell and run the following commands to install oh-my-posh and posh-git
```
Set-ExecutionPolicy Bypass -Scope Process -Force
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1'))
PowerShellGet\Install-Module posh-git -Scope CurrentUser -Force
```
#### Open Notepad to config Powershell profile
@mohanpedala
mohanpedala / bash_strict_mode.md
Last active April 24, 2025 20:06
set -e, -u, -o, -x pipefail explanation
@huonw
huonw / blackmagic.rs
Created January 15, 2014 12:42
do-while loops in Rust
while {
let x = foo();
bar(x);
x != 0
} {}