Skip to content

Instantly share code, notes, and snippets.

View yashodhank's full-sized avatar
🎯
Manifesting

Yashodhan yashodhank

🎯
Manifesting
View GitHub Profile
@malwareman2
malwareman2 / Cracking AOMEI Partition Assistant Server 10.md
Created August 9, 2024 22:26
Cracking AOMEI Partition Assistant Server Edition 10 (2024 Version)

Hello guys!

Today i will discuss a method to crack AOMEI Partition Assistant Server Edition version 10 using the cfg.ini file.

Dont worry, this app also supports Windows 10/11, not only Windows Server. Tested on AOMEI Partition Assistant Server Edition version 10.4.1 on Windows 10 and Windows Server 2022.

Disclaimer: this is for educational purposes only!

Step 1: Obtaining the latest AOMEI Partition Assistant Server Edition installer

To obtain the installer, you can directly download from AOMEI's official sites to make sure that the installer is not infected with malware and you can get the most up to date version.

@yashodhank
yashodhank / 1.How-to-Use-Grabovoi-Numbers-Codes.md
Last active May 20, 2024 07:20
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.

@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 November 6, 2024 10:47
My Docker Swarm Architecture

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