I hereby claim:
- I am jaromil on github.
- I am jaromil (https://keybase.io/jaromil) on keybase.
- I have a public key whose fingerprint is 6113 D89C A825 C5CE DD02 C872 73B3 5DA5 4ACB 7D10
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# RNGSEED="hex:00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | |
#################### | |
# common script init | |
if ! test -r ../utils.sh; then | |
echo "run executable from its own directory: $0"; exit 1; fi | |
. ../utils.sh | |
Z="`detect_zenroom_path` `detect_zenroom_conf`" |
#!/usr/bin/env bash | |
# minimalistic tiling manager based on golden ratio | |
# uses only zsh, awk and wmctrl | |
# Copyleft (C) 2020-2021 by Jaromil | |
# | |
# usage: tile [ center | left | right | top ] | |
# | |
# geometry of tiles: | |
# ________________ | |
# | top | |
#!/bin/zsh | |
# Shell script to convert a VCard to a CSV to import in Outlook | |
# | |
# Requirements: Zsh, GNU AWK and unix2dos | |
# | |
# Usage: | |
# cat Contacts.vcf | ./vcard2outlook.sh | unix2dos > Contacts.csv | |
# | |
# * Copyright (C) 2021 Dyne.org foundation |
{"tarots":["The Fool","The Magician","The High Priestess","The Empress","The Emperor","The Hierophant","The Lovers","The Chariot","Strength","The Hermit","Wheel of Fortune","Justice","The Hanged Man","Death","Temperance","The Devil","The Tower","The Star","The Moon","The Sun","Judgment","The World","Ace of Wands","Two of Wands","Three of Wands","Four of Wands","Five of Wands","Six of Wands","Seven of Wands","Eight of Wands","Nine of Wands","Ten of Wands","Page of Wands","Knight of Wands","Queen of Wands","King of Wands","Ace of Cups","Two of Cups","Three of Cups","Four of Cups","Five of Cups","Six of Cups","Seven of Cups","Eight of Cups","Nine of Cups","Ten of Cups","Page of Cups","Knight of Cups","Queen of Cups","King of Cups","Ace of Swords","Two of Swords","Three of Swords","Four of Swords","Five of Swords","Six of Swords","Seven of Swords","Eight of Swords","Nine of Swords","Ten of Swords","Page of Swords","Knight of Swords","Queen of Swords","King of Swords","Ace of Pentacles","Two of Pentacles","Three o |
Devuan 4.0 "Chimaera" has been released, ranked 2nd GNU/Linux distribution worldwide by Distrowatch user ratings, see: https://distrowatch.com/dwres.php?resource=ranking
Here an overview in various languages and comment threads:
--- | |
- name: INSTALL DEVUAN | |
hosts: all | |
# become: yes | |
tasks: | |
- name: Install Devuan keyring | |
shell: >- | |
curl https://pkgmaster.devuan.org/devuan/pool/main/d/devuan-keyring/devuan-keyring_2017.10.03_all.deb -o devuankeys.deb && dpkg -i devuankeys.deb | |
- name: Install sysvinit |
import networkx as nx | |
import random | |
# Set the number of resources, events, and agents | |
num_resources = 80 | |
num_events = 30 | |
num_agents = 10 | |
# Initialize the graph | |
G = nx.Graph() |
Needs OpenSSL 3 and openquantum-safe provider installed (oqs-provider) | |
OpenSSL3 needs a custom configuration else is incapable of finding the provider | |
Generation script: | |
```sh | |
#!/bin/sh | |
openssl genpkey -algorithm mldsa44 -out mldsa_private.pem |