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
#!/bin/bash | |
# check root user | |
if [ "$(id -u)" != 0 ]; then | |
echo "ERROR! Run this script with root user!" | |
exit 1 | |
fi | |
# tab width | |
tabs 4 |
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
#!/bin/bash | |
# dirc - DracOS IRc Client | |
# Copyright (c) 2016 - randalltux | |
################################### | |
##### HOW TO ##### | |
##### -h: hostname ##### | |
##### -p: port ##### | |
##### -n: nick ##### | |
##### -k: password ##### | |
##### -c: config ##### |
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 | |
/* | |
*** OPTIONS ***/ | |
// TITLE OF PAGE | |
$title = "List of Files"; | |
// ADD SPECIFIC FILES YOU WANT TO IGNORE HERE | |
$ignore_file_list = array( ".htaccess", "Thumbs.db", ".DS_Store", "index.php" ); |
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
# Test Internet Connection | |
ping -c 1 google.com > /dev/null | |
if [ "$?" != 0 ] | |
then | |
echo [*] [Internet Connection]: FAILED...; | |
echo [x] [warning]:This Script Needs An Active Internet Connection; | |
sleep 3 |
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/env python | |
import pygtk | |
pygtk.require('2.0') | |
import gtk | |
import os | |
import getpass | |
class cb_exit: | |
def disable_buttons(self): |