Skip to content

Instantly share code, notes, and snippets.

View Soonogo's full-sized avatar
🎯
Focusing

Soonogo

🎯
Focusing
View GitHub Profile
@Soonogo
Soonogo / export_vscode_extesions.md
Created April 18, 2023 03:04 — forked from joseluisq/export_vscode_extesions.md
How to export your VS Code extensions from terminal

How to export your VS Code extensions from terminal

Note: Unix-like systems only.

  1. Export your extensions to a shell file:
code --list-extensions | sed -e 's/^/code --install-extension /' > my_vscode_extensions.sh
@Soonogo
Soonogo / serve.go
Created April 9, 2023 15:40 — forked from paulmach/serve.go
Simple Static File Server in Go
/*
Serve is a very simple static file server in go
Usage:
-p="8100": port to serve on
-d=".": the directory of static files to host
Navigating to http://localhost:8100 will display the index.html or directory
listing file.
*/
package main