Skip to content

Instantly share code, notes, and snippets.

View cheneyveron's full-sized avatar
🎯
Focusing

Cheney Veron cheneyveron

🎯
Focusing
View GitHub Profile
@cheneyveron
cheneyveron / github_gpg_key.md
Created May 6, 2021 09:09 — forked from ankurk91/github_gpg_key.md
Github : Signing commits using GPG (Ubuntu/Mac)

Github : Signing commits using GPG (Ubuntu/Mac) 🔐

  • Do you have an Github account ? If not create one.
  • Install required tools
  • Latest Git Client
  • gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
mysql -u<user> -p<pass> -h<host> -e"select concat('show grants for ','\'',user,'\'@\'',host,'\'') from mysql.user" > user_list_with_header.txt
sed '1d' user_list_with_header.txt > ./user.txt
while read user; do mysql -u<user> -p<pass> -h<host> -e"$user" > user_grant.txt; sed '1d' user_grant.txt >> user_privileges.txt; echo "flush privileges" >> user_privileges.txt; done < user.txt
awk '{print $0";"}' user_privileges.txt >user_privileges_final.sql
rm user.txt user_list_with_header.txt user_grant.txt user_privileges.txt
# 本机端口映射其他机器
iptables -t nat -A PREROUTING -p tcp -m tcp --dport 8006 -j DNAT --to-destination 192.168.2.2:8006
iptables -t nat -A POSTROUTING -d 192.168.2.2/32 -p tcp -m tcp --sport 8006 -j SNAT --to-source 192.168.2.1
iptables -t filter -A INPUT -p tcp -m state --state NEW -m tcp --dport 8006 -j ACCEPT
# 本机端口
iptables -t nat -A PREROUTING -p tcp -m tcp --dport 10080 -j DNAT --to-destination 192.168.2.1:80
iptables -t filter -A INPUT -p tcp -m state --state NEW -m tcp --dport 10080 -j ACCEPT
@cheneyveron
cheneyveron / gist:c7d137a27b0be8f0412ad48858ce5034
Created April 26, 2018 05:09 — forked from parano/gist:1868242
Excel表格密码保护的解除方法
表格受密码保护时,我们修改数据Excel弹出“您试图更改的单元格或图表受保护,因而是只读的。
若要修改受保护单元格或图表,请先使用‘撤消工作表保护’命令(在‘审阅’选项卡的‘更改’组中)来取消保护。
可能会提示输入密码。这时候我们可以用VBA宏代码破解法来破解表格保护密码:
第一步:打开该文件,先解除默认的“宏禁用”状态,方法是点击工具栏下的“选项”状态按钮,
打开“Microsoft Office安全选项”窗口,选择其中的“启用此内容”,“确定”
再切换到“视图”选项卡,点击“宏”→“录制宏”,出现“录制新宏”窗口,在“宏名”定义一个名称为:
PasswordBreaker,点击“确定”退出;
第二步:再点击“宏”→“查看宏”,选择“宏名”下的“PasswordBreaker”并点击“编辑”,
打开“Microsoft Visual Basic”编辑器,用如下内容替换右侧窗口中的所有代码:
@cheneyveron
cheneyveron / install_nvidia_driver_in_ubuntu1604.md
Created April 26, 2018 05:08 — forked from terrydang/install_nvidia_driver_in_ubuntu1604.md
Ubuntu 16.04 安装英伟达(Nvidia)显卡驱动

Ubuntu 16.04 安装英伟达(Nvidia)显卡驱动

配有英伟达显卡的主机,装完 Ubuntu 16.04 后出现闪屏现象,是由于没有安装显卡驱动。

显卡型号
NVIDIA Corporation GM204 [GeForce GTX 970]