Skip to content

Instantly share code, notes, and snippets.

@gali1
gali1 / js_greasemokey.txt
Created September 27, 2024 13:03 — forked from github-shakti/js_greasemokey.txt
Code : Captcha Bypass Script (Grease Monkey Version)
// ==UserScript==
// @name PNR Captcha Bypass
// @namespace http://www.indianrail.gov.in/pnr_Enq.html
// @description Autofill Captcha on Indian Railways Website for PNR Enquiry
// @include http://www.indianrail.gov.in/pnr_Enq.html
// @version 1
// @grant none
// ==/UserScript==
window.addEventListener('load', function() {
document.getElementById("txtInput").value=document.getElementById("txtCaptcha").value;
@gali1
gali1 / Recaptcha Solver (Automatically solves Recaptcha in browser).user.js Recaptcha Solver in Browser | Automatically solves Recaptcha in browser by engageub | Note: This script is solely intended for the use of educational purposes only and not to abuse any website. This script uses audio in order to solve the captcha. Use it wisely and do not abuse any website. Click "Raw" to install it on Tampermonkey
// ==UserScript==
// @name Recaptcha Solver (Automatically solves Recaptcha in browser)
// @namespace Recaptcha Solver
// @version 2.1
// @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser
// @author engageub
// @match *://*/recaptcha/*
// @connect engageub.pythonanywhere.com
// @connect engageub1.pythonanywhere.com
// @grant GM_xmlhttpRequest
@gali1
gali1 / README-Template.md
Created August 6, 2024 04:50 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@gali1
gali1 / mesa_debian_build.sh
Last active May 29, 2024 08:11 — forked from shmerl/mesa_debian_build.sh
For building Mesa on Debian
#!/bin/bash
# Notes:
#
# 1. Works for tags and specific hash commits too (override mesa_branch variable with needed value).
#
# 2. By default builds for /opt/mesa-<branch> and places the result in ${HOME}/mnt/vmshare/mesa-<branch>
# You can override the build deployment location by setting dest_dir. For example this should put it right away
# in /opt/mesa-<branch>
#
@gali1
gali1 / _INSTALL_DOCKER.md
Created March 26, 2024 11:08 — forked from ShahinSorkh/_INSTALL_DOCKER.md
Install latest docker-ce on debian and ubuntu

Install docker bash script

Installation script for docker-ce and docker-compose on debian, ubuntu and linux mint.

Note: Since docker.com has set sanctions on IPs from Iran, I need to use a proxy.

Official way

curl -fsSL https://get.docker.com -o get-docker.sh
@gali1
gali1 / devise.html.haml
Created February 8, 2024 07:53 — forked from octomagon/devise.html.haml
Replace the stock GitLab CE login greeting.
/ The template for the GitLab CE login page is located here:
/ /opt/gitlab/embedded/service/gitlab-rails/app/views/layouts/devise.html.haml
/
/ The CE admin console lets you only add markdown content to the login page.
/ This mod will let you replace it instead. If there is no addition, it will
/ display the standard CE greeting. Updates may clobber this file.
/
/ After updating it: gitlab-ctl reconfigure && gitlab-ctl restart
!!! 5
@gali1
gali1 / dev.conf
Created February 8, 2024 07:03 — forked from fnando/dev.conf
Nginx configuration for SSH tunnel
upstream tunnel {
server 127.0.0.1:3000;
}
server {
listen 80;
server_name dev.codeplane.com br.dev.codeplane.com;
location / {
proxy_set_header X-Real-IP $remote_addr;
@gali1
gali1 / Sublime Text 3 (Build 3211) license key.md
Created February 2, 2024 08:54 — forked from rajibdpi/Sublime Text 3 (Build 3211) license key.md
Download Sublime Text 3 (Build 3211) 100% working License Key.
@gali1
gali1 / build4123.sublime4.key
Created February 2, 2024 08:54 — forked from skoqaq/build4123.sublime4.key
Sublime Text 4 License Key
—– BEGIN LICENSE —–
Mifeng User
Single User License
EA7E-1184812
C0DAA9CD 6BE825B5 FF935692 1750523A
EDF59D3F A3BD6C96 F8D33866 3F1CCCEA
1C25BE4D 25B1C4CC 5110C20E 5246CC42
D232C83B C99CCC42 0E32890C B6CBF018
B1D4C178 2F9DDB16 ABAA74E5 95304BEF
9D0CCFA9 8AF8F8E2 1E0A955E 4771A576
@gali1
gali1 / docker_mint_xenial_install.sh
Created February 1, 2024 21:51 — forked from mykubicle/docker_mint_xenial_install.sh
Get Docker CE for Linux Mint based on Ubuntu Xenial
#!/bin/bash
# Uninstall old version
sudo apt-get remove docker docker-engine docker.io
# Update apt package index
sudo apt-get update
# Install packages to allow apt to use a repo over HTTPS
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
# Add Docker offical GPG Key
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -