Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
<?php | |
/* lookforbadguys.php 2012-04-09 | |
Copyright (C)2012 Karen Chun, Steven Whitney. | |
Initially published by http://25yearsofprogramming.com. | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU General Public License (GPL) | |
Version 3 as published by the Free Software Foundation. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
find /var/www/ -name "IFrameManager.html*" | |
find /var/www/ -name "afa-iframe.htm*" | |
find /var/www/ -name "bonzaiBuster.htm*" | |
find /var/www/ -name "buster.htm*" | |
find /var/www/ -name "addineyeV2.htm*" | |
find /var/www/ -name "interim.htm*" | |
find /var/www/ -name "ftlocal.htm*" | |
find /var/www/ -name "py_buster.htm*" | |
find /var/www/ -name "jivoxibuster.htm*" | |
find /var/www/ -name "mojofb_v9.htm*" |
127.0.0.1 a.stat.xiaomi.com | |
127.0.0.1 abtest.mistat.intl.xiaomi.com | |
127.0.0.1 abtest.mistat.xiaomi.com | |
127.0.0.1 ad.mi.com | |
127.0.0.1 ad.xiaomi.com | |
127.0.0.1 ad1.xiaomi.com | |
127.0.0.1 adv.sec.miui.com | |
127.0.0.1 api.account.xiaomi.com | |
127.0.0.1 api.ad.xiaomi.com | |
127.0.0.1 api.admob.xiaomi.com |
Verifying my Blockstack ID is secured with the address 16CmgshGmmSZ4StKKpU9HfFYDph3pNU2Wd https://explorer.blockstack.org/address/16CmgshGmmSZ4StKKpU9HfFYDph3pNU2Wd |
#!/bin/sh | |
#Check the Drive Space Used by Cached Files | |
du -sh /var/cache/apt/archives | |
#Clean all the log file | |
#for logs in `find /var/log -type f`; do > $logs; done | |
logs=`find /var/log -type f` | |
for i in $logs |
[opcache] | |
; Determines if Zend OPCache is enabled | |
opcache.enable=1 | |
; Determines if Zend OPCache is enabled for the CLI version of PHP | |
;opcache.enable_cli=1 | |
; The OPcache shared memory storage size. | |
opcache.memory_consumption=512 |
Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
gsettings set org.gnome.desktop.wm.keybindings switch-input-source "['<Shift>Alt_L']" &&\ | |
gsettings set org.gnome.desktop.wm.keybindings switch-input-source-backward "['<Alt>Shift_L']" |
#!/bin/sh | |
# | |
# list the given file's filesize next to each commit | |
# usage: git-fs-history path/to/file | |
# | |
if [ $# -ne 1 ]; then | |
echo "Error: invalid number of arguments." | |
exit 1 |
#!/bin/bash | |
# check to see is git command line installed in this machine | |
IS_GIT_AVAILABLE="$(git --version)" | |
if [[ $IS_GIT_AVAILABLE == *"version"* ]]; then | |
echo "Git is Available" | |
else | |
echo "Git is not installed" | |
exit 1 | |
fi |