本文最后更新于(2023-2-14 21:57:03),链接可能失效,内容可能难以复现。请注意甄别。
工具:Malware-Patch
利用证书来屏蔽Windows下的流氓软件,下载https://github.com/the1812/Malware-Patch
举例:WPS和金山毒霸都是金山的证书,如果使用这个工具屏蔽证书,这两个软件都无法使用。 标签: 软件
如何下载tumblr视频
本文最后更新于(2023-1-10 09:26:18),链接可能失效,内容可能难以复现。请注意甄别。
© Sunplace,2017
引言
tumblr曾经是一个纯洁的地方,当年我的博客还在那里…
既然有flickr下载图片的方法(去看看),就有tumblr下载视频的方法。
如果上传者有版权说明,请不要下载。 ![[disdain]](https://blog.kkii.org/wp-includes/images/smilies/i_f16.png)





使用VS Code 来编写.NET程序
本文最后更新于(2023-1-20 10:41:18),链接可能失效,内容可能难以复现。请注意甄别。
© Sunplace,2017
引言
Visual Studio Code是相对于Visual Studio更轻量的程序,如果不想用动则5、6G的Visual Studio,可以试试这个。
1.下载安装Visual Studio Code。




>cd d:\test D:\test>dotnet new显示:
Welcome to .NET Core! ——————— Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet –help to see available commands or go to https://aka.ms/dotnet-cli-docs. Telemetry ————– The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include commandline arguments. The data is collected by Microsoft and sh ared with the community. You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell. You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry. Configuring… ——————- A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will onl y happen once. Decompressing 100% 3713 ms Expanding 100% 30901 ms Created new C# project in D:\test.
6.在项目文件夹下生成了Program.cs和project.json两个文件。
7.用VS Code打开Program.cs,看到以下内容:
using System; namespace ConsoleApplication { public class Program { public static void Main(string[] args) { Console.WriteLine("Hello World!"); } } }你可以重新编写或者修改此文件。 8.编译程序,在集成终端中输入:
D:\test>dotnet restore提示:
log : Restoring packages for d:\test\project.json… log : Writing lock file to disk. Path: d:\test\project.lock.json log : d:\test\project.json log : Restore completed in 8063ms.
9.接着运行,
d:\test>dotnet run提示:
Project test (.NETCoreApp,Version=v1.1) will be compiled because expected outputs are missing Compiling test for .NETCoreApp,Version=v1.1 Compilation succeeded. 0 Warning(s) 0 Error(s) Time elapsed 00:00:04.5183046 Hello World!
https://code.visualstudio.com/docs/runtimes/dotnet
字幕制作软件
本文最后更新于(2016-9-17 23:12:22),链接可能失效,内容可能难以复现。请注意甄别。
© Sunplace,2016
刚开始学习编辑视频,在这里说premiere是有点班门弄斧。但批量字幕在premiere中仍然是件繁琐的事情。试过网上虽然有用aftereffect插件导入,还有ass转srt也没有字体样式和对齐。
1.将编辑后的视频从premiere导出,栗子为mp4格式。
2.使用Arctime将字幕从已有的字幕文件或者纯文本文件中导入(支持双语和水印,其他功能请访问官网)。
3.调整字幕的内容、起始位置、持续时间,主要用做时间轴。
4.满意后直接Ctrl+S保存为与视频同名的ass文件。
5.再使用Aegisub打开字幕。
6.新建一个样式,然后进行批量修改。






