Skip to content

Instantly share code, notes, and snippets.

View jc5577's full-sized avatar

JC jc5577

  • Richmond, VA
View GitHub Profile
@mkfares
mkfares / zsh-keyboard-shortucts.md
Last active April 30, 2026 16:15
Common zsh Keyboard Shortcuts on macOS Catalina

Common zsh Keyboard Shortcuts on macOS

Navigation

CTRL + A : Move the cursor to the beginning of the line
CTRL + E : Move the cursor to the end of the line
OPTION + Left Arrow : Move the cursor one word backward
OPTION + Right arrow : Move the cursor one word forward
Left Arrow : Move the cursor one character backward
Right Arrow : Move the cursor one character forward

@Kelderic
Kelderic / foobarclass.js
Last active December 28, 2018 15:53
Javascript Class Skeleton
(function(window) {
window.FooBarClass = (function() {
/***************************************/
/************* INITIALIZE **************/
/***************************************/
var Class = function( params ) {
@javierarques
javierarques / protractorAPICheatsheet.md
Last active December 9, 2025 08:09
Protractor API Cheatsheet
@JosefJezek
JosefJezek / cisco-anyconnect-profile.md
Created July 2, 2014 11:00
Cisco AnyConnect VPN Profile

Cisco AnyConnect VPN Profile

Router IOS

webvpn import svc profile profile-example usbflash0:example.xml
webvpn context ctx-example
policy group vpn-group-example
svc profile profile-example
@jogleasonjr
jogleasonjr / SlackClient.cs
Last active October 20, 2023 15:54
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
{