Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
This file contains 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
CARDANO_TOPOLOGY=${HOME}/config/mainnet-topology.json | |
CARDANO_CONFIG=${HOME}/config/mainnet-config.json | |
CARDANO_PORT=12000 | |
export HOME TERM CARDANO_TOPOLOGY CARDANO_CONFIG CARDANO_PORT |
This file contains 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
{ | |
"name": "Test PSI Pool", | |
"description": "The pool that tests all the pools", | |
"ticker": "TPSI0", | |
"homepage": "https://testnet.psionic.link" | |
} |
This file contains 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
1.2.205.132 | |
1.6.10.90 | |
1.10.162.113 | |
1.11.201.18 | |
1.20.151.79 | |
1.22.156.146 | |
1.23.183.197 | |
1.30.218.89 | |
1.32.33.69 | |
1.32.210.109 |
This file contains 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
library(tidymodels) | |
library(modeldata) | |
data(cells) | |
set.seed(2369) | |
tr_te_split <- initial_split(cells %>% select(-case), prop = 3/4) | |
cell_train <- training(tr_te_split) | |
cell_test <- testing(tr_te_split) |
This file contains 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
#!/bin/sh | |
set -e | |
arch=`uname -m` | |
release=`uname -r` | |
show_help() { | |
cat << EOF | |
Usage: ${0##*/} [-h] [-m ARCH] [-r RELEASE] [-i IMAGE] [-d DIR] PATH |
This file contains 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
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
This file contains 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
#include <unistd.h> | |
#include <stdint.h> | |
#include <errno.h> | |
#include <arpa/inet.h> | |
int | |
read_packet(unsigned char *buffer) | |
{ | |
ssize_t nr; | |
uint16_t packet_size; |