Skip to content

Instantly share code, notes, and snippets.

@makazeu
makazeu / Wulumuqi2.html
Created November 28, 2022 08:08
乌鲁木齐中路 路牌 2
<table border="0" cellspacing="0" cellpadding="0" style="min-width:250px; margin:auto; -moz-border-radius: 0.4em; -webkit-border-radius: 0.4em; border-radius: 0.4em;">
<tbody>
<tr>
<td style="text-align: center; vertical-align: middle; font-size:11px;line-height:20px;padding:4px 0px 8px 2px;background-color:#004EA1;color:white; -moz-border-radius: 0.6em 0px 0px 0px; -webkit-border-radius: 0.6em 0px 0px 0px; border-radius: 0.6em 0px 0px 0px;;box-shadow: 0px 0px 3px #737373;;">
<span style="letter-spacing: 5px">
<span lang="zh-cn">南 </span>
</span>
</td>
<td style="text-align: center; vertical-align: middle; font-size:20px;line-height:20px;padding:10px 0px 10px 0px;background-color:#004EA1;color:white;font-family:黑体,simhei,sans-serif;box-shadow: 1px 0px 3px #737373;;">
<span style="letter-spacing: 5px">
@makazeu
makazeu / Wulumuqi.html
Last active November 28, 2022 05:19
乌鲁木齐中路 路牌
<table border="0" cellspacing="0" cellpadding="0"
style="min-width:250px; margin:auto; -moz-border-radius: 0.4em; -webkit-border-radius: 0.4em; border-radius: 0.4em;">
<tbody>
<tr>
<td
style="text-align: center; vertical-align: middle; font-size:11px;line-height:20px;padding:4px 0px 8px 2px;background-color:blue;color:white; -moz-border-radius: 0.6em 0px 0px 0px; -webkit-border-radius: 0.6em 0px 0px 0px; border-radius: 0.6em 0px 0px 0px;;box-shadow: 0px 0px 3px #737373;;">
<span style="letter-spacing: 5px"><span lang="zh-cn">北 </span></span></td>
<td
style="text-align: center; vertical-align: middle; font-size:20px;line-height:20px;padding:10px 0px 10px 0px;background-color:blue;color:white;font-family:黑体,simhei,sans-serif;box-shadow: 1px 0px 3px #737373;;">
<span style="letter-spacing: 5px"><span lang="zh-cn">乌鲁木齐中路</span></span></td>
@makazeu
makazeu / 20H2_StartMenu.reg
Last active September 19, 2020 06:50
20H2_StartMenu.reg
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FeatureManagement\Overrides\0\2093230218]
"EnabledState"=dword:00000002
"EnabledStateOptions"=dword:00000000
@makazeu
makazeu / 江苏2018刑侦科推理试题.go
Last active June 25, 2019 04:51
江苏2018刑侦科推理试题_Golang
package main
import (
"fmt"
"time"
)
const QuestionNum = 10
var (
@makazeu
makazeu / LRUCache.java
Created December 5, 2018 05:55
Java LRU Cache
import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;
public class LRUCache<K, V> {
private static final float HASH_TABLE_LOAD_FACTOR = 0.75f;
private LinkedHashMap<K, V> map;
@makazeu
makazeu / suiri.go
Last active March 9, 2018 01:11
2018刑侦推理推理试题 —— Go语言
package main
import (
"fmt"
"time"
)
const QuestionNum = 10
var (
@makazeu
makazeu / tcp_nanqinlang.c
Created January 21, 2018 05:40
New BBR Congestion Control by Nanqinlang
/* tcp_nanqinlang
* Debian
* general kernel
× New BBR Congestion Control
* Modified by (C) 2017 nanqinlang
@makazeu
makazeu / SteamRedeemKeysOld.js
Created August 30, 2017 15:32
Steam Redeem Keys for Old
// ==UserScript==
// @name SteamRedeemKeysOld
// @namespace https://gist.github.com/zyfworks/ccb12bd87f09cf49d0a3465d167bece9
// @version 1.3
// @description Steam网页激活 —— 批量激活
// @author Makazeu
// @match https://store.steampowered.com/account/registerkey
// @grant GM_addStyle
// ==/UserScript==
@makazeu
makazeu / SteamRedeemKeys.js
Last active January 12, 2023 08:20
Steam Batch Redeem Keys for Tampermonkey
// ==UserScript==
// @name SteamRedeemKeys
// @namespace https://gist.github.com/zyfworks/ccb12bd87f09cf49d0a3465d167bece9
// @version 1.5.0
// @description Steam网页激活 —— 批量激活
// @author Makazeu
// @match https://store.steampowered.com/account/registerkey
// @grant GM_addStyle
// @run-at document-end
// ==/UserScript==
@makazeu
makazeu / tampermonkey_style.css
Last active August 28, 2017 15:47
Tampermonkey Theme by deluxghost
div.version {
left: 0 !important;
}
.global_hint>span {
border-radius: 0 !important;
}
.curwaithead {
background: none;
background-color: #525252;
}