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 / main.go
Created February 20, 2023 17:50
Batch delete customers from Gambio Shop
package main
import (
"encoding/json"
"fmt"
"net/http"
"strconv"
"strings"
)
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 / cloudSettings
Created August 24, 2018 14:30
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-08-24T14:30:14.047Z","extensionVersion":"v3.0.0"}
@dewey
dewey / mail.md
Last active August 14, 2018 03:52
Gitlab Vulnerability Spam

Update: Seems to be real https://news.ycombinator.com/item?id=11587416

Original Message:

I received this message on Wednesday, April 27, 2016 7:35 PM. Couldn't find anything about it on Gitlab's Blog or Twitter so I asked for clarification here: https://twitter.com/tehwey/status/725612585886842880

Anyone else got one of these, maybe to an address that's exclusively used on Gitlab? There also seems to be a huge spam issue going on in their issue tracker right now:

https://gitlab.com/gitlab-org/gitlab-ce/issues?page=5&scope=all&sort=id_desc&state=opened

@dewey
dewey / gist:4c1c8cf7d289e5c3437b6bc6b92e8698
Created April 9, 2016 21:22
Kernel flags for Docker on Gentoo
* CONFIG_CGROUP_HUGETLB: is not set when it should be.
* CONFIG_NET_CLS_CGROUP: is not set when it should be.
* CONFIG_RT_GROUP_SCHED: is not set when it should be.
* CONFIG_CGROUP_NET_PRIO: is not set when it should be.
* CONFIG_DEVPTS_MULTIPLE_INSTANCES: is not set when it should be.
* CONFIG_CGROUP_DEVICE: is not set when it should be.
* CONFIG_CGROUP_FREEZER: is not set when it should be.
* CONFIG_CGROUP_SCHED: is not set when it should be.
* CONFIG_NF_NAT_IPV4: is not set when it should be.
@dewey
dewey / main.go
Last active December 2, 2015 23:39
Parse multiple .ics feeds into one and create the file and serve it via http.
package main
import (
"bufio"
"crypto/md5"
"encoding/hex"
"fmt"
"log"
"net/http"
"os"
@dewey
dewey / gist:f2725f51857607e52093
Created December 22, 2014 23:53
munin-lastfm
#!/usr/bin/env python
import urllib.request
import json
import sys
def main():
try:
mode = sys.argv[1]
except IndexError:
mode = ""
var input = ['p1', 'p2', 'p3', 'p4', 'p5', 'p6']
var output = [];
var counter = 0;
for(var i = 0; i <= input.length-1; i++) {
var tupel = [];
if(counter == 0) {
tupel.push(input[i])
counter++;
@dewey
dewey / updatecheck.sh
Created December 6, 2014 18:24
Shell script to send push notifications if there are new Gentoo updates available.
#!/bin/zsh
updates=`emerge -pv --color n --update --deep --newuse world`
if [ "`echo $updates | wc -l`" -gt "6" ]; then
message=`echo $updates | grep -F --color=never "ebuild"`
curl -s \
--form-string "token=APP TOKEN HERE" \
--form-string "user=USER TOKEN HERE" \
--form-string "title=Updates available for: `hostname`" \
--form-string "message=$message" \
https://api.pushover.net/1/messages.json
@dewey
dewey / app.js
Created November 6, 2014 23:16
Script to calculate the total size of data listed in all torrent files in a given directory
// Script to calculate the total size of data listed in all torrent files in a given directory.
//
// Dependencies: Install `parse-torrent-file` and `glob` with `npm install`. `fs` is already a core library.
// Usage: Move all directories containing *.torrent files into the torrent/ directory
// and run `node app.js`.
//
// Author: https://github.com/dewey - 6.11.2014
var parseTorrentFile = require('parse-torrent-file'),
fs = require('fs'),