- Takes a directory as an argument.
- Checks if it's a Git repository.
- Checks for uncommitted changes.
- Generates a commit message with 🌱, the current timestamp, and "morning/afternoon/night update."
- Commits and pushes the changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log/slog" | |
"net/http" | |
"net/http/cookiejar" | |
"os" | |
) | |
func main() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This code tests how one can create multiple implementations and play with | |
// them in Go, being an example on how the interface and struct dynamic works. | |
// | |
// This code was tested in Go 1.23 | |
// | |
// # How to run it: | |
// | |
// go run main.go | |
// | |
// # Output: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Dependente { | |
public int getIdade() { return 123356777889; } | |
} | |
public abstract class Funcionario { | |
public boolean addDependente(Dependente dependente) { | |
if (dependentes.count() == 5) return false; | |
if (!dependenteValido(dependente)) return false; | |
dependentes.add(dependente); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# docker run --rm -v "$(pwd):/api" -ti -w /api ruby:2.7-alpine sh | |
FROM ruby:2.7-alpine | |
EXPOSE 3000 | |
RUN apk --no-cache add alpine-sdk postgresql-dev tzdata | |
RUN mkdir /api | |
WORKDIR /api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rsync to remove old files | |
gsutil -m rsync -x '.git*' -c -d -r dist gs://bucket/ | |
# Upload and gzip HTML, CSS and JavaScript | |
gsutil -m cp -z "html,css,js" -r dist/** gs://bucket/ | |
# Set expires headers (6 months) on JS and CSS assets | |
gsutil -m setmeta -h "Cache-Control: public, max-age=15552000" gs://bucket/assets/** | |
# Make sure there's no expiration headers on HTML files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
app: | |
build: . | |
# your own configurations for that app | |
depends_on: | |
- cloud-sql-proxy | |
environment: | |
# You must set an URL to access your database. On sequelize (nodejs) it follows this |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Logging = require('@google-cloud/logging'); | |
// Your Google Cloud Platform project ID | |
const projectId = 'wiseup-102030'; | |
// Creates a client | |
const logging = new Logging({ | |
projectId: projectId, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"X_GOOGLE_CODE_LOCATION": "/user_code", | |
"WORKER_PORT": "8091", | |
"X_GOOGLE_SUPERVISOR_INTERNAL_PORT": "8081", | |
"X_GOOGLE_WORKER_PORT": "8091", | |
"FUNCTION_IDENTITY": "[email protected]", | |
"X_GOOGLE_LOAD_ON_START": "false", | |
"GCLOUD_PROJECT": "project-id", | |
"X_GOOGLE_FUNCTION_REGION": "us-central1", | |
"FUNCTION_NAME": "function-name", |
NewerOlder