Skip to content

Instantly share code, notes, and snippets.

View reggi's full-sized avatar
🌺
Learning

Thomas Reggi reggi

🌺
Learning
View GitHub Profile
@reggi
reggi / github-milestones-redirect.js
Last active January 4, 2024 18:22 — forked from lospoy/github-milestones-redirect.js
Redirects GitHub's Milestones to a specific Sort
// ==UserScript==
// @name GitHub Milestones Redirect
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Redirects to GitHub milestones with specific parameters on link click
// @author You
// @match https://github.com/*
// @grant none
// ==/UserScript==
@reggi
reggi / dates.txt
Created October 10, 2018 14:24 — forked from azampagl/statetmzs.py
State to timezone conversion.
Pacific/Apia (GMT-11:00) Samoa Standard Time (Apia)
Pacific/Pago_Pago (GMT-11:00) Samoa Standard Time (Pago Pago)
Pacific/Honolulu (GMT-10:00) Hawaii-Aleutian Standard Time
America/Adak (GMT-09:00) United States (Adak)
America/Anchorage (GMT-08:00) Alaska Daylight Time
America/Ensenada (GMT-08:00) Pacific Standard Time
America/Mazatlan (GMT-07:00) Mountain Standard Time (Mazatlan)
America/Phoenix (GMT-07:00) Mountain Standard Time (Phoenix)
America/Los_Angeles (GMT-07:00) Pacific Daylight Time (Los Angeles)
America/Vancouver (GMT-07:00) Pacific Daylight Time (Vancouver)
@reggi
reggi / index.html
Created December 3, 2014 19:01 — forked from anonymous/index.html
<!DOCTYPE html>
<html>
<head>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<style>
@reggi
reggi / index.html
Created November 18, 2014 16:43 — forked from anonymous/index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<script src="http://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/0.5.1/webcomponents.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/polymer/0.5.1/polymer.min.js"></script>
</head>
<body>
@reggi
reggi / gist:4465538
Last active December 10, 2015 17:08
app.use(function(req, res, next) {
req.url = req.url.replace("/cat","");
next();
});
app.use(app.router);
// `/` and `/cat`
app.get('/', function(req, res, next) {
res.send('index');