Wake up, Neo...reloaded ('-' * 23) Message Scroller "Matrix" style.
(Idea by Jack Rugile) http://codepen.io/jackrugile/pen/xAeHr
Forked from Victor Casals's Pen Wake up, Neo...reloaded.
var scrollTo = function(id, cls, offset) { | |
var ele; | |
var targetOffset = 0; | |
var targetTop = 0; | |
if(offset) { | |
targetOffset = offset; | |
} | |
if(id) { | |
ele = document.getElementById(id); |
Wake up, Neo...reloaded ('-' * 23) Message Scroller "Matrix" style.
(Idea by Jack Rugile) http://codepen.io/jackrugile/pen/xAeHr
Forked from Victor Casals's Pen Wake up, Neo...reloaded.
<?php | |
add_action( 'wp_head', 'remove_feeds_from_wp_head', 1 ); | |
/** | |
* Remove feed links from wp_head | |
*/ | |
function remove_feeds_from_wp_head() { | |
// Remove feed links | |
remove_action( 'wp_head', 'feed_links', 2 ); | |
remove_action( 'wp_head', 'feed_links_extra', 3 ); |
background: linear-gradient(270deg, #ff0404, #ff9400, #f9ff00, #00ff15, #0600ff, #af00ff); | |
background-size: 1200% 1200%; | |
-webkit-animation: AnimationName 3s ease infinite; | |
-moz-animation: AnimationName 3s ease infinite; | |
-o-animation: AnimationName 3s ease infinite; | |
animation: AnimationName 3s ease infinite; | |
@-webkit-keyframes AnimationName { | |
0%{background-position:0% 50%} | |
50%{background-position:100% 50%} | |
100%{background-position:0% 50%} |
---------------------------------------------------------------------------- | |
-- Copy this section of the file to a file called MyMedia.lua, and enter | |
-- your media's information, using the examples shown below. | |
---------------------------------------------------------------------------- | |
local LSM = LibStub("LibSharedMedia-3.0") | |
-- START of the section that you should be editing | |
-- | |
-- NB: any line beginning with "--" is ignored - so the lines |
If you want to get the difference between two branches, say master and branch-name, use the following command:
git diff master..branch-name
If you want that same diff in a patch, because patches are handy, just add the output redirect:
git diff master..branch-name > branch-name.patch
If you need to import that patch into something like Crucible then you'll need to get rid of the a and b prefixes that git adds:
git diff --no-prefix master..branch-name > branch-name.patch