Skip to content

Instantly share code, notes, and snippets.

View Grdflo's full-sized avatar

Ferrero Grdflo

  • LYON
View GitHub Profile
@Grdflo
Grdflo / jenkins_basic.yml
Created January 27, 2024 20:07 — forked from wiccy46/jenkins_basic.yml
[jenkins_basic] Jenkins basics #jenkins
docker-compose.yml
services:
jenkins:
container_name: jenkins
image: jenkins/jenkins
ports:
- "8080:8080"
volumes:
- "$PWD/jenkins_home:/var/jenkins_home"
@Grdflo
Grdflo / README.md
Created February 2, 2022 17:38 — forked from webketje/README.md
Soundcloud Downloader Clean - Tampermonkey userscript OR bookmarklet

Tampermonkey userscript - Soundcloud Downloader Clean

An ad-less, multilingual, clean Soundcloud downloader with robust code. Adds a 'Download' button to all single track views.

Adds a 'Download' button to all single-track views.

Features:

// ==UserScript==
// @name Whisky.de-Forum ++
// @author WithKeys
// @namespace tuxproject.de
// @description Zusätzliche Funktionen für das Whisky.de-Forum.
// @include /www.whisky.de\/forum\/.*/
// @include /www.whisky.de\/tfg\/forum.html$/
// @exclude /\.(jpe?g|png|gif)$/
// @require https://raw.githubusercontent.com/franciscop/umbrella/master/umbrella.min.js
// @version 5.3
create extension if not exists pgcrypto;
create or replace function uuid_generate_v7()
returns uuid
as $$
declare
output bytea;
unixts bytea = e'\\000\\000\\000\\000\\000\\000\\000\\000\\000';
timestamp timestamptz;
unix_time bigint;