Skip to content

Instantly share code, notes, and snippets.

View darkhandz's full-sized avatar

黑手 darkhandz

  • 广东,中山
View GitHub Profile
@ld100
ld100 / ArchLinuxWSL2.md
Last active April 23, 2024 22:42
Steps for setting up Arch Linux on WSL2

Migrating from Ubuntu on WSL to ArchLinux on WSL2

Obsolete notice

This document was created back in 2020 and might not be actual nowadays. It is not supported anymore, so use thise information at your own risk.

Upgrading to WSL 2

  • Download WSL2 Kernel
  • run wsl --set-default-version 2 in windows command line, so that all future WSL machine will use WSL2.
@pavel-a
pavel-a / edid_dump.cs
Created March 25, 2019 22:52
A little program to dump display EDIDs in hex. Gets extension blocks.
// Read EDIDs from all displays via WMI ...
// https://docs.microsoft.com/en-us/windows/desktop/wmicoreprov/wmimonitorraweedidv1block
using System;
using System.Management;
namespace edid_dump {
class edid_dump
{
static void Main(string[] args)
@github101
github101 / gist:3426337
Created August 22, 2012 14:48
AWS EC2 时区设置
设置时区
ec2实例和国外vps默认的时区都是当地的,不适合国内使用,通过手动修改自己的时区
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
date一下看看已经更改过来了
@parano
parano / gist:1868242
Created February 20, 2012 07:18
Excel表格密码保护的解除方法
表格受密码保护时,我们修改数据Excel弹出“您试图更改的单元格或图表受保护,因而是只读的。
若要修改受保护单元格或图表,请先使用‘撤消工作表保护’命令(在‘审阅’选项卡的‘更改’组中)来取消保护。
可能会提示输入密码。这时候我们可以用VBA宏代码破解法来破解表格保护密码:
第一步:打开该文件,先解除默认的“宏禁用”状态,方法是点击工具栏下的“选项”状态按钮,
打开“Microsoft Office安全选项”窗口,选择其中的“启用此内容”,“确定”
再切换到“视图”选项卡,点击“宏”→“录制宏”,出现“录制新宏”窗口,在“宏名”定义一个名称为:
PasswordBreaker,点击“确定”退出;
第二步:再点击“宏”→“查看宏”,选择“宏名”下的“PasswordBreaker”并点击“编辑”,
打开“Microsoft Visual Basic”编辑器,用如下内容替换右侧窗口中的所有代码: