- 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 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 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 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 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 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 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/' \ |
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
Section "InputClass" | |
Identifier "Framework Clickpad" | |
MatchProduct "Touchpad" | |
MatchDriver "synaptics" | |
# Enable clicking | |
Option "ClickPad" "true" | |
Option "EmulateMidButtonTime" "0 | |
Option "ClickMethod" "clickfinger" | |
Option "ClickFinger1" "1" |
NewerOlder