Skip to content

Instantly share code, notes, and snippets.

View dewey's full-sized avatar
👋
Click here to edit status

Philipp Defner dewey

👋
Click here to edit status
View GitHub Profile
@dewey
dewey / cloudSettings
Created August 24, 2018 14:30
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-08-24T14:30:14.047Z","extensionVersion":"v3.0.0"}
FROM ruby:2.7-alpine AS build-env
ARG RAILS_ROOT=/app
ARG BUILD_PACKAGES="build-base curl-dev git"
ARG DEV_PACKAGES="postgresql-dev yaml-dev zlib-dev nodejs yarn"
ARG RUBY_PACKAGES="tzdata"
ENV RAILS_ENV=production
ENV NODE_ENV=production
ENV BUNDLE_APP_CONFIG="$RAILS_ROOT/.bundle"
WORKDIR $RAILS_ROOT
@dewey
dewey / main.go
Created February 20, 2023 17:50
Batch delete customers from Gambio Shop
package main
import (
"encoding/json"
"fmt"
"net/http"
"strconv"
"strings"
)