/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
- Generate your SSH keys as per your git provider documentation.
- Add each public SSH keys to your git providers acounts.
- In your
~/.ssh/config
, set each ssh key for each repository as in this exemple:
source | target | value | |
---|---|---|---|
azure | .net | 20.933192346640457 | |
sql-server | .net | 32.322524219339904 | |
asp.net | .net | 48.40702996199019 | |
entity-framework | .net | 24.37090250532431 | |
wpf | .net | 32.35092522005943 | |
linq | .net | 20.501743858149066 | |
wcf | .net | 28.074400427611113 | |
c# | .net | 62.167895042923824 | |
tdd | agile | 37.146589924204555 |
Series Name,Series Code,Country Name,Country Code,2016 [YR2016] | |
"Population, total",SP.POP.TOTL,Afghanistan,AFG,34656032 | |
"Population, total",SP.POP.TOTL,Albania,ALB,2876101 | |
"Population, total",SP.POP.TOTL,Algeria,DZA,40606052 | |
"Population, total",SP.POP.TOTL,American Samoa,ASM,55599 | |
"Population, total",SP.POP.TOTL,Andorra,AND,77281 | |
"Population, total",SP.POP.TOTL,Angola,AGO,28813463 | |
"Population, total",SP.POP.TOTL,Antigua and Barbuda,ATG,100963 | |
"Population, total",SP.POP.TOTL,Argentina,ARG,43847430 | |
"Population, total",SP.POP.TOTL,Armenia,ARM,2924816 |
The red panda is dwarfed by the black-and-white giant that shares its name. These pandas typically grow to the size of a house cat, though their big, bushy tails add an additional 18 inches. The pandas use their ringed tails as wraparound blankets in the chilly mountain heights.
The red panda (Ailurus fulgens) is a mammal species native to the eastern Himalayas and southwestern China. It is listed as Endangered on the IUCN Red List because the wild population is estimated at fewer than 10,000 mature individuals and continues to decline due to habitat loss and fragmentation, poaching, and inbreeding depression. Despite its name, it is not closely related to the giant panda.
The red panda has reddish-brown fur, a long, shaggy tail, and a waddling gait due to its shorter front legs; it is roughly the size of a domestic cat, though with a longer body, and is somewhat heavier. It is arboreal and feeds mainly on bamboo, but also eats eggs, birds, and insects. It is a solitary animal, m

<section class="portfolio section"> | |
<div class="container"> | |
<div class="top-side"> | |
<h4 class="title">MY WORKS</h4> | |
<h2>PORTFOLIO</h2> | |
</div> | |
<div class="filters"> | |
<ul> | |
<li class="active" data-filter="*">All</li> |
/** | |
* Well Hi | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
To get the list of your installed applications:
#!/bin/bash | |
### | |
### my-script — does one thing well | |
### | |
### Usage: | |
### my-script <input> <output> | |
### | |
### Options: | |
### <input> Input file to read. | |
### <output> Output file to write. Use '-' for stdout. |