Skip to content

Instantly share code, notes, and snippets.

receiving full stream of zssd/ztest@send2zscratch into zram/zssd/ztest@send2zscratch
received 44.6K stream in 1 seconds (44.6K/sec)
receiving full stream of zssd/ztest/lxd@send2zscratch into zram/zssd/ztest/lxd@send2zscratch
received 53.1K stream in 1 seconds (53.1K/sec)
receiving full stream of zssd/ztest/lxd/snapshots@send2zscratch into zram/zssd/ztest/lxd/snapshots@send2zscratch
received 43.5K stream in 1 seconds (43.5K/sec)
receiving full stream of zssd/ztest/lxd/custom-snapshots@send2zscratch into zram/zssd/ztest/lxd/custom-snapshots@send2zscratch
received 43.5K stream in 1 seconds (43.5K/sec)
receiving full stream of zssd/ztest/lxd/containers@send2zscratch into zram/zssd/ztest/lxd/containers@send2zscratch
received 50.2K stream in 1 seconds (50.2K/sec)
receiving full stream of zssd/ztest@send2zscratch into zram/zssd/ztest@send2zscratch
received 44.6K stream in 1 seconds (44.6K/sec)
receiving full stream of zssd/ztest/lxd@send2zscratch into zram/zssd/ztest/lxd@send2zscratch
received 53.1K stream in 1 seconds (53.1K/sec)
receiving full stream of zssd/ztest/lxd/snapshots@send2zscratch into zram/zssd/ztest/lxd/snapshots@send2zscratch
received 43.5K stream in 1 seconds (43.5K/sec)
receiving full stream of zssd/ztest/lxd/custom-snapshots@send2zscratch into zram/zssd/ztest/lxd/custom-snapshots@send2zscratch
received 43.5K stream in 1 seconds (43.5K/sec)
receiving full stream of zssd/ztest/lxd/containers@send2zscratch into zram/zssd/ztest/lxd/containers@send2zscratch
received 50.2K stream in 1 seconds (50.2K/sec)
receiving full stream of zssd/ztest@send2zscratch into zram/zssd/ztest@send2zscratch
received 44.6K stream in 1 seconds (44.6K/sec)
receiving full stream of zssd/ztest/lxd@send2zscratch into zram/zssd/ztest/lxd@send2zscratch
received 53.1K stream in 1 seconds (53.1K/sec)
receiving full stream of zssd/ztest/lxd/snapshots@send2zscratch into zram/zssd/ztest/lxd/snapshots@send2zscratch
received 43.5K stream in 1 seconds (43.5K/sec)
receiving full stream of zssd/ztest/lxd/custom-snapshots@send2zscratch into zram/zssd/ztest/lxd/custom-snapshots@send2zscratch
received 43.5K stream in 1 seconds (43.5K/sec)
receiving full stream of zssd/ztest/lxd/containers@send2zscratch into zram/zssd/ztest/lxd/containers@send2zscratch
received 50.2K stream in 1 seconds (50.2K/sec)
@TerraTech
TerraTech / suite.min.css
Created September 18, 2019 07:44
DHTMLX v6.1.5 CSS unminified (GPL release)
.dhx_checkbox__input,
.dhx_radiobutton__input,
.dhx_simplevault__input,
.dhx_visually-hidden {
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height: 1px;
width: 1px;
margin: -1px;
@TerraTech
TerraTech / gist:86cdf8fa5c29df3d8ff8a2247739cb2f
Last active November 26, 2018 20:21 — forked from alh13/gist:3856276
git-merge branch A into branch B so that B becomes EXACT copy of A
git merge --no-commit other-branch && git checkout other-branch -- . && git commit
### https://twitter.com/adymitruk/status/69479850846593024
# We needed this once after some intense debugging on the staging branch. We knew
# staging was correct and wanted to merge staging -> production and be sure that
# prod branch never "won" any conflicts
@TerraTech
TerraTech / countries.sql
Created May 13, 2018 23:52 — forked from adhipg/countries.sql
Sql dump of all the Countries, Country Codes, Phone codes.
CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
@TerraTech
TerraTech / bootstrap4.html
Last active May 6, 2018 23:21
bootstrap4
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Bootply snippet - Bootstrap </title>
<meta name="generator" content="Bootply" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Bootstrap example." />
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet">
@TerraTech
TerraTech / git-branch-simplify.md
Created August 6, 2017 15:28 — forked from datagrok/git-branch-simplify.md
How to simplify the graph produced by git log --graph

Ideas for improvements to git log --graph

I will maybe someday get around to dusting off my C and making these changes myself unless someone else does it first.

Make the graph for --topo-order less wiggly

Imagine a long-running development branch periodically merges from master. The git log --graph --all --topo-order is not as simple as it could be, as of git version 1.7.10.4.

It doesn't seem like a big deal in this example, but when you're trying to follow the history trails in ASCII and you've got several different branches displayed at once, it gets difficult quickly.