This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
'use strict'; | |
const internals = {}; | |
exports.errors = { | |
root: 'value', | |
key: '"{{!key}}" ', | |
messages: { | |
wrapArrays: true | |
}, |
#!/bin/bash | |
# Bash script to install latest version of ffmpeg and its dependencies on Ubuntu 12.04 or 14.04 | |
# Inspired from https://gist.github.com/faleev/3435377 | |
# Remove any existing packages: | |
sudo apt-get -y remove ffmpeg x264 libav-tools libvpx-dev libx264-dev | |
# Get the dependencies (Ubuntu Server or headless users): | |
sudo apt-get update |
#!/bin/bash | |
tput civis # hide cursor | |
#trap "echo test" EXIT # this is not needed actually | |
watch -n 15 -c -d -t "git --no-pager log \ | |
--graph \ | |
--all \ | |
--pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' \ | |
--abbrev-commit \ | |
--date=relative" | |
tput cnorm # restore cursor |
package main | |
import ( | |
"fmt" | |
"github.com/PuerkitoBio/goquery" | |
"gopkg.in/mgo.v2" | |
"gopkg.in/mgo.v2/bson" | |
"log" | |
"net/http" | |
"strconv" |
app.directive('autoFillSync', function($timeout) { | |
return { | |
require: 'ngModel', | |
link: function(scope, elem, attrs, ngModel) { | |
var origVal = elem.val(); | |
$timeout(function() { | |
var newVal = elem.val(); | |
if (ngModel.$pristine && origVal !== newVal) { | |
ngModel.$setViewValue(newVal); | |
} |
[user] | |
name = <seu_nome> | |
email = <seu_email> | |
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] |