One Paragraph of project description goes here
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.
// ==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; |
// ==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 |
#!/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> | |
# |
/ 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 |
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; |
The latest version of Sublime Text 3 (Build 3211) 100% working License Key.
π Download Sublime Text 3 x86bit
π Download Sublime Text 3 x64bit
ββ 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 |
#!/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 - |