This file contains hidden or 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
| { | |
| // Use IntelliSense to find out which attributes exist for C# debugging | |
| // Use hover for the description of the existing attributes | |
| // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": ".NET Core Launch (web)", | |
| "type": "coreclr", | |
| "request": "launch", |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"> | |
| <xsl:key name="ISSUETYPES" match="/Report/Issues/Project/Issue" use="@TypeId"/> | |
| <xsl:output method="html" indent="no"/> | |
| <xsl:template match="/" name="TopLevelReport"> | |
| <html> | |
| <head> | |
| <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" /> | |
| <style> | |
| body {font-family: 'Open Sans', sans-serif;} |
This file contains hidden or 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 UsersController : Controller | |
| { | |
| private readonly DatabaseContext _databaseContext; | |
| public UsersController(DatabaseContext databaseContext) | |
| { | |
| _databaseContext = databaseContext; | |
| } | |
| public async Task<ActionResult<User>> Get(int id) | |
| { |
This file contains hidden or 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
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: azure-vote-back | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: | |
| app: azure-vote-back | |
| template: |
This file contains hidden or 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
| pool: | |
| name: Azure Pipelines | |
| demands: npm | |
| steps: | |
| - task: Npm@1 | |
| displayName: 'npm install' | |
| inputs: | |
| workingDir: '$(Build.SourcesDirectory)' | |
| verbose: false |
This file contains hidden or 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
| function Get-ObjectMembers { | |
| [CmdletBinding()] | |
| Param( | |
| [Parameter(Mandatory=$True, ValueFromPipeline=$True)] | |
| [PSCustomObject]$obj | |
| ) | |
| $obj | Get-Member -MemberType NoteProperty | ForEach-Object { | |
| $key = $_.Name | |
| [PSCustomObject]@{Key = $key; Value = $obj."$key"} | |
| } |
This file contains hidden or 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
| var kbServiceUrl = "https://appservice.azurewebsites.net/qnamaker/knowledgebases/id/generateAnswer"; | |
| var kbAuthKey = "authkey"; | |
| var answer = string.Empty; | |
| using (var httpClient = httpClientFactory.CreateClient()) | |
| { | |
| httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); | |
| httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("EndpointKey", kbAuthKey); | |
| var question = new JObject(); | |
| question["question"] = cmd; | |
| var questionContent = new StringContent(question.ToString(), Encoding.UTF8, "application/json"); |
This file contains hidden or 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
| //Add reference of BitlyAPI package | |
| public static async Task<string> CreateShortURL(string url) | |
| { | |
| var bitly = new BitlyAPI.Bitly(BitlyKey); | |
| var shortLink = await bitly.PostShortenLink(url); | |
| return shortLink; | |
| } |
This file contains hidden or 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
| //Add reference of Azure.AI.TextAnalytics | |
| using Azure; | |
| using Azure.AI.TextAnalytics; | |
| using Microsoft.Azure.CognitiveServices.Search.NewsSearch.Models; | |
| public static async Task<string> GetKeywords(string text) | |
| { | |
| var client = new TextAnalyticsClient(Endpoint, Credentials); | |
| var response = await client.ExtractKeyPhrasesAsync(text); | |
| var tags = new List<string>(); |
This file contains hidden or 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
| //Add reference of Tweetinvi | |
| using Tweetinvi; | |
| using Tweetinvi.Models; | |
| public static void CreateTweet(string text) | |
| { | |
| var credentials = new TwitterCredentials(TwitterConsumerKey, | |
| TwitterConsumerSecret, | |
| TwitterAccessToken, | |
| TwitterAccessTokenSecret); |