This setup uses 3 machines:
- Centos7
- 100GB HDD
- 32 GB RAM
- 8 CPU
Here are 30 different suppliers: | |
1 – Oberlo verified suppliers or US | |
2 – DX .com– A.K.A. Deal Extreme has been around for many years and has some amazing products that you could sell with great margins. | |
3 – WholesaleCentral .com– One of the most comprehensive list of free drop shippers which you could find in virtually any niche. They are also free. | |
4 – FragranceNet – This is a great source if you are looking to sell perfumes and fragrances. | |
5 – Vitabase– A great source to supply vitamins for skin, health and beauty drop shipped products. | |
6 – DressLink .com– A great source if you plan on selling dresses with amazing margins. | |
7 – Tiny Deal – Similar to DX but you could find unique products as well. | |
8 – Milanoo– A great supplier of wedding dresses, prom dresses. | |
9 – Dino Direct – Another awesome source for electronic products and gadgets. |
#!/bin/bash | |
# Written 2018-11-15 by 4410287 | |
# This script will create a backup file of a postgres database and compress it. It is capable of access a local or remote server to pull the backup. After creating a new backup, it will delete backups that are older than 15 days, with the exception of backups created the first of every month. It is recommended to create a seperate database user specifically for backup purposes, and to set the permissions of this script to prevent access to the login details. Backup scripts for different databases should be run in seperate folders or they will overwrite each other. | |
HOSTNAME= | |
USERNAME= | |
PASSWORD= | |
DATABASE= |
#! /bin/bash | |
# ECHO COMMAND | |
# echo Hello World! | |
# VARIABLES | |
# Uppercase by convention | |
# Letters, numbers, underscores | |
NAME="Bob" | |
# echo "My name is $NAME" |
Some Jenkinsfile examples |
yum list java* | |
sudo yum -y remove java* | |
java -version | |
cd | |
mkdir tmp | |
cd tmp | |
curl -u uftp:uftp ftp://192.168.2.115/path/developer/jdk-8u151-linux-x64.tar.gz -o jdk-8u151-linux-x64.tar.gz | |
tar zxvf jdk-8u151-linux-x64.tar.gz | |
sudo mv jdk1.8.0_151 /usr/share/ | |
sudo vim /etc/profile |
# Author: Zameer Ansari | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# http://wiki.nginx.org/Pitfalls | |
# http://wiki.nginx.org/QuickStart | |
# http://wiki.nginx.org/Configuration | |
# | |
# Generally, you will want to move this file somewhere, and start with a clean | |
# file but keep this around for reference. Or just disable in sites-enabled. | |
# |
--- PSQL queries which also duplicated from https://github.com/anvk/AwesomePSQLList/blob/master/README.md | |
--- some of them taken from https://www.slideshare.net/alexeylesovsky/deep-dive-into-postgresql-statistics-54594192 | |
-- I'm not an expert in PSQL. Just a developer who is trying to accumulate useful stat queries which could potentially explain problems in your Postgres DB. | |
------------ | |
-- Basics -- | |
------------ | |
-- Get indexes of tables |
#!/bin/sh | |
############################################################################### | |
## mail_it.sh | |
## A bash script that sends email as either plain text or HTML. It allows | |
## multiple recipients, CC addresses, reply-to addresses, and attachments. | |
## | |
## Usage: mail_it.sh -s subject -m message -f from_address | |
## -t to_address[,...] [-c cc_address[,...]] [-r reply_to_address[,...]] | |
## [-a attachment[,...]] [-h] | |
## subject: email subject |