Skip to content

Instantly share code, notes, and snippets.

View Soonogo's full-sized avatar
🎯
Focusing

Soonogo

🎯
Focusing
View GitHub Profile
@Soonogo
Soonogo / floor.svg
Last active June 18, 2025 03:10
Puffer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@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
@Soonogo
Soonogo / index.html
Created February 14, 2023 09:24
Three js - Interactive solar system
<style>
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,300,400,500,600,700,800');
</style>
<div id="container">
<img id ="border" src="https://image.ibb.co/gFxj6F/border.png">
<div id="welcome">
<p id="firstSentence">Welcome to my <span id="universe">universe</span></p>