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/env bash | |
| fdsta_main () { | |
| local num=${1:-5} | |
| local user=${2:-$USER} | |
| fds "$num" "$user" | |
| } | |
| fds() { |
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/env bash | |
| app=( python3 module_design_analytics.py ) | |
| root_dir=/Users/pha212/Documents/ExtFin-EFS/smoke | |
| main () { | |
| local dir | |
| local result | |
| kill_process || true |
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
| linters-settings: | |
| errcheck: | |
| check-type-assertions: true | |
| goconst: | |
| min-len: 2 | |
| min-occurrences: 3 | |
| gocritic: | |
| enabled-tags: | |
| - diagnostic | |
| - experimental |
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
| { | |
| description = "URMA Nix development environment"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs"; | |
| flake-utils.url = "github:numtide/flake-utils"; | |
| }; | |
| outputs = { self, nixpkgs, flake-utils }: | |
| flake-utils.lib.eachDefaultSystem (system: |
OlderNewer