This file contains hidden or 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
#!/bin/bash | |
# --- Configuration --- | |
DISTRIBUTION_ID="DISTRO_ID" # Replace with your actual Distribution ID | |
URL_FILE="paths" # Your file containing URL paths | |
BATCH_SIZE=15 # Max paths per invalidation request | |
ALL_PATHS=() |
This file contains hidden or 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
FROM golang:1.20-alpine3.18 | |
RUN apk add --no-cache -U git build-base libwebp-tools vips-dev | |
WORKDIR /app | |
COPY . . | |
# Builds the server | |
RUN go build -o app main.go |
This file contains hidden or 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
#!/usr/bin/env bash | |
window_info=$(xwininfo) | |
x=$(echo "$window_info" | grep "Absolute upper-left X" | awk '{print $4}') | |
y=$(echo "$window_info" | grep "Absolute upper-left Y" | awk '{print $4}') | |
width=$(echo "$window_info" | grep "Width" | awk '{print $2}') | |
height=$(echo "$window_info" | grep "Height" | awk '{print $2}') | |
if [ -z "$x" ] || [ -z "$y" ] || [ -z "$width" ] || [ -z "$height" ]; then |
This file contains hidden or 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
#!/usr/bin/env bash | |
# Example usage: gorefs file.go:10:6 | |
gopls references $1 | while IFS=: read -r file line cols; do | |
start_col=$(echo $cols | cut -d'-' -f1) | |
end_col=$(echo $cols | cut -d'-' -f2) | |
content=$(sed -n "${line}p" "$file") | |
file="./$(realpath --relative-to="$(pwd)" $file)" |
This file contains hidden or 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 stuff = [ | |
"allen wrenches", | |
"gerbil feeders", | |
"toilet seats", | |
"electric heaters", | |
"trash compactors", | |
"juice extractor", | |
"shower rods and water meters", | |
"walkie-talkies", | |
"copper wires safety goggles", |
This file contains hidden or 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 file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see https://i3wm.org/docs/userguide.html for a complete reference! |
This file contains hidden or 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 demonstrates a task scheduling loop where tasks can send back other tasks to the queue. | |
Program input: a nested list of items that can either be integers, or nested slices: | |
- when it's an integer, wait for 25 - value seconds | |
- when it's a slice, wait for len(slice) seconds, then put back each item in the queue to be processed next | |
waiting time simulates some processing, on which a concurrency limit is applied ( both waiting times share the same | |
limit ). pushing back to the queue should not be blocking. |
This file contains hidden or 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 jwt_test | |
func parsePrivatePEM(pemString string) *rsa.PrivateKey { | |
block, _ := pem.Decode([]byte(pemString)) | |
key, _ := x509.ParsePKCS1PrivateKey(block.Bytes) | |
return key | |
} | |
func parsePublicPEM(pemString string) *rsa.PublicKey { | |
block, _ := pem.Decode([]byte(pemString)) |
This file contains hidden or 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
func generateCurlTest(testName string, r *http.Request, w *httptest.ResponseRecorder) { | |
fmt.Println(fmt.Sprintf("### %s", testName)) | |
var b []byte | |
if r.Body != nil { | |
b, _ = ioutil.ReadAll(r.Body) | |
} | |
r.Body = ioutil.NopCloser(bytes.NewBuffer(b)) | |
command, _ := http2curl.GetCurlCommand(r) | |
fmt.Printf("```\n%s\n```\n", command) | |
r.Body = ioutil.NopCloser(bytes.NewBuffer(b)) |
This file contains hidden or 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
#!/bin/bash | |
echo "Waiting for dynamodb to be up" | |
until aws dynamodb --endpoint-url http://mock-aws:4566 list-tables 2>/dev/null; do echo "Waiting for localstack to be ready";sleep 1; done |
NewerOlder