Skip to content

Instantly share code, notes, and snippets.

@weisk
weisk / fetch-api-examples.md
Created December 23, 2020 01:52 — forked from justsml/fetch-api-examples.md
JavaScript Fetch API Examples
@weisk
weisk / multiple-repository-and-identities-git-configuration.md
Created December 17, 2020 07:43 — forked from bgauduch/multiple-repository-and-identities-git-configuration.md
Git config with multiple identities and multiple repositories

Setup multiple git identities & git user informations

/!\ 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 😉

Setup multiple git ssh identities for git

  • 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:
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

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.

About

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

@weisk
weisk / fffff.gif
Last active December 5, 2020 15:20
Eye phone
fffff.gif
@weisk
weisk / index.html
Created October 23, 2020 13:44
Portfolio Filter Gallery
<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>
@weisk
weisk / dabblet.css
Created September 21, 2020 16:55
Well Hi
/**
* Well Hi
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@weisk
weisk / android-backup-apk-and-datas.md
Created August 8, 2020 09:16 — forked from AnatomicJC/android-backup-apk-and-datas.md
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

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.

Fetch application APK

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.