Skip to content

Instantly share code, notes, and snippets.

View scottie's full-sized avatar
🎯
Focusing

scott lindh scottie

🎯
Focusing
View GitHub Profile
echo ""
echo "************ Github Dork Links (must be logged in) *******************"
echo ""
echo " password"
echo "https://github.com/search?q="hackertarget.site"+password&type=Code"
echo "https://github.com/search?q=""hackertarget""+password&type=Code"
echo ""
echo " npmrc _auth"
@scottie
scottie / django-docker-setup.md
Last active September 19, 2023 17:56
django-docker-setup

Install Docker (Ubuntu)

sudo apt-get update
sudo apt-get install ca-certificates curl gnupg
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
@scottie
scottie / selenium-testing-with-pycharm.md
Last active September 19, 2023 16:53
selenium-testing-with-pycharm

Software versions used:

Selenium 4.12.0 (pip3 show selenium)
Ubuntu 23.04 (lsb_release -r)
Python3 3.11.4 (python3 --version)
Pip23.0.1 (pip3 --version)
Pytest 7.4.2 (pip3 show pytest)
Firefox 116.0.3 (firefox --version)
Snap 2.60.3 (snap version)
@scottie
scottie / setup_python_virtualenviroment.md
Last active September 19, 2023 11:20
setup_python_virtualenviroment
  1. Open a terminal window.

  2. Navigate to the directory where you want to create the virtual environment. You can use the cd command to change directories.

  3. Run the following command to create a virtual environment with Python 3:

python3 -m venv venv_name
@scottie
scottie / django-rest-framework-starter.md
Last active September 19, 2023 17:55
django-rest-framework-starter

First install django and DRF:

pip3 install django djangorestframework

Step 1: Make a project and an app.

django-admin startproject projectname .
django-admin startapp apiname
@scottie
scottie / Dockerfile
Last active January 19, 2021 17:40 — forked from evansims/Dockerfile
Dockerfile: php-fpm 7.4-fpm alpine w/ gd bz2 intl mbstring redis mysql xdebug opcache
FROM php:7.4-fpm-alpine
WORKDIR "/application"
# Install essential build tools
RUN apk add --no-cache \
git \
yarn \
autoconf \
g++ \
make \
Node / Iquidus Explorer Setup for Dummies
Pulse Crypto is used in this example.
This Tutorial is going to create a Daemon (node) and install Explorer.
THIS IS NOT GOING TO CREATE A GUI CLIENT.
Follow the instructions in [whatever coin name] docs folder Unix build - some builds are different.
I setup this up on both Ubuntu 15.10 and 16.04 with no issues.
You can create an account on vultr and get $50 free to be used in 2 months.
@scottie
scottie / test.sh
Last active March 19, 2018 03:57
Quick Instacash Daemon Tests
#!/bin/bash
#console
echo [Quick Build Test]
kill -9 $(ps aux | grep '[i]nstacashd' | awk '{print $2}')
echo [killed daemon process]
cd instacash
make
echo make done
cd ~/
cp ~/.instacash/instacash.conf ~/backup.conf
@scottie
scottie / gist:4871ada86e38411cdff12248d62f85a3
Created February 14, 2018 13:11 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@scottie
scottie / README-Template.md
Created February 12, 2018 16:48 — 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