This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"theme": "even" | |
}, | |
"basics": { | |
"name": "Wang Zhongwei", | |
"label": "Full Stack Engineer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "(86) 186-5298-5013", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Security.Cryptography; | |
namespace TgServer.Crypto; | |
public sealed class AesCtr { | |
private readonly byte[] _key; | |
private readonly byte[] _counter; | |
private readonly byte[] _blockKey; | |
private readonly ICryptoTransform _encryptor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using UnityEngine; | |
using UnityEditor; | |
using UnityEditor.SceneManagement; | |
using UnityEngine.UI; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import pathlib | |
import re | |
import hashlib | |
import json | |
import version_parser | |
import git | |
import argparse | |
proxy = {'http': 'http://127.0.0.1:10809', 'https': 'http://127.0.0.1:10809'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout --orphan latest_branch | |
git add -A | |
git commit -am "Clear Git History" | |
git branch -D master | |
git branch -D main | |
git branch -M main | |
git push -f origin main | |
git branch --set-upstream-to origin/main main | |
pause |
NewerOlder