- oa og oblad må få kopi av havis sitt abo-ikon med endret farge
- legacy xe-ikoner for video
- snippets
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
# Install Bash 4 using homebrew | |
brew install bash | |
# Or build it from source... | |
curl -O http://ftp.gnu.org/gnu/bash/bash-4.2.tar.gz | |
tar xzf bash-4.3.tar.gz | |
cd bash-4.3 | |
./configure --prefix=/usr/local && make && sudo make install | |
# Add the new shell to the list of legit shells |
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
#!/bin/bash | |
# | |
# AutoSSH to host and create or connect to tmux session | |
# Multi-hop version. Separate hops with : | |
# | |
# Author: Oystein Steimler <[email protected]> | |
HLIST=$1; | |
IFS=':' read -a HOPS <<< "$HLIST" |
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
var through = require("through2"); | |
var exec = require("child_process").exec; | |
// through2 docs: https://github.com/rvagg/through2 | |
module.exports = function (options) { | |
// Not necessary to accept options but nice in case you add them later | |
options = options || {}; | |
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
@import '../legacy/legacy.css'; */ | |
.drfront { | |
/* CSS Reset */ | |
/* Default CSS */ | |
line-height: 1; | |
color: black; | |
width: 400px; | |
} |
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
.df-style-breakingnews--black { | |
&[class*=df-fs], | |
[class*=df-fs] { | |
&::before { border-color: var(--swatch-highlights-black) } | |
&::after { background-color: var(--swatch-highlights-black) } | |
} | |
} | |
.df-style-breakingnews--white { | |
&[class*=df-fs], |
Basert på supersets og aktiv hvile. Istedetfor lange pause mellom settene, hviler man ut mens man tøyer. Jeg er ikke helt der ennå, jeg tar et minutts hvile i tillegg, men det er det som er målet.
- Reverse turkish getup (eventuelt tradisjonell turkish getup - en gang per side
- Swings - 10 repetisjoner med tung kettlebell, eventuelt 10 per arm med en lettere en
- Hofteleddsbøyertøying - 10 pust per side
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
<table class="fogisSortTable" id="fogisInfoTable"> | |
<thead> | |
<tr> | |
<th id="thAnmaldLag" class="header headerSortDown"> | |
Hovedlag | |
</th> | |
<th id="th1" class="header"> | |
<nobr>Lagnavn i turn.</nobr> | |
</th> | |
<th id="thAnmaldTavlingskategori" class="header"> |
ES6 class syntax and custom elements with Babel
Babel's _inherits function requires the super class to be a function or null, but in Safari typeof HTMLElement is an object. Full explaination on babel/babel#1548
This solution is based on the proposed solution, but instead of rewriting HTMLElement – we just extend the function – which is safer.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.