Skip to content

Instantly share code, notes, and snippets.

View gnomex's full-sized avatar

Kenner Kliemann gnomex

View GitHub Profile
Sidekiq.redis { |r| puts r.flushall }

Sidekiq.redis { |conn| conn.flushdb }

Sidekiq::RetrySet.new.clear
Sidekiq::ScheduledSet.new.clear
Sidekiq::DeadSet.new.clear

stats = Sidekiq::Stats.new
@gnomex
gnomex / 16_colors.sh
Last active July 8, 2020 13:55
Bash rainbow colors
#!/bin/bash
# https://misc.flogisoft.com/bash/tip_colors_and_formatting
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.
#Background
@gnomex
gnomex / rails-jsonb-queries
Created June 19, 2020 21:42 — forked from mankind/rails-jsonb-queries
Rails-5 postgresql-9.6 jsonb queries
http://stackoverflow.com/questions/22667401/postgres-json-data-type-rails-query
http://stackoverflow.com/questions/40702813/query-on-postgres-json-array-field-in-rails
#payload: [{"kind"=>"person"}]
Segment.where("payload @> ?", [{kind: "person"}].to_json)
#data: {"interest"=>["music", "movies", "programming"]}
Segment.where("data @> ?", {"interest": ["music", "movies", "programming"]}.to_json)
Segment.where("data #>> '{interest, 1}' = 'movies' ")
Segment.where("jsonb_array_length(data->'interest') > 1")
interface APIItemResponse {
data: {
id: number,
type: string,
attributes: Item
}[],
meta: {
total: number,
total_pages: number,
page: number,
@gnomex
gnomex / git-cleanup
Created March 6, 2020 17:53
Cleanup git branches
git branch --merged | egrep -v "(^\*|master|dev)" | xargs git branch -d
{
"color_scheme": "Packages/ayu/ayu-mirage.sublime-color-scheme",
"default_line_ending": "unix",
"detect_indentation": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"font_face": "Fira Code",
"font_size": 12,
"highlight_line": true,
"highlight_modified_tabs": true,
@gnomex
gnomex / test-link-alive.sh
Last active April 10, 2018 12:33
Script to test if an IP is reachable
@gnomex
gnomex / default-wifi-powersave-on.conf
Last active May 4, 2018 00:27
Fix intel wireless ac 3165 ubuntu bug
# file /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
[connection]
# Values are 0 (use default), 1 (ignore/don't touch), 2 (disable) or 3 (enable).
wifi.powersave = 2
@gnomex
gnomex / m3u8-to-mp4.md
Created January 4, 2018 00:45 — forked from tzmartin/m3u8-to-mp4.md
m3u8 stream to mp4 using ffmpeg

1. Copy m3u8 link

Alt text

2. Run command

echo "Enter m3u8 link:";read link;echo "Enter output filename:";read filename;ffmpeg -i "$link" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 $filename.mp4
#one of lastest options |> Enum.sort
Enum.take_random((for n <- 1..60, do: n), 6) |> Enum.sort