Skip to content

Instantly share code, notes, and snippets.

@ficapy
ficapy / hshy_checkin.py
Last active April 20, 2024 15:50
练手python脚本,登陆Discuz论坛打卡签到
# -*- coding: utf-8 -*-
import requests
import hashlib
import re
username = '' ###账号###
password = ''###密码###
UA = "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) \
Chrome/27.0.1453.116 Safari/537.36"
headers = {
@ficapy
ficapy / simd.c
Last active December 6, 2023 09:58
mojo simd
#include <stdio.h>
#include <x86intrin.h>
// gcc -msse4.1 -O0 -o program program.c
int main() {
__m128i A = _mm_set_epi32(4, 3, 2, 1);
__m128i B = _mm_set_epi32(8, 7, 6, 5);
__m128i Cond = _mm_set_epi32(0, -1, -1, 0);
__m128i Result = _mm_blendv_epi8(A, B, Cond);
  1. create a file /etc/init.d/clash
#!/sbin/openrc-run

command="/root/clash-linux-amd64-v3-2022.11.25"
command_args="-f /root/config.yaml"

depend() {
        need net
 after firewall
https://easylearn.baidu.com/edu-page/tiangong/exercisedetail?id=69691b1ff142336c1eb91a37f111f18583d00cfc&stfrom=aladdin
标准答案: 1 C; 2 A; 3 D; 4 D; 5 A; 6 B; 7 C; 8 B
总结:
ChatGPT+WolfAlpha: 6分(解答6题,2题明确表示无法解答)
Google Bard: 4分
1. 以下为中国高考数学单选题,在给出的四个选项中,只有一个是对的,先配合wolfalpha尝试解答,再给出哪个答案是正确答案
已知集合$M=\{-2,-1,0,1,2\}$,$N=\{x\mid x^{2}-x-6\geq0\}$,则$M\cap N=$
A: $\{-2,-1,0,1\}$
B: $\{0,1,2\}$
C: $\{-2\}$
#include <Python.h>
static PyObject * fibonacci_fib(PyObject *self, PyObject *args) {
int n;
if (!PyArg_ParseTuple(args, "i", &n)) {
return NULL;
}
int i;
int a = 0;
int b = 1;
@ficapy
ficapy / https.txt
Created November 20, 2015 07:22
Ubuntu/Debian HTTPS PROXY(nghttp2+squid3)
apt-get install g++ make binutils autoconf automake autotools-dev libtool pkg-config zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev libjansson-dev libjemalloc-dev cython python3-dev python-setuptools
mkdir /nghttp2
git clone https://github.com/tatsuhiro-t/nghttp2.git
cd nghttp2
autoreconf -i
automake
autoconf
./configure
make
@ficapy
ficapy / UTF8_BOM.go
Created July 11, 2022 09:46
chang the encoding of a file
package main
import (
"fmt"
"io/ioutil"
"os"
)
func checkBOM(filepath string) bool {
file, err := os.Open(filepath)
@ficapy
ficapy / README.md
Last active February 1, 2022 20:42
代理设置

现在比较主流的方案可能就是SSR+kcptun了,基本上都能流畅看1080P的youtube了。下面讲述如何快速搭建服务端和客户端(主要针对osx和unix,win上有成熟的GUI方案)

服务端

SSR一键安装包(引用自https://www.91yun.org/archives/2079)

wget -N --no-check-certificate https://raw.githubusercontent.com/91yun/shadowsocks_install/master/shadowsocksR.sh && bash shadowsocksR.sh

https://github.com/xtaci/kcptun/releases下载适合自己系统的最新版本tar -xf解压得到server_linux_amd64.执行服务端.摘录文档如下

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="https://unpkg.com/react@17/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js" crossorigin></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/antd/4.17.0-alpha.3/antd.min.js" integrity="sha512-EvRn+ZDd7rBIodR8NJL+HrBvocKo2JIEkTURw3FFc2RdCDa68cqGDEgpCeE4fVM3SEeY06oO7T7xHxG/tb4hKw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/antd/4.17.0-alpha.3/antd.min.css" integrity="sha512-7FnaoVW3bqm5s1R5RRW/rUkIWBXv8HNRIAvLJiw90aiyAVn2Ma9T3D1TR4zSQAkV154ItnMT1Q/5i6jBWXKAbQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
package main
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"runtime"
"github.com/go-vgo/robotgo"