Skip to content

Instantly share code, notes, and snippets.

View nikeee's full-sized avatar

Niklas Mollenhauer nikeee

View GitHub Profile
@nikeee
nikeee / query-api.json
Last active February 13, 2021 17:23
teamspeak-query-api
[
{
"Name": "login",
"Usages": [
"login client_login_name={username} client_login_password={password} ",
"login {username} {password}"
],
"Examples": [
{
"CommandLine": "login client_login_name=xyz client_login_password=xyz",
class BitmapExtensions
{
public static unsafe Bitmap StackBlur(this Bitmap sourceImage, int radius)
{
int width = sourceImage.Width;
int height = sourceImage.Height;
int size = radius << 1;
var destinationImage = new Bitmap(width, height);
var lockRect = new Rectangle(0, 0, width, height);