Skip to content

Instantly share code, notes, and snippets.

View Tsuser1's full-sized avatar

Tanner Tsuser1

View GitHub Profile
@Tsuser1
Tsuser1 / makeLocal.sh
Last active November 22, 2018 06:16
Simple script designed to add a new resource to the Modern LWC repository.
#!/bin/bash
# Integrate into local repository...
# Usage: ./makeLocal.sh <--file=prefix> <--groupId=...> <--artifactId=...> <--version=...>
# Example: ./makeLocal.sh --file=glib --groupId=com.glib --artifactId=glib-core --version=0.0.1-SNAPSHOT
function usage()
{
echo ">> ~*~*~*~ MakeLocal Script - © 2018 ZeusMainframe Services, LLC. ~*~*~*~ <<"
echo " Version: 1.1-alpha"
echo ""
@Tsuser1
Tsuser1 / ServerPing.cs
Created January 16, 2019 19:02 — forked from csh/ServerPing.cs
Server ping written in C#, complete with coloured console output.
using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using Newtonsoft.Json;
#if DEBUG
using System.Diagnostics;