make sure ./assets/static
exists:
for angular, its should be located in ./src/assets/static
<label for="serial-no" class="flex"> | |
<span>serial no</span> | |
<div class="flex-1"><input id="serial-no" class="w-full h-full" placeholder="serial-no"></div> | |
</label> |
func main() { | |
r := chi.Router() | |
r.Use(Basic()) | |
r.Use(Static("/static", "server2/static")) | |
http.ListenAndServe(":3000", r) | |
} | |
type Middleware func(next http.Handler) http.Handler | |
func Basic() Middleware { |
.git/ |
function readBody(req) { | |
return new Promise((resolve, reject) => { | |
let body = ""; | |
req.on("data", (chunk) => { body += "" + chunk; }); | |
req.on("end", () => { resolve(body); }); | |
req.on("error", (err) => { reject(err); }); | |
}); | |
} |
import sys | |
class BinTree(): | |
def __init__(self, value): | |
self.__value = value | |
self.__left = None | |
self.__right = None | |
def value(self): | |
return self.__value |
ng serve --host $(hostname -I | cut -f1 -d' ') |
# basic | |
npx -p @angular/cli ng new myappshop | |
# create angular app in the current directory especially when the current folder is already a git repo | |
npx -p @angular/cli ng new $(basename "$PWD") --directory=./ --skip-git | |
# with scss and defaults | |
npx -p @angular/cli ng new $(basename "$PWD") --directory=./ --skip-git --style=scss --defaults | |
# with version 16 |
go mod init $(git remote -v | head -n 1 | sed -E 's/.*:([^\.]+)\..*/\1/' | awk '{print "github.com/"$1}') |