Skip to content

Instantly share code, notes, and snippets.

aarch64-linux nixos-install-tools
x86_64-linux tests.nixos-functions.nixos-test
x86_64-linux nixos-install-tools
error:
… while evaluating call site
at «none»:0: (source not available)
… while calling anonymous lambda
at /ofborg/checkout/2/repo/38dca4e3aa6bca43ea96d2fcc04e8229/mr-est/ofborg-evaluator-3/pkgs/top-level/release.nix:11:1:
10| */
@alexolinux
alexolinux / aws-cli-install.sh
Created April 24, 2024 21:14
aws-cli installation
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
x86_64-darwin vimPlugins.nvim-dbee
x86_64-linux vimPlugins.nvim-dbee
aarch64-linux vimPlugins.nvim-dbee
aarch64-darwin vimPlugins.nvim-dbee
@gregalia
gregalia / code-snippets.md
Created April 24, 2024 21:12
Code Snippets

‎‎​

@alexolinux
alexolinux / terraform-install.sh
Created April 24, 2024 21:12
Install terraform by using repository
sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
touch ~/.zshrc
terraform -install-autocomplete
@sokarob
sokarob / Find a String in Another String (Contains).R
Created April 24, 2024 21:12
[Find a String in Another String (Contains)] #find #contains
# Simple Condition
str_detect(`Column`,'STRING')==T
# Condition with case handling
str_detect(toupper(`Column`),'STRING')==T
# Also works for excluding records
str_detect(`Column`,'STRING')==F
@choco-bot
choco-bot / Install.txt
Created April 24, 2024 21:12
msigna v0.10.5 - Failed - Package Tests Results
2024-04-24 20:33:40,451 6620 [DEBUG] - XmlConfiguration is now operational
2024-04-24 20:34:00,943 6620 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-04-24 20:34:01,146 6620 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco'
2024-04-24 20:34:01,398 6620 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-04-24 20:34:01,475 6620 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco'
2024-04-24 20:34:01,532 6620 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco'
2024-04-24 20:34:01,602 6620 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco'
2024-04-24 20:34:01,661 6620 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-04-24 20:34:01,800 6620 [DEBUG] - Adding new typ
package vmath
type Vector3 struct {
X, Y, Z float64
}
func NewVector3(x, y, z float64) Vector3 {
return Vector3{x, y, z}
}