Skip to content

Instantly share code, notes, and snippets.

View dudo's full-sized avatar
🚧
I'm not sure if I'm digging my own grave, but I'm moving a lot of dirt...

Brett Dudo dudo

🚧
I'm not sure if I'm digging my own grave, but I'm moving a lot of dirt...
View GitHub Profile
@dudo
dudo / Dockerfile
Last active August 28, 2024 21:32
Local development with docker
# Update appropriately to find your languages long term support release, or latest.
FROM node:20
# Embrace linux standards.
WORKDIR /usr/src/app
# Embrace layers. Update to appropriate language/framework file(s).
ADD package*.json ./
# Grab the rest of the local files.
REQUIRED_CONFIGS=(
CONFIG_BPF
CONFIG_BPF_SYSCALL
CONFIG_NET_CLS_BPF
CONFIG_BPF_JIT
CONFIG_NET_CLS_ACT
CONFIG_NET_SCH_INGRESS
CONFIG_CRYPTO_SHA1
CONFIG_CRYPTO_USER_API_HASH
CONFIG_CGROUPS
@dudo
dudo / deploy_to_cloudfront.yaml
Created August 31, 2022 06:30
GitHub Actions
on:
push:
branches:
- master
name: Git Tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
check_version:
name: Check Version
@dudo
dudo / intrumentation.rb
Last active February 22, 2022 20:32
Tracing via a macro
module Instrumentation
DEFAULT_OPERATION = 'method.execution'
def self.trace(operation: DEFAULT_OPERATION, resource:, **options)
options.merge!(resource: resource).compact!
Datadog.tracer.trace(operation, options) do |span|
Datadog::Analytics.set_measured(span)
yield
end
rescue StandardError
@dudo
dudo / fun.css
Created February 16, 2022 05:02
Collection of nice css snippets
.highlight {
border-radius: 1em 0 1em 0;
background-image: linear-gradient(-100deg, rgba(255,224,0,0.3), rgba(255,224,0,0.7) 95%, rgba(255,224,0,0.1));
}
def step(min: 1, comp: 20)
return 0 if min == comp
(1 - (min - comp).abs / (min - comp).to_f) / 2
end
name: 'Close stale issues and PR'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
import { useState, useLayoutEffect } from "react";
export const useViewportSize = (debounceTime = 250) => {
const [viewportSize, setViewportSize] = useState({
width: undefined,
height: undefined
});
const debounce = (fn, ms) => {
let timer;
return () => {
const { build } = require('esbuild');
const manifestPlugin = require('esbuild-plugin-manifest');
const options = {
entryPoints: ['src/index.js'],
entryNames: '[dir]/[name]-[hash]',
outdir: 'dist',
bundle: true,
minify: true,
plugins: [manifestPlugin()],