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
{ | |
"type": "object", | |
"properties": { | |
"action": { | |
"type": "string" | |
}, | |
"number": { | |
"type": "integer" | |
}, | |
"pull_request": { |
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
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<style> | |
.dot { | |
background-color: red; | |
border-radius: 50%; | |
width: 20px; | |
height: 20px; | |
display: block; |
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
param( | |
[CmdletBinding()] | |
# Subscription ID | |
[Parameter(Position=0, Mandatory=$true)] | |
[string]$subId, | |
# DNS Resource Group Name | |
[Parameter(Position=1, Mandatory=$true)] | |
[string]$resourceGroup, |
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
trigger: | |
- master | |
name: $(Date:yyyyMMdd)$(Rev:.r) | |
pool: | |
vmImage: 'Ubuntu-16.04' | |
steps: | |
- task: CopyFiles@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
public List<Google.Apis.YouTube.v3.Data.SearchResult> LatestVideos() | |
{ | |
var youTubeService = new YouTubeService( | |
new BaseClientService.Initializer() { | |
ApplicationName = "{Project}", | |
ApiKey = "{API_key}" | |
} | |
); | |
var listRequest = youTubeService.Search.List("snippet"); |
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
drop table dbo.cs_UserToken; | |
drop table dbo.cs_UserRole; | |
drop table dbo.cs_UserLogin; | |
drop table dbo.cs_UserLocation; | |
drop table dbo.cs_UserClaim; | |
drop table dbo.cs_User; | |
drop table dbo.cs_SystemLog; | |
drop table dbo.cs_SiteHost; | |
drop table dbo.cs_Site; | |
drop table dbo.cs_Role; |
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
public class TwitterService : ITwitterService | |
{ | |
public string ObtainBearerToken(string consumerKey, string consumerSecret) | |
{ | |
var applicationAuthorization = Convert.ToBase64String(Encoding.UTF8.GetBytes(string.Format("{0}:{1}", Uri.EscapeDataString(consumerKey), Uri.EscapeDataString(consumerSecret)))); | |
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.twitter.com/oauth2/token"); | |
request.Headers.Add("Authorization", "Basic " + applicationAuthorization); | |
request.Method = "POST"; | |
request.ContentType = "application/x-www-form-urlencoded;charset=UTF-8"; |
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
public interface ITwitterService | |
{ | |
string ObtainBearerToken(string consumerKey, string consumerSecret); | |
Task<List<Tweet>> RetrieveTweetsAsync(TwitterOptions options); | |
} |
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
public class Tweet | |
{ | |
public string Username { get; set; } | |
public string Message { get; set; } | |
public string Avatar { get; set; } | |
public string Timestamp { get; set; } | |
public string Id { get; set; } | |
} |
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
public class TweetRaw | |
{ | |
public string id_str { get; set; } | |
public string text { get; set; } | |
public string created_at { get; set; } | |
public string in_reply_to_screen_name { get; set; } | |
public UserRaw user { get; set; } | |
} | |
public class UserRaw |
NewerOlder