- https://github.com/debarshibasak/awesome-paas
- More than 60 platforms and tools
- Many dead tools, or companies that closed shop
- https://ossdatabase.com/projects/heroku
Others not included in the above list (as of time of writing):
| package main | |
| import ( | |
| "bufio" | |
| "context" | |
| "log" | |
| "net/http" | |
| "sync" | |
| "time" |
| package main | |
| import ( | |
| "bufio" | |
| "context" | |
| "log" | |
| "net/http" | |
| "os" | |
| "strconv" | |
| "sync" |
| BRANCH_NAME="master" | |
| # Clone the repository .git information only | |
| # Docs: https://git-scm.com/docs/git-clone | |
| # | |
| # --no-checkout :: Do not fetch any files, only the `.git` directory. | |
| # --sparse :: Only files at the top-level directory, at the root of the repository, will be part of the checkout. | |
| # --branch <branch_name> :: Only fetch the information for the given branch. | |
| # --depth 1 :: Only fetch the tip commit, HEAD of the specified branch. | |
| # --filter=blob:none :: Do not download any blob files. |
Others not included in the above list (as of time of writing):
| package main | |
| import ( | |
| "database/sql" | |
| "context" | |
| "fmt" | |
| "log" | |
| "time" | |
| "os" |
References
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| // Change this to your project source folder | |
| content: ['./web/**/*.go'], | |
| plugins: [], | |
| theme: { | |
| extend: {}, | |
| } | |
| } |
| #!/usr/bin/env bash | |
| # Inspired from: | |
| # - https://blog.wesleyac.com/posts/simple-deploy-script | |
| # - https://gist.github.com/WesleyAC/b3aaa0292579158ad566c140415c875d | |
| # - https://caddyserver.com/docs/running#using-the-service | |
| set -e | |
| # cd $(dirname $0) |