Skip to content

Instantly share code, notes, and snippets.

View J-Sorenson's full-sized avatar

James Sorenson J-Sorenson

  • Lockheed Martin, Space Company
  • California, United States
View GitHub Profile
@koleson
koleson / Communicator.md
Last active January 27, 2026 17:06
PVS6 Notes

communicator

a beginner's guide

built-in help:

communicator --help

background

@RobertKrajewski
RobertKrajewski / mattermost-dl.py
Last active April 15, 2026 07:08
This script allows to export the content (text+files) of an interactively selected Mattermost channel (public, private, group, direct message) to files. Tested on Mattermost 5.27 using Python 3.7
import os
import sqlite3
from datetime import datetime, date
from typing import Tuple, Dict, List
import getpass
from mattermostdriver import Driver
import pathlib
import json
@wanglf
wanglf / vscode-extension-offline.md
Last active May 5, 2026 06:26
Download VS Code extensions as VSIX

How to use?

  • Copy content of vsix-bookmarklet, create a bookmark in your browser.
  • Navigate to the web page of the VS Code extension you want to install.
  • Click the bookmark you just created, then click the download button.
    download
  • After download finished, rename the file extension to *.vsix.
  • In VS Code, select Install from VSIX... in the extension context menu.
    vsc
@jdowner
jdowner / input.py
Last active September 9, 2022 15:33
asyncio timed input
#!/usr/bin/env python3
"""
The MIT License (MIT)
Copyright (c) 2016 Joshua Downer
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
@jsexauer
jsexauer / DataFrameGUI.py
Last active April 27, 2026 08:09
A sophisticated GUI to interact with DataFrame objects
"""
DataFrameTable
==============
Quick and Dirty Qt app to view pandas DataFrames. Includes sorting and
filterting.
Based on qtpandas in pandas sandbox module, by Jev Kuznetsov
Usage:
@prograhammer
prograhammer / git-cheat-sheet.md
Last active November 4, 2024 02:58
Git cheat sheet for some useful Git commands and command scenarios.