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
El Evangelio de Tux, desenterrado. | |
__________________________________________________________________________________________ | |
Cada generación tiene una mitología. Cada milenio tiene un día del | |
Juicio Final. | |
Cada leyenda lleva el nudo de la distorsión hasta que el orador se | |
funde. Un grupo de arqueólogos en la Universidad de Helsinki descubrieron | |
hoy lo que pueden ser las escrituras más antiguas conocidas del Culto de |
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
Gospel of Tux unearthed | |
Gospel of Tux unearthed | |
Every generation has a mythology. Every millenium has a doomsday cult. Every | |
legend gets the distortion knob wound up until the speaker melts. Archeologists at | |
the University of Helsinki today uncovered what could be the earliest known | |
writings from the Cult of Tux, a fanatical religious sect that flourished during the | |
early Silicon Age, around the dawn of the third millenium AD... | |
The Gospel of Tux (v1.0) |
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
For troubleshooting, two things to first try: | |
run `git config --global gpg.program gpg2`, to make sure git uses gpg2 and not gpg | |
run `echo "test" | gpg2 --clearsign`, to make sure gpg2 itself is working | |
If that all looks all right, one next thing to try: | |
run `brew install pinentry` to ensure you have a good tool installed for passphrase entry | |
If after that install and you re-try git commit and still get the "failed to sign the data" error: | |
run `gpgconf --kill gpg-agent` to kill any running agent that might be hung |
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
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
username = pksunkara | |
[core] | |
editor = nvim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
pager = delta | |
[sendemail] | |
smtpencryption = tls |
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
L'Évangile de Tux, dévoilé | |
L'histoire de chaque génération est façonnée par une mythologie. Chaque millénaire | |
abrite un culte de l'apocalypse. Chaque légende est déformée jusqu'à ce que le | |
haut-parleur fonde. Aujourd'hui, des archéologues de l'Université de Helsinki ont | |
mis au jour ce qui pourrait être les premiers écrits connus du Culte de Tux, une | |
secte religieuse fanatique qui a prospéré à l'aube de l'Ère du Silicium, aux | |
alentours du début du troisième millénaire après J.-C... | |
L'Évangile de Tux (v1.0) |
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/bash | |
#------------------------ | |
# By Felipe Alfonso González | |
# Computer Science Engineer | |
# github.com/felipealfonsog | |
# [email protected] | |
#------------------------ | |
# Follow this commands before executing: | |
# chmod +x install_yay.sh | |
# ./install_yay.sh |
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 | |
#================================================= | |
# https://github.com/P3TERX/ca-certificates.crt | |
# Description: Update ca-certificates.crt | |
# Version: 1.1 | |
# Lisence: MIT | |
# Author: P3TERX | |
# Blog: https://p3terx.com | |
#================================================= | |
# This package should be installed in: /etc/ssl/certs |
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
## | |
## Bundle of CA Root Certificates | |
## | |
## Certificate data from Mozilla as of: Mon Mar 11 15:15:21 2024 GMT | |
## | |
## This is a bundle of X.509 certificates of public Certificate Authorities | |
## (CA). These were automatically extracted from Mozilla's root certificates | |
## file (certdata.txt). This file can be found in the mozilla source tree: | |
## https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt | |
## |
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
## | |
## Bundle of CA Root Certificates | |
## | |
## Certificate data from Mozilla as of: Thu Dec 9 22:21:11 2021 GMT | |
## | |
## This is a bundle of X.509 certificates of public Certificate Authorities | |
## (CA). These were automatically extracted from Mozilla's root certificates | |
## file (certdata.txt). This file can be found in the mozilla source tree: | |
## https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt | |
## |
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/bash | |
# Action Script | |
# Author: Felipe Alfonso González | |
# GitHub: github.com/felipealfonsog | |
# Contact: [email protected] | |
# License: BSD 3-Clause License | |
# Function to display the options menu | |
display_menu() { |