This gist has been superceedes by this small talon cheatsheet suitable for learning beginner commands.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A simple shell expression for running Lenna's Inception | |
# Put this in the same directory as the game and run `nix develop` | |
{ | |
description = "FHS setup for Lenna's Inception"; | |
outputs = { self, nixpkgs }: | |
let | |
pkgs = import nixpkgs { inherit system; }; | |
system = "x86_64-linux"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This can be built with nixos-rebuild --flake .#myhost build | |
{ | |
description = "the simplest flake for nixos-rebuild"; | |
inputs = { | |
nixpkgs = { | |
# Using the nixos-unstable branch specifically, which is the | |
# closest you can get to following the equivalent channel with flakes. | |
url = "github:NixOS/nixpkgs/nixos-unstable"; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ip | first_seen_utc | last_seen_utc | country | asn | |
---|---|---|---|---|---|
1.254.66.188 | 2021-12-23 03:26 | 2021-12-23 03:26 | KR | SK Broadband Co Ltd | |
100.27.42.242 | 2021-12-23 20:39 | 2021-12-23 20:39 | US | AMAZON-AES | |
100.27.42.243 | 2022-01-05 03:08 | 2022-01-05 03:08 | US | AMAZON-AES | |
102.130.113.9 | 2021-12-14 18:43 | 2021-12-14 18:43 | ZA | Host-Africa-AS | |
103.1.212.84 | 2021-12-26 17:21 | 2021-12-27 04:21 | AU | GSL Networks Pty LTD | |
103.1.212.85 | 2021-12-24 22:14 | 2021-12-26 07:34 | AU | GSL Networks Pty LTD | |
103.1.212.86 | 2021-12-27 05:32 | 2021-12-27 05:32 | AU | GSL Networks Pty LTD | |
103.106.243.120 | 2021-12-24 04:51 | 2021-12-24 04:51 | BD | Saddam Hossain ta Asian Network | |
103.107.196.149 | 2021-12-15 19:12 | 2021-12-15 19:12 | AU | GSL Networks Pty LTD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs ? import <nixpkgs> {} }: | |
let | |
mach-nix = import (builtins.fetchGit { | |
url = "https://github.com/DavHau/mach-nix"; | |
ref = "refs/tags/3.3.0"; | |
}) { | |
pkgs = pkgs; | |
python = "python37"; | |
pypiDataRev = "48f4b1841d11673822d3f42178480378d1a07a90"; # 2021-09-27T20:16:37Z |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/awk -f | |
# This program is a copy of guff, a plot device. https://github.com/silentbicycle/guff | |
# My copy here is written in awk instead of C, has no compelling benefit. | |
# Public domain. @thingskatedid | |
# Run as awk -v x=xyz ... or env variables for stuff? | |
# Assumptions: the data is evenly spaced along the x-axis | |
# TODO: moving average |
How to get Pull Requests data using Github in the browser, or using the API to allow for automating reporting or building in values into a website.
- GitHub GQL API: https://developer.github.com/v4/
- Explorer: https://developer.github.com/v4/explorer/
- Github community topics - these were used to understand the syntax needed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v5.16; | |
use warnings; | |
package HTTP::Tiny::nc; | |
use parent 'HTTP::Tiny'; | |
our $VERSION = v0.0.3; | |
# Copyright (c) 2019-2023 Andrew Hewus Fresh <[email protected]> | |
# | |
# Permission to use, copy, modify, and distribute this software for any |
NewerOlder