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
# 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
# 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"; |
OlderNewer