Skip to content

Instantly share code, notes, and snippets.

View jasper22's full-sized avatar
💭
I may be slow to respond.

Alex jasper22

💭
I may be slow to respond.
View GitHub Profile
@jasper22
jasper22 / New-PSSessionLogger.ps1
Created January 30, 2021 17:50 — forked from jborean93/New-PSSessionLogger.ps1
Log PSRP packets to a file and subsequently parse them into rich PSObjects
# Copyright: (c) 2020, Jordan Borean (@jborean93) <[email protected]>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)
Add-Type -TypeDefinition @'
using System;
using System.IO;
using System.IO.Pipes;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using System.Threading;
@jasper22
jasper22 / curl.md
Created August 28, 2019 19:45 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@jasper22
jasper22 / rxjs-diagrams.md
Created January 11, 2018 12:52 — forked from PCreations/rxjs-diagrams.md
Super Intuitive Interactive Diagrams to learn combining RxJS sequences by Max NgWizard K
@jasper22
jasper22 / rxjs_operators_by_example.md
Last active December 11, 2017 10:07 — forked from btroncone/rxjs_operators_by_example.md
RxJS 5 Operators By Example
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using GalaSoft.MvvmLight.Messaging;
using GTWin8.Messages;
using GTWin8.Ui;
using Windows.UI.Xaml;