Skip to content

Instantly share code, notes, and snippets.

View crazyuploader's full-sized avatar
📡
Setting up base camp on Mars!

Jugal Kishore crazyuploader

📡
Setting up base camp on Mars!
View GitHub Profile
@crazyuploader
crazyuploader / speedtest-servers.csv
Created March 24, 2026 18:45 — forked from stas-sl/speedtest-servers.csv
List of speedtest servers
We can't make this file beautiful and searchable because it's too large.
id,url,lat,lon,name,country,cc,sponsor,isp_id,host,continent,subregion
252,http://speedtest1.tigo.net.gt:8080/speedtest/upload.php,14.6133,-90.5353,Guatemala,Guatemala,GT,Tigo Guatemala,234,speedtest1.tigo.net.gt:8080,North America,Central America
265,http://speedtest.perfectum.uz:8080/speedtest/upload.php,41.2667,69.2167,Tashkent,Uzbekistan,UZ,Perfectum,300442,speedtest.perfectum.uz.prod.hosts.ooklaserver.net:8080,Asia,Central Asia
285,http://sp1.scinternet.net:8080/speedtest/upload.php,37.6826,-113.0744,"Cedar City, UT",United States of America,US,SCBroadband,14877,sp1.scinternet.net.prod.hosts.ooklaserver.net:8080,North America,Northern America
338,http://speedtest.skynet.net.pl:8080/speedtest/upload.php,52.2323,21.0084,Warsaw,Poland,PL,Skynet DC,169609,speedtest.skynet.net.pl.prod.hosts.ooklaserver.net:8080,Europe,Eastern Europe
395,http://speedtest.unidata.it:8080/speedtest/upload.php,41.9,12.5,Rome,Italy,IT,Unidata S.p.A.,10989,speedtest.unidata.it.prod.hosts.ooklaserver.net:8080,Europe,Southern Europe
@crazyuploader
crazyuploader / CLAUDE.md
Created January 16, 2026 08:27 — forked from ctoth/CLAUDE.md
My Current global CLAUDE.md

Working with Q — Coding Agent Protocol

What This Is

Applied rationality for a coding agent. Defensive epistemology: minimize false beliefs, catch errors early, avoid compounding mistakes.

This is correct for code, where:

  • Reality has hard edges (the compiler doesn't care about your intent)
  • Mistakes compound (a wrong assumption propagates through everything built on it)
  • The cost of being wrong exceeds the cost of being slow
@crazyuploader
crazyuploader / CLAUDE.md
Created January 3, 2026 20:21 — forked from minimaxir/CLAUDE.md
Rust CLAUDE.md (20260101)

Agent Guidelines for Rust Code Quality

This document provides guidelines for maintaining high-quality Rust code. These rules MUST be followed by all AI coding agents and contributors.

Your Core Principles

All code you write MUST be fully optimized.

"Fully optimized" includes:

@crazyuploader
crazyuploader / fix.md
Created December 15, 2025 17:19 — forked from crypt0rr/fix.md
Intel e1000e fix - Proxmox

Fix Intel e1000e error

Please note - you may want to validate whether the options used affect your setup.

Create a new service file.

nano /etc/systemd/system/disable-offloading.service
@crazyuploader
crazyuploader / top-brew-packages.txt
Created September 2, 2025 05:28 — forked from pmkay/top-brew-packages.txt
Top homebrew packages
node: Platform built on V8 to build network applications
git: Distributed revision control system
wget: Internet file retriever
yarn: JavaScript package manager
python3: Interpreted, interactive, object-oriented programming language
coreutils: GNU File, Shell, and Text utilities
pkg-config: Manage compile and link flags for libraries
chromedriver: Tool for automated testing of webapps across many browsers
awscli: Official Amazon AWS command-line interface
automake: Tool for generating GNU Standards-compliant Makefiles
@crazyuploader
crazyuploader / nvidia.md
Created August 21, 2024 16:49 — forked from bitsurgeon/nvidia.md
install Nvidia driver on Ubuntu with Secure Boot

Install Nvidia Driver on Ubuntu 18.04.3

Secure Boot

This section applies to machines with Secure Boot, such as ThinkPad.

  1. Before installation, switch to "Discrete Graphics" in BIOS, if both Intel and Nvidia graphics are present.
  2. During installation, make sure to select the "Install third-party software for graphics and Wi-Fi hardware and addition media formats" in "Updates and other software" screen.
  3. Select "Configure Secure Boot", and set password.
  4. Continue Ubuntu installation as normal.
@crazyuploader
crazyuploader / ansible_local_playbooks.md
Created August 11, 2024 12:01 — forked from alces/ansible_local_playbooks.md
How to run an Ansible playbook locally
  • using Ansible command line:
ansible-playbook --connection=local 127.0.0.1 playbook.yml
  • using inventory:
127.0.0.1 ansible_connection=local
@crazyuploader
crazyuploader / aria2.conf
Created March 23, 2024 09:25 — forked from qzm/aria2.conf
Best aria2 Config
### Basic ###
# The directory to store the downloaded file.
dir=${HOME}/Downloads
# Downloads the URIs listed in FILE.
input-file=${HOME}/.aria2/aria2.session
# Save error/unfinished downloads to FILE on exit.
save-session=${HOME}/.aria2/aria2.session
# Save error/unfinished downloads to a file specified by --save-session option every SEC seconds. If 0 is given, file will be saved only when aria2 exits. Default: 0
save-session-interval=60
# Set the maximum number of parallel downloads for every queue item. See also the --split option. Default: 5
@crazyuploader
crazyuploader / jq-cheetsheet.md
Created November 1, 2022 18:26 — forked from olih/jq-cheetsheet.md
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@crazyuploader
crazyuploader / myself.py
Last active July 13, 2022 05:17
Myself in Python3
#/usr/bin/env python3
# Program to represent myself
class myself():
def __init__(self):
self.name = "Jugal Kishore"
self.username = "crazyuploader"
self.occupation = "Software Developer/DevOps Engineer"
self.location = "Agra, India"