Skip to content

Instantly share code, notes, and snippets.

View thiagoloureiro's full-sized avatar
🚗
Coding

Thiago Loureiro thiagoloureiro

🚗
Coding
View GitHub Profile
@thiagoloureiro
thiagoloureiro / git-message-prefixes.md
Created December 28, 2022 10:59 — forked from iamskok/git-message-prefixes.md
List of git commit message prefixes

Git commit message prefixes

  • [RFR] - Code refactoring
  • [WIP] - Work in progress
  • [FIX] - Bug fix
  • [FTR] - New feature
  • [SCR] - Security issue fix
  • [CLP] - Changes that do not alter functionality, but improve code style and readability.
  • [CRO] - Content Rate Optimization
  • [TST] - Add test suite for slider component
@thiagoloureiro
thiagoloureiro / GORILLA.BAS
Created August 7, 2018 16:15 — forked from caffo/GORILLA.BAS
QBasic Gorillas
' Q B a s i c G o r i l l a s
'
' Copyright (C) IBM Corporation 1991
'
' Your mission is to hit your opponent with the exploding banana
@thiagoloureiro
thiagoloureiro / SlackClient.cs
Created July 5, 2018 19:07 — forked from jogleasonjr/SlackClient.cs
A simple C# class to post messages to a Slack channel. You must have the Incoming WebHooks Integration enabled. This class uses the Newtonsoft Json.NET serializer available via NuGet. Scroll down for an example test method and a LinqPad snippet. Enjoy!
using Newtonsoft.Json;
using System;
using System.Collections.Specialized;
using System.Net;
using System.Text;
//A simple C# class to post messages to a Slack channel
//Note: This class uses the Newtonsoft Json.NET serializer available via NuGet
public class SlackClient
{