This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gare aux changements historiques, car ils vont affecter les identifiants des commits et pourraient affecter des gens qui travaillent sur leur branches. | |
git revert (sécuritaire. Ne touche pas aux commits existants, créé un nouveau commit qui ramène à un état précédent.) | |
git cherry-pick (pas sécuritaire. Permet de commiter certains fichiers dans le sens contraire du merge) | |
git rebase (pas sécuritaire. Fusionne des commits) | |
git reset (pas sécuritaire. Permet de reculer en arrière comme revert, mais perd les derniers commits.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pour le lab 1! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pour le lab 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dir bin -Directory -recurse | rd -Recurse -Force | |
dir obj -Directory -recurse | rd -Recurse -Force | |
dir packages -Directory -recurse | rd -Recurse -Force | |
dir .vs -Directory -Hidden -recurse | rd -Recurse -Force | |
dir *.mdf -file -recusre | del -force | |
dir *.ldf -file -recusre | del -force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void Main(string[] args) | |
{ | |
HttpClient client = new HttpClient(); | |
client.BaseAddress =new Uri("http://localhost:52516/api/abonnement"); | |
client.DefaultRequestHeaders.Accept.Clear(); | |
client.DefaultRequestHeaders.Accept.Add( | |
new MediaTypeWithQualityHeaderValue("application/json")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pour le lab 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pour le lab 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference path="jquery-3.1.1.js" /> | |
$(function () { | |
$("#btnEmployes").click(function () { | |
var httpRequest = new XMLHttpRequest(); | |
httpRequest.addEventListener("readystatechange", | |
function () { | |
if (httpRequest.readyState === | |
XMLHttpRequest.DONE) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://raw.githubusercontent.com/jquery/jquery-ui/master/ui/i18n/datepicker-fr-CA.js |
OlderNewer