自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (3)
  • 收藏
  • 关注

原创 youtube 批量下载视频列表并转换为mp3

https://github.com/yt-dlp/yt-dlp./yt-dlp --ffmpeg-location D:\ffmpeg\bin\ -i PLAl9V9jtDyJ2qNGlyiZHlyVJ7K2f4Y8oC -x --audio-format mp3

2023-03-27 11:33:00 193

原创 python/pip在msys2环境下反复安装报错 : --plat-name must be one of ('win32', 'win-amd64', 'win-arm32', 'win-arm6...

弃用msys2自带的python,它有问题用官网的python,注意环境变量设置。

2022-07-15 21:52:00 280

原创 256x256大图标在桌面上仅仅显示为中等图标的解决方案

用这个网站https://icoconvert.com/然后用restorator替换

2022-06-13 12:40:00 48

原创 LTSC如何安装高于office 2007的office版本/LTSC企业版无法安装office的解决办法

提示报错缺少xxx服务不存在其实就是软件包验证服务不存在,导致KMS激活不了,也就无法打开闭眼安装 https://github.com/kkkgo/LTSC-Add-MicrosoftStore/releases 即可会附赠一个软件包验证服务...

2022-03-04 22:05:00 51

原创 C++左右括号匹配问题(并给出括号的位置 并且允许非括号字符插入)修改版

#include<iostream>#include<algorithm>#include<stack>#include<map>#include<string>#include<malloc.h>using namespace std;struct _Token{int begin;int end;}T...

2021-04-05 08:43:00 37

原创 [2841] A*B Problem (50pts WA & TLE代码)

TLE:#include<iostream> #include<cstring> #include<algorithm> #define obj (void) const int L=1100; using namespace std; string mul(string a,string b)//高精度乘法a,b,均为非负整数 { ...

2020-12-06 09:50:00 30

原创 [1008] 三连击 & [1618] 三连击 (升级版)

应该比较好懂吧....用了大量define#include<stdio.h>#define G1(A) A/1%10 /* 取个位数 */#define G2(A) A/10%10 /* 取百位数 */#define G3(A) A/100%10 /* 取千位数 */#define DouBuDeng(A) ((G1(A)!=G2(A))&&(G1(...

2020-10-05 09:54:00 24

原创 [P1980] 级数求和

#include<stdio.h>#include<string.h>#include<stdlib.h>#define lu unsigned long long#define str(a,b) sprintf(a,"%llu",b)int main(){ lu n,x,t,rk=0; char*d; scanf("%llu %llu",&a...

2020-09-01 18:28:00 33

原创 归纳几种FreeBasic中的几种变量声明方式

1.Dim a as string2.Dim as string a,b,c3.const as string a="hello"4.Dim a As const string=Str(Rnd)暂时只想到这几种了....

2020-07-29 12:53:00 23

原创 随手做的bat

事情是这样的由于我喜欢捣鼓内存盘(感觉8g内存除了开虚拟机之外用不完)而新机器与这个内存盘不兼容(开机时)cd "C:\Program Files\SoftPerfect RAM Disk\""cmd /c ramdiskc.exe /add:w /size:128m /fs:fat""cmd /c ramdiskc.exe /add:A /size:96m /fs:fat"mkdi...

2020-04-13 08:52:00 25

原创 haskell 编译器 &解释器 platform v8.6.5便携版 x64

1.精简掉了你用不着也看不懂的文档2.精简掉了包管理器3.精简掉了stack.exe runhaskell.exe runghc.exe压缩包体积不足200MB主要是因为官网的haskell platform体积大 下载慢而上传下载地址1https://download.csdn.net/download/m0_46690952/12289285下载地址2https://pan.ba...

2020-04-01 20:53:00 42

原创 FreeBasic实现脚本解释器:Vuscript(持续更新)

此页面维护中...请前往http://github.com/znkzz/Dust-Lang<build:343>-现在可以创建变量了-增加关于变量类型的文档<build:257>-修复少许bug-增加注释-代码预处理完成<build:173>-解决不能编译为64位程序的玄学bug<build:147>-实现了基本框架...

2020-03-31 18:56:00 30

原创 To Do

1.熟练掌握Haskell、C++、c#Asm、简单的winapi、sdl2.linux、css、html、php、js、typescript以及一些web框架3.web安全、Python4.二进制安全f.luxVB->C[Now]->PYTHON->C++->JAVA->服务器->win32->linux->haskell->p...

2020-03-28 14:44:00 25

原创 测试代码高亮

main=do print"test" printStr"\n"function echo (){var a="this is a example";alert("hello world "+a);}sub main()dim c(4) as integerreturnend sub

2020-03-27 13:53:00 25

原创 c语言函数最大能递归的次数多少

date 2020/3/24int main(){main();}这是一小段c代码,但是,main函数不能被除系统之外的东西调用,这属于UB行为它如何运行完全靠编译器,所以我不会这样写。#include <stdio.h>void Main(unsigned long long t);int main(){Main(0);}void Main(unsigned...

2020-03-27 08:50:00 66

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除