🌺
- GitHub Staff
- https://reggi.com
- @[email protected]
- in/thomasreggi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |