- Meet and make friends with other traders in the Monero community.
- To have a channel that fosters learning, analysis, and general discussion related to the Monero Markets.
- Make predictions, test, and verify them. Improve your market analysis skills.
- Share interesting news, How-Tos, RFCs, etc.
- To achieve a high signal to noise ratio of content.
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 | |
set -eu -o pipefail | |
# Find duplicates based on the root name, and loop through them | |
find . -type f -name '*.zip' -printf '%f\n' | cut -d'(' -f1 | sort | uniq -d | while read -r line; do | |
# Prompt the user for which file they want to keep from all the duplicates | |
# Note: must account for titles that share the same root name | |
# e.g. 'Foobar' and 'Foobar 2' |
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
provider "azurerm" {} | |
resource "azurerm_resource_group" "example" { | |
name = "example" | |
location = "North Central US" | |
} | |
resource "azurerm_virtual_network" "example" { | |
name = "example" | |
address_space = [ |
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
package main | |
import ( | |
"context" | |
"fmt" | |
"io" | |
"net/url" | |
"os" | |
"strings" |
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
{{- define "toPrettyYaml" -}} | |
{{- $out := "" -}} | |
{{- range $k, $v := . -}} | |
{{- if not (empty $v) -}} | |
{{- /* Walk any maps */ -}} | |
{{- if kindIs "map" $v -}} | |
{{- $out = (print $out | |
$k ":\n" | |
(include "toPrettyYaml" $v | indent 2) |
This document proposes new standards for the L.G.T.M. observability stack helm charts.
prometheus-community
has a lot of charts, but all the multi-charts center around the operator.
I propose getting them involved in this effort and decompose the existing charts.
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 | |
if [ $# -ne 1 ]; then | |
cat >&2 <<-USAGE | |
Usage: $0 <namespace>/<secret> | |
Example: $0 cert-manager/sh.helm.release.v1.cert-manager.v1 | |
USAGE | |
exit 1 | |
fi |
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
FROM opensuse/tumbleweed:latest | |
RUN set -ex && \ | |
rpm --import https://dl.google.com/linux/linux_signing_key.pub && \ | |
zypper addrepo http://dl.google.com/linux/chrome/rpm/stable/x86_64 google-chrome && \ | |
rpm --import https://packages.microsoft.com/keys/microsoft.asc && \ | |
zypper addrepo https://packages.microsoft.com/yumrepos/vscode vscode && \ | |
zypper refresh && \ | |
zypper install --no-confirm \ | |
binutils \ |
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
#!/bin/sh | |
# Example usage: | |
# cat hosts/*/.bash_history | sort-timestamp-history > merged_history | |
exec \ | |
sed \ | |
-e '/^$/d' \ | |
-e '/^#/N' \ | |
-e '/^#/!s/^/#0\n/' \ |
NewerOlder