0%

在uupdump.net下载Windows镜像,用worproject软件写入镜像到存储卡。

参考:
https://www.worproject.com/
https://uupdump.net/?lang=zh-cn&dark=1
https://www.bilibili.com/video/BV1fX4y137GQ
https://www.youtube.com/watch?v=UqbKgtxuyao

调整UEFI启动顺序,避免检查ipv4连接等动作,耗费等待时间。
启动显示Logo后:Boot Maintenance Manager→Boot Options→Change Boot Order
将UEFI设为第一启动项
参考资料:
https://blog.csdn.net/benandpao/article/details/123927373
https://forums.developer.nvidia.com/t/how-to-disable-network-bootup-scan-from-uefi-on-jetpack5-0-2/227034/7

SPL是solana的代币协议,可以利用solana提供的 spl-token 在cli中创建代币。

阅读全文 »

and里放or,使用wildcard做keyword模糊匹配,示意:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
bool
// and
must
// 条件1
bool
// or
should
// 模糊匹配
..wildcard
// 条件2
bool
// or
should
// 模糊匹配
..wildcard
// 条件N
..

代码:

阅读全文 »

使用 laravel8 的 RateLimiter 对部分API做访问速率限制,记录了定义规则和在路由文件中使用。

阅读全文 »

1
2
3
jun@192 ~ % php -i|grep php.ini
Configuration File (php.ini) Path => /Applications/MAMP/bin/php/php7.3.24/conf
Loaded Configuration File => /Applications/MAMP/bin/php/php7.3.24/conf/php.ini

wget http://pecl.php.net/get/mcrypt-1.0.4.tgz
解压并进入目录
/Applications/MAMP/bin/php/php7.3.24/bin/phpize
./configure –with-php-config=/Applications/MAMP/bin/php/php7.3.24/bin/php-config
make
make install
打开ini文件加入 extension=mcrypt.so

1
2
3
4
5
6
7
jun@192 ~ % php -i|grep mcrypt
Registered Stream Filters => zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, mcrypt.*, mdecrypt.*
mcrypt
mcrypt support => enabled
mcrypt_filter support => enabled
mcrypt.algorithms_dir => no value => no value
mcrypt.modes_dir => no value => no value