Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Giphy markdown embed
// @namespace http://tampermonkey.net/
// @version 0.4
// @description Show markdown embed text for gifs
// @homepage https://gist.github.com/reynish/6c3a8121a93e9e05812e3918fbd5e0b9
// @updateURL https://gist.githubusercontent.com/reynish/6c3a8121a93e9e05812e3918fbd5e0b9/raw/giphy-markdown-embed.user.js
// @downloadURL https://gist.githubusercontent.com/reynish/6c3a8121a93e9e05812e3918fbd5e0b9/raw/giphy-markdown-embed.user.js
// @author reynish
// @match https://giphy.com
@reynish
reynish / cloudSettings
Last active January 9, 2023 10:08
Visual Studio Code Settings Sync Gist
{"lastUpload":"2023-01-09T10:08:24.724Z","extensionVersion":"v3.4.3"}
@reynish
reynish / gifs.md
Last active June 27, 2017 14:16
GifsFor Mattermost (Probably works on Slack)

yo

![space](http://www.grand-illusions.com/images/articles/opticalillusions/chris_walken/chris_walken.gif "space")

space


![omg](https://media.giphy.com/media/90F8aUepslB84/giphy.gif "omg")

@reynish
reynish / jira-stickes.css
Last active April 12, 2017 16:28
stickies
.aui-header {
background: goldenrod !important;
color: #000 !important;
}
.aui-header a.active,
.aui-header a:focus,
.aui-header a:hover,
.aui-header a:active {
background: hsla(0,0%,0%,.5) !important;
@reynish
reynish / jira-reload.user.js
Last active April 12, 2017 14:13
UserScript to reload JIRA
// ==UserScript==
// @name Jira list refresh
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://issues-solace.uk.cambridgeconsultants.com/
// @grant none
// ==/UserScript==
// Have a service to show temperature and battery level
// This is only visible when you are connecting to the Puck
var currentTemperature=E.getTemperature().toFixed(2)*100;
console.log("Temp: "+currentTemperature);
NRF.setServices({
"12411007-877b-4b6e-1d8a036a956a" : { // Health Thermometer
"7e3defd9-1426-068f-d744-fa70603d83ac": { // Temperature
@reynish
reynish / index.html
Last active August 19, 2016 11:31
Three.js playgroundhttps://bl.ocks.org/reynish/bb06fb67c247b0a32d67769c0c295d75
<html>
<head></head>
<body>
<script src="https://rawgit.com/mrdoob/three.js/dev/build/three.js"></script>
<script src="script.js"></script>
</body>
</html>
@reynish
reynish / gist:74eaafcbb6755c02c9ff
Created March 4, 2016 14:28 — forked from justinmc/gist:9149719
Sample Gulpfile
var gulp = require('gulp');
var clean = require('gulp-clean');
var jshint = require('gulp-jshint');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var imagemin = require('gulp-imagemin');
var bases = {
app: 'app/',
@reynish
reynish / simple-server.js
Created January 8, 2016 10:13
Really simple node server
var http = require('http');
var port = 9000;
function handleRequest(req, res){
res.end('I\'m alive');
}
var server = http.createServer(handleRequest);
@reynish
reynish / webkit-input-date
Created July 7, 2015 12:28
Remove webkit date input spinners
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}