Skip to content

Instantly share code, notes, and snippets.

View lgh06's full-sized avatar

Daniel Liu lgh06

View GitHub Profile
{
"v.huatu.com": {
"_enabled": true,
"_rules": {
"div.origin": {
"display": "none"
},
"div.testCard div:first-child": {
"height": "auto"
},
@lgh06
lgh06 / DecryptDbeaver.java
Last active July 17, 2020 13:58 — forked from james-ni/DecryptDbeaver.java
retrieve password stored in DBeaver
import javax.crypto.*;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.*;
@lgh06
lgh06 / date-picker.js
Created April 16, 2020 03:41
微信小程序 date-picker
// 从日历选择其他日期
const App = getApp();
Page({
data: {
year: '',
month: '',
day: '',
firstIndex: 0,
dayArr: [],
priceObj: {
Hi Daniel​,
We have confirmed that Zoom’s website (zoom.us), meetings, and webinars are currently inaccessible in China. Our investigation remains ongoing, but thus far we’ve determined that the cause is an inability to connect to the local China DNS (domain name system).
We sincerely apologize to our customers for any inconvenience and provide the following recommendations in the meantime:
Customers in China:
Our team has developed an alternative that will allow users to join meetings and sign in
@lgh06
lgh06 / ad-block-list-daniel.txt
Last active August 20, 2019 04:19
ad-block-list-daniel
[Adblock Plus 3.1]
! Version: 201908200730
! Title: Daniel Filters
! Last modified: 20 Aug 2019 07:30 UTC
! Expires: 1 hours (update frequency)
cn.nytimes.com##body>main>div.article-area>div.container.article-footer>div>div.col-lg-4
cn.nytimes.com##.article-ribbon
cn.nytimes.com###subscribe_mobile_cont
cn.nytimes.com##body > main > div.article-area > div.container.article-footer
@lgh06
lgh06 / ngrxintro.md
Created December 18, 2018 09:11 — forked from btroncone/ngrxintro.md
A Comprehensive Introduction to @ngrx/store - Companion to Egghead.io Series

Comprehensive Introduction to @ngrx/store

By: @BTroncone

Also check out my lesson @ngrx/store in 10 minutes on egghead.io!

Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!

Table of Contents

127.0.0.1 hub5btmain.sandai.net
127.0.0.1 hub5emu.sandai.net
127.0.0.1 upgrade.xl9.xunlei.com
@lgh06
lgh06 / OpenCmdHere.reg
Created January 6, 2018 03:10
windows 10 shift+右键 命令行&power shell
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\OpenCmdHere]
@="在此处打开命令提示符"
"Icon"="cmd.exe"
[HKEY_CLASSES_ROOT\Directory\shell\OpenCmdHere\command]
@="PowerShell -windowstyle hidden -Command \"Start-Process cmd.exe -ArgumentList '/s,/k, pushd,%V' -Verb RunAs\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
@lgh06
lgh06 / vue-note.md
Last active April 14, 2018 14:38
Vue.js Guide Essentials-说人话-速记版

以下内容根据Vue.js Guide Essentials部分速记。
不含动画/mixin/SSR/路由/状态管理等部分.

Introduction

建议阅读原文 https://vuejs.org/v2/guide/index.html

什么是Vue
开始
声明式渲染
条件与循环