create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#!/bin/bash | |
# Requirements: dialog mpv | |
# Optional: youtube-dl wget hq | |
# Arguments: none | |
# | |
# Changelog: | |
# > + from function to standalone script | |
# + menu stack for saving previous menu command | |
# + choices stack for saving previous menu choice |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
The following is a quick guide to get this working on various Linux distros. As a side note, if you have Chrome installed alongside Vivaldi, Netflix should also work after making these changes. Alternatively, use my latest-widevine.sh to fetch and extract Chrome's copy of Widevine, so that it can be used by Vivaldi.
If you don't have working Flash video and need that in addition, please refer to these instructions.
Note: This guide is primarrily aimed at users of Vivaldi stable releases. If it does not solve your issues, read this in addition.
div#json, div#jfContent{ | |
margin: 0; | |
padding: 20px; | |
background: #191919; | |
color: #C4BD97; | |
position: fixed; | |
top:0; | |
bottom:0; | |
left:0; | |
right:0; |
Chromium OS is cool. Chromium OS with crouton is cooler. Chromium OS with Docker is even cooler. This is specifically a guide for the Chromebook Pixel 2 (2015), but I can't think of any reason it wouldn't work with other devices.
describe('something', function() { | |
beforeEach(function() { | |
this.getAttributeStub = sinon.stub(Xrm.Page, 'getAttribute'); | |
}); | |
afterEach(function() { | |
this.getAttributeStub.restore(); | |
}); | |
it('tests something', function() { |
#System Design Cheatsheet
Picking the right architecture = Picking the right battles + Managing trade-offs
##Basic Steps
function p(u,p,c){with(new XMLHttpRequest)open('POST',u),setRequestHeader('Content-type','application/x-www-form-urlencoded'),onreadystatechange=function(){3<readyState&&c(this)},send(p)} |
ffmpeg -re -i rtmp://localhost/live/input_stream -acodec libfaac -ab 128k -vcodec libx264 -s 640x360 -b:v 500k -preset medium -vprofile baseline -r 25 -f flv rtmp://localhost/live/medium_500k -acodec libfaac -ab 128k -vcodec libx264 -s 480x272 -b:v 300k -preset medium -vprofile baseline -r 25 -f flv rtmp://localhost/live/medium_300k -acodec libfaac -ab 128k -c:v libx264 -s 320x200 -b:v 150k -preset:v fast -profile:v baseline -level 1.2 -r 25 -f flv rtmp://localhost/live/medium_150k -acodec libfaac -vn -ab 48k -f flv rtmp://localhost/live/audio_only |
#!/usr/bin/env bash | |
# On OS X, use this script to generate an encrypted deployment key for Travis CI. | |
# Dependencies: | |
# gem install travis | |
# brew install coreutils | |
if [ $# -lt 1 ]; then | |
echo "usage: $0 <user>/<repo>" |