Skip to content

Instantly share code, notes, and snippets.

@digitaljhelms
digitaljhelms / gist:4287848
Last active November 19, 2024 03:21
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@codemedic
codemedic / konsole-with-palette-colours.css
Last active September 24, 2024 13:25
CSS for KDE Konsole minimal, lighter, dark tabs
QTabBar,
QTabBar::tab
{
font-family: "Noto Sans";
font-size: 11px;
height: 16px;
padding: 2px;
border: 0px;
border-bottom: 3px solid palette(dark);
background-color: palette(dark);
@Underwaterr
Underwaterr / parseDate.js
Created January 13, 2017 17:43
Converts from C# DateTime object to JavaScript Date object
// Converts from C# DateTime object to JavaScript Date object
function parseDate(date) {
return new Date(parseInt(/-?\d+/.exec(date)[0]))
}