git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| # Clone the repo | |
| git clone https://github.com/imartinez/privateGPT | |
| cd privateGPT | |
| # Install Python 3.11 | |
| pyenv install 3.11 | |
| pyenv local 3.11 | |
| # Install dependencies | |
| poetry install --with ui,local |
| #!/bin/sh | |
| #!/usr/bin/perl | |
| ### Shoutcast (SC_SERV) | |
| # Taken from: http://forums.winamp.com/showthread.php?postid=2487604 | |
| ## SC_SERV Server 1 | |
| if ( ! ps auxwww | grep "/home/user/sc_serv/sc_serv /home/user/sc_serv/sc_serv.conf" | grep -v grep ) | |
| then echo "Shoutcast not running..." |
| // http://stackoverflow.com/questions/7789826/adb-shell-input-events | |
| 0 --> "KEYCODE_0" | |
| 1 --> "KEYCODE_SOFT_LEFT" | |
| 2 --> "KEYCODE_SOFT_RIGHT" | |
| 3 --> "KEYCODE_HOME" | |
| 4 --> "KEYCODE_BACK" | |
| 5 --> "KEYCODE_CALL" | |
| 6 --> "KEYCODE_ENDCALL" | |
| 7 --> "KEYCODE_0" |
| // ==UserScript== | |
| // @id iitc-plugin-ingressportalcsvexport@zetaphor | |
| // @name IITC Plugin: Ingress Portal CSV Export | |
| // @category Information | |
| // @version 0.0.2 | |
| // @description Exports portals to a CSV list. Modified for MAD! | |
| // @include https://intel.ingress.com/intel* | |
| // @match https://intel.ingress.com/intel* | |
| // @grant none | |
| // ==/UserScript== |
| // disable iitc plugin if it's on | |
| // go to https://www.ingress.com/intel | |
| // open console and paste in the code below, press enter | |
| // join https://t.me/passcodes for more passcodes | |
| // add jquery | |
| var jq = document.createElement('script'); | |
| jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"; | |
| document.getElementsByTagName('head')[0].appendChild(jq); |
| 1. Clone your fork: | |
| git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git | |
| 2. Add remote from original repository in your forked repository: | |
| cd into/cloned/fork-repo | |
| git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git | |
| git fetch upstream | |
| 3. Updating your fork from original repo to keep up with their changes: | |
| git pull upstream master |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| <?php | |
| $conn = mysql_connect("localhost", "USER", "PASSWORD") or die(mysql_error()); | |
| mysql_select_db("DB") or die(mysql_error()); | |
| ?> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
| <title>POKEMON MAPS ONLY GYMS</title> | |
| <style type="text/css"> |
| <?php | |
| $conn = mysql_connect("localhost", "USER", "PASSWORD") or die(mysql_error()); | |
| mysql_select_db("DATABASE") or die(mysql_error()); | |
| ?> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
| <title>Google Maps</title> | |
| <style type="text/css"> |