Skip to content

Instantly share code, notes, and snippets.

View CodFrm's full-sized avatar
🐱
🍉🐱

wangyizhi CodFrm

🐱
🍉🐱
View GitHub Profile
@CodFrm
CodFrm / main.go
Created July 12, 2021 15:34
b站直播弹幕监听
package main
import (
"bytes"
"encoding/binary"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
@CodFrm
CodFrm / config.md
Last active December 17, 2020 08:37
zsh vim 等配置

zsh

oh-my-zsh

plugins=(
git
docker
golang
zsh-autosuggestions
z
@CodFrm
CodFrm / istrusted.md
Last active September 23, 2020 10:38
istrusted

src\third_party\blink\renderer\core\dom\events\event.h

if (a5[b('0x54b', 'tWpX') + b('0x881', 'yADa') + b('0x272', 'a*S7')] && c[b('0x292', 'tBaa') + 'ly'](a5, Event))

third_party\blink\renderer\core\events\mouse_event.h

line:108

bool isTrusted() const { 
   if(Event::isTrusted()){
@CodFrm
CodFrm / gist:21d1405247d2d78980e960eca8f16baf
Created April 21, 2019 12:20 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@CodFrm
CodFrm / aes_ecb_pkcs5.php
Created December 19, 2017 05:42
PHP对接java的AES/ECB/PKCS5Padding加密方式
<?php
/**
*============================
* author:Farmer
* time:2017/12/19
* blog:blog.icodef.com
* function:加密方式
*============================
*/
@CodFrm
CodFrm / db.php
Last active August 21, 2018 07:05
php db
<?php
/**
*============================
* author:Farmer
* time:2017/11/20
* blog:blog.icodef.com
* function:数据库查询
*============================
*/