Skip to content

Instantly share code, notes, and snippets.

View fvandillen's full-sized avatar
🌥️
In the cloud

Florian van Dillen fvandillen

🌥️
In the cloud
View GitHub Profile
@fvandillen
fvandillen / 0_reuse_code.js
Created June 28, 2017 08:47
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@fvandillen
fvandillen / SlackClient.cs
Created March 7, 2017 10:25
Slack client for incoming webhooks
/// <summary>
/// Simple client for Stack using incoming webhooks.
/// </summary>
public class SlackClient
{
private readonly Uri _uri;
private readonly Encoding _encoding = Encoding.UTF8;
private readonly string _username;
private readonly string _channel;
private readonly string _iconUrl;