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
using System; | |
using System.Collections.Generic; | |
using System.Configuration; | |
using System.IO; | |
using System.Linq; | |
using System.Security.Cryptography; | |
using System.Text; | |
using System.Web; | |
using System.Web.Mvc; | |
using System.Web.Script.Serialization; |
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
template <class _FwdIt, class _FwdIt2> | |
_FwdIt remove_by_index(_FwdIt first, | |
_FwdIt last, | |
_FwdIt2 sortedIndexFirst, | |
_FwdIt2 sortedIndexLast) | |
{ | |
_FwdIt copyFrom = first; | |
_FwdIt copyTo = first; | |
_FwdIt2 currentIndex = sortedIndexFirst; |
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
@echo off | |
echo This script creates issue labels for a GitHub repository | |
echo. | |
echo Please specify the GitHub Profile containing the Repository, e.g.: | |
echo https://github.com/MyProfile/MyCoolProject | |
echo ~~~~~~~~~ | |
set /p username=" Enter Profile : " | |
echo. | |
echo Please specify the GitHub password for that profile: | |
set /p password=" Enter Password : " |