Skip to content

Instantly share code, notes, and snippets.

View lengyijun's full-sized avatar
🦄

lyj lengyijun

🦄
View GitHub Profile
@lengyijun
lengyijun / list27.txt
Last active October 16, 2024 09:47 — forked from anonymous/list27.txt
000(023Rb|001Rb)
001(017La|002Rb) find 1
002(021La|003Rb) find 2
003(021La|004La) place c2
004(009Rb|005Lb)
005(004Ra|005La) 向左找到 0, 1 -> 0
006(008La|007La)
007(009Rb|007La) 向左找到 0, 重写成 0
008(009Ra|008La) 向左找到 0, 重写成 0
009(010Ra|026Ra)
@lengyijun
lengyijun / dnscrypt-proxy.md
Last active September 22, 2022 02:19 — forked from ndlrx/dnscrypt-proxy.md
Install dnscrypt-proxy on Archlinux or Manjaro

Step 1 - Install and Configure dnscrypt-proxy

sudo su
pacman -S dnscrypt-proxy
cd /etc/dnscrypt-proxy/
@lengyijun
lengyijun / react-file-upload.js
Created May 13, 2018 09:24 — forked from AshikNesin/react-file-upload.js
Simple React File Upload
import React from 'react'
import axios, { post } from 'axios';
class SimpleReactFileUpload extends React.Component {
constructor(props) {
super(props);
this.state ={
file:null
}