Skip to content

Instantly share code, notes, and snippets.

View vxzry's full-sized avatar
🏠
Working from home

golo vxzry

🏠
Working from home
View GitHub Profile
@paladique
paladique / index.md
Last active May 19, 2021 03:10
Introduction to Chatbots

Introduction to Chatbots

Summary

  • Bots are apps that perform specific tasks
  • Chatbots are bots that respond to voice or text
  • The Microsoft Bot Framework allows you to build a bot from beginning to end
  • Natural Language Processing (NLP) is a Machine Learning process that allows humans and computers to understand each other
  • The LUIS platform helps you build your bots in a natural language that your users will understand
using Newtonsoft.Json;
using System;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Threading.Tasks;
/// <summary>
/// A generic wrapper class to REST API calls
/// </summary>
/// <typeparam name="T"></typeparam>
@angeloPereyra
angeloPereyra / SmartID.cs
Created March 16, 2017 14:38
c# class for what we call in our college as "smart counter". see also cyclic rotation
using System;
namespace OVRMP
{
/// <summary>
/// Represents a SmartID object.
/// Able to auto-increment ids with letters and digits
/// </summary>
public class SmartID
{
@jpv001
jpv001 / gist:f955d5786814aa42c5c0
Created July 25, 2014 00:03
Api Calling code - Web API
async void Main()
{
var client = new ApiClient("http://localhost/");
var products = await client.Get<dynamic>("products", MediaType.Json);
}
public class MediaFormatterTypes
{
public MediaTypeFormatter MediaTypeFormatter { get; set; }
public string ContentTypeHeaderValue { get; set; }