Skip to content

Instantly share code, notes, and snippets.

View SAVE-UP's full-sized avatar
:octocat:
Building something Cool

SAVEUP Technologies SAVE-UP

:octocat:
Building something Cool
View GitHub Profile
@SAVE-UP
SAVE-UP / index.html
Created November 30, 2018 19:01
The Last Experience
<canvas></canvas>
<!--
,--. ,--.
((O ))--((O ))
,'_`--'____`--'_`.
_: ____________ :_
| | ||::::::::::|| | |
| | ||::::::::::|| | |
| | ||::::::::::|| | |
|_| |/__________\| |_|
@SAVE-UP
SAVE-UP / homo-noosphericus.markdown
Created November 30, 2018 19:10
Homo Noosphericus
@SAVE-UP
SAVE-UP / install virtualenv ubuntu 16.04.md
Created April 14, 2020 05:58 — forked from frfahim/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv 
@SAVE-UP
SAVE-UP / fr.json
Created August 9, 2020 10:38
OwnPlate French Traduction
{
"serviceName": {
"ownPlate": "OwnPlate",
"omochikaeri": "おもちかえり.com"
},
"pageTitle": {
"restaurantRoot": "Liste des restaurants qui font des plats à emportés",
"restaurantArea": "Liste des restaurants qui font des plats à emportés dans la {area}",
"terms": {
"admin": "CGU pour les propriétaires de restaurants",
@SAVE-UP
SAVE-UP / push.sh
Created August 9, 2020 10:53
Push .sh code to github
#!/usr/bin/env sh
# abort on errors
set -e
# if you are deploying to a custom domain
# echo 'www.example.com' > CNAME
#Use this only one time
@SAVE-UP
SAVE-UP / urls.sh
Created August 11, 2020 20:03
Extract urls to junk data
#!/usr/bin/env sh
# abort on errors
set -e
cat file | grep -Eo "(http|https)://[a-zA-Z0-9./?=_-]*"*
# If file is on remote web server
curl http://path.cc/file | grep -Eo "(http|https)://[a-zA-Z0-9./?=_-]*"*
#bugbountytips
@SAVE-UP
SAVE-UP / t.me.sh
Created August 15, 2020 12:00
Install Telegram on Ubuntu
#!/bin/sh
{
echo "This script requires superuser access to install apt packages."
echo "You will be prompted for your password by sudo."
# clear any previous sudo permission
sudo -k
# run inside sudo
sudo sh <<SCRIPT
@SAVE-UP
SAVE-UP / gitcheat.sh
Created October 5, 2021 09:31
Github cheats
git init # initiates git in the current directory
git clone <address> # creates a git repo from given address (get the address from your git-server)
git clone <address> -b <branch_name> <path/to/directory> # clones a git repo from the address into the given directory and checkout's the given branch
git clone <address> -b <branch_name> --single-branch # Clones a single branch
git add file.txt # adds(stages) file.txt to the git
git add * # adds(stages) all new modifications, deletions, creations to the git
git reset file.txt # Removes file.txt from the stage
git reset --hard # Throws away all your uncommitted changes, hard reset files to HEAD
git rm file.txt # removes file.txt both from git and file system