- An Github account
- Existing repository in Github
First if you do not have a .ssh folder you can create one in this path (You can choose the folder that you want)
exp : c/Users/Username/.ssh
Then open terminal an run:
$ ssh-keygen keyname
## Follow this link for further updates to Github Desktop for Ubuntu https://github.com/shiftkey/desktop/releases/latest | |
# UPDATE (2021-10-18): Thanks to Amin Yahyaabadi's message, the updated code is as follows | |
sudo wget https://github.com/shiftkey/desktop/releases/download/release-2.9.3-linux3/GitHubDesktop-linux-2.9.3-linux3.deb | |
### Uncomment below line if you have not installed gdebi-core before | |
# sudo apt-get install gdebi-core | |
sudo gdebi GitHubDesktop-linux-2.9.3-linux3.deb | |
# UPDATE (2021-03-05): Thanks to PaoloRanzi81's comment, the updated code is as follows https://gist.github.com/PaoloRanzi81 |
# Path to your oh-my-zsh configuration. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
#export ZSH_THEME="robbyrussell" | |
export ZSH_THEME="zanshin" |
//http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript | |
Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15); |
interface FourLegs{ | |
readonly fourLegs: true; | |
} | |
interface Black{ | |
readonly black: true; | |
} | |
class Animals { | |
moew: boolean; |
var data = { | |
dreamTeam: { | |
1: { name: 'Jerôme' }, | |
2: { name: 'Mathieu' }, | |
3: { name: 'Julien' }, | |
4: { name: 'Etienne' } | |
}, | |
columns: { | |
1: { title: 'todo', order: 1 }, |
/( [A]{1}. )/ | |
/(\d{2}\/\d{2}\/\d{4})/ | |
/( \d{1}\/\d{2})/ | |
/([a-zA-Z]{14,})/ | |
/([a-zA-Z]{5}:\/\/w{3}.[a-zA-Z]{4}.[a-zA-Z]{3}\/[a-zA-Z]{5}\/t{2}[\d]{7})/ |
--SELECTIONNER DES DONNEES DANS UNE BASE DE DONNEES | |
SELECT * FROM movie; | |
SELECT name FROM movie; | |
SELECT id, poster FROM movie; | |
SELECT poster, comment as movie_comment FROM movie; | |
--INSERER DES DONNER DANS UNE BASE DE DONNEES | |
INSERT INTO movie VALUES (null, "Full Metal Jacket", "https://en.wikipedia.org/wiki/Full_Metal_Jacket", "Full Metal Jacket is a 1987 war film directed, co-written, and produced by Stanley Kubrick and starring Matthew Modine, R. Lee Ermey, Vincent D'Onofrio and Adam Baldwin. The screenplay by Kubrick, Michael Herr, and Gustav Hasford was based on Hasford's novel The Short-Timers (1979). The storyline follows a platoon of U.S."); | |
INSERT INTO movie (name, poster, comment) VALUES ("La Naissance d'un empire", "https://fr.wikipedia.org/wiki/300_:_La_Naissance_d%27un_empire", "300 : La Naissance d'un empire (300: Rise of an Empire) est un péplum américain de Noam Murro, sorti au cinéma le 5 mars 2014. Il s'agit à la fois d'une préquelle et d'une suite de 300, l'action se passant à la fois avant |
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Base Quest</title> | |
</head> | |
<body> | |
<script src="script.js"></script> | |
</body> | |
</html> |