This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// define the mysql settings | |
define("DB_SERVER", "localhost"); | |
define("DB_USERNAME","username"); | |
define("DB_PASSWORD", "password"); | |
define("DB_NAME", "database"); | |
// setting MySQL table and configuration | |
$connection = mysqli_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_NAME) or die ("Cannot connect"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package distance_measurement; | |
/*================================== | |
---- https://github.com/MaX121/ ---- | |
admin [at] max [dash] metal [dot] us | |
==================================*/ | |
import java.util.ArrayList; | |
import java.util.HashMap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import urllib2 | |
from bs4 import BeautifulSoup | |
# CSS and JS for Bootstrap | |
url = "https://www.bootstrapcdn.com/" | |
page = urllib2.urlopen(url) | |
bsoup = BeautifulSoup(page, 'lxml') | |
js_link = bsoup.find('input', {'id': 'quickstartjs_form'}).get('value') | |
css_link = bsoup.find('input', {'id': 'quickstartcss_form'}).get('value') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
os.system('dnf update -y') | |
os.system('dnf install -y pip python2-lxml') | |
os.system('pip install pip --upgrade') | |
os.system('pip install BeautifulSoup4 lxml') | |
import urllib2 | |
import subprocess | |
from bs4 import BeautifulSoup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gparted >>> format flash drive to FAT32 | |
gparted >>> add "boot" flag to the drive | |
grub2 >>> sudo grub2-install /dev/sd[x] --boot-directory="/run/media/[user]/[flash_disk_name]" | |
nano >>> nano /boot/grub2/grub.cfg | |
nano >>> add these script | |
set menu_color_normal=white/black | |
set menu_color_highlight=black/light-gray | |
menuentry 'Install Windows [y]' { | |
ntldr /bootmgr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Agila Theme/Agila Origin Oceanic Next.tmTheme", | |
"fade_fold_buttons": false, | |
"font_family": "Source Code Pro", | |
"font_size": 14, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests, sys, getpass, urllib2 | |
from bs4 import BeautifulSoup | |
from lxml import html | |
username = sys.argv[1] | |
base_url = 'http://logout.usd/login' | |
result = requests.request('GET', base_url) | |
if str(result.status_code) == '200': # check connectivity | |
password = getpass.getpass('Password for %s : ' % username) | |
logging_in = requests.post(base_url, data={'username': username, 'password': password}) | |
html_tags = html.fromstring(logging_in.content) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re, wget, urllib2, sys | |
from bs4 import BeautifulSoup | |
booklist = [] | |
base_url = 'http://www.allitebooks.com/' | |
for index, book_title in enumerate(sys.argv) : | |
if index > 0 : booklist.append(book_title) | |
for index, booktitle in enumerate(booklist, 1) : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo tcpdump -i any -w "tcpdump_$(date '+%d%m%Y').pcapng" -c 100 2> /dev/null # command | |
@reboot tcpdump -i any -w "tcpdump_$(date '+%d%m%Y').pcapng" -c 100 2> /dev/null # crontab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /usr/bin/python | |
import os | |
import sys | |
import base64 | |
import getpass | |
import requests | |
from lxml import html | |
from selenium import webdriver | |
from prettytable import PrettyTable |
OlderNewer