Skip to content

Instantly share code, notes, and snippets.

View yashodhank's full-sized avatar
🎯
Manifesting

Yashodhan yashodhank

🎯
Manifesting
View GitHub Profile
@yashodhank
yashodhank / 1.How-to-Use-Grabovoi-Numbers-Codes.md
Last active June 15, 2026 00:17
Instructions on How to Use Grabovoi Numbers / Codes

Instructions on How to Use Grabovoi Numbers

Grabovoi (ग्राबोवोई) numbers, also known as "Grabovoi codes," are sequences of numbers developed by the Russian mathematician and psychic Grigori Grabovoi. They are intended to be used for healing and manifesting specific outcomes based on numerology and the belief in the mystical power of numbers.

English Instructions:

Grabovoi numbers are sequences that are used with the intention to manifest specific outcomes in various areas of life, such as health, finance, and relationships. Here's a simple guide on how to use them:

  1. Identify Your Goal: Decide what you want to improve or heal. This could be anything from better health, financial prosperity, to finding love.

  2. Choose the Right Number: Each number sequence corresponds to a specific goal. Refer to the table of Grabovoi numbers to find the one that suits your need.

@jesussuarz
jesussuarz / whmcs.md
Last active June 12, 2026 02:15
Question forum for whmcs bypass with full updates

Hello, welcome to this project. The purpose of this project is to track updates from the whmcsfull.com site and ensure the latest versions are made available.

I want to emphasize that this project is for educational purposes only. I do not intend to cause any inconvenience or engage in any illegal activities. My sole intention is to provide others with an opportunity to test the software. If you have the means to purchase the software officially, I encourage you to do so.

Feel free to share your ideas or questions; I will respond as soon as possible.

Best regards.

@Arturro43
Arturro43 / docker-compose.yml
Last active December 31, 2023 16:36
Send instance [docker-compose]
version: "3"
services:
nginx-proxy:
container_name: nginx-proxy
image: 'jwilder/nginx-proxy:alpine'
restart: always
ports:
- 'UNUSEDPORT:80' #change this
- 'UNUSEDPORT:443' #change this
@corncobble
corncobble / tasks.yml
Last active January 9, 2024 13:03
Proxmox: Create VM from cloud-init image using Ansible
---
- name: Download cloud-init image
register: image
ansible.builtin.get_url:
url: "{{ image_url }}"
dest: /tmp
mode: '0644'
force: true
- name: Install pip
// @OnlyCurrentDoc
const BearerTokenKey = 'twitterBearerToken';
function onOpen() {
SpreadsheetApp
.getUi()
.createMenu('Twitter')
.addItem('Set Bearer token', 'helpers.requestBearerToken')
.addItem('Sign out', 'helpers.logout')
@rgpower
rgpower / cloud-init-goog-mfa.yaml
Created April 23, 2022 18:36
Google Authenticator MFA for Ubuntu 22.04 LTS SSH: cloud-init
#cloud-config
locale: en_CA.UTF-8
locale_configfile: /etc/default/locale
package_update: true
package_upgrade: true
packages:
- ca-certificates
- libpam-google-authenticator
write_files:
- path: /etc/ssh/sshd_config.d/10-google-authenticator.conf
@revant
revant / README.md
Last active July 20, 2024 15:32
ERPNext on Docker Swarm
@scyto
scyto / docker-swarm-architecture.md
Last active June 2, 2026 01:37
My Docker Swarm Architecture

This (and related gists) captures how i created my docker swarm architecture. This is intended mostly for my own notes incase i need to re-creeate anything later! As such expect some typos and possibly even an error...

Installation Step-by-Step

Each major task has its own gist, this is to help with maitainability long term.

  1. Install Debian VM for each docker host
  2. install Docker
  3. Configure Docker Swarm
  4. Install Portainer
  5. Install KeepaliveD
  6. Using VirtioFS backed by CephFS for bind mounts (migrating from glsuterFS - WIP)

Using keepalived for node ingress and dns relaibility

This assumes you have installed a docker swarm

Introduction

When one has a docker swarm a container running on any node in the swarm can be accesed using any IP address of any swarm memeber.

For example if you had a single web server running on port 80, on one node of a swarm you could access the web server with any of the following IP addresses:

  • server1-ip:80
  • server2-ip:80
@aleksul
aleksul / script.sh
Created December 13, 2021 13:48
Proxmox create Ubuntu 20.04 template
# download ubuntu-cloud image
# NOTE: ubuntu-server won't properly work with cloud-init for some reason
wget https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img
# NOTE: no need for sudo because we already login as root
# install image customization tool
apt update -y && apt install libguestfs-tools -y
# install qemu-guest-agent inside of image