视频网站集

正规站 bilibili https://www.bilibili.com/ netflix https://www.netflix.com/browse 正常剧 低端影视 https://ddrk.me/ 奈飞影视 https://www.nfmovies.com/ 动画片 紫可可 http://zikeke.net/ AGE FANS https://www.agefans.cc/ 短视频 Coub https://coub.com/ 开眼 https://home.eyepetizer.net/ emmm X video https://www.xvideos.com/ Sex.com https://www.sex.com/ …

Win10 DPI FIX

Windows10 DPI Fix http://windows10-dpi-fix.xpexplorer.com/ 这个软件的功能是修复win10在缩放125%的情况下产生的字体模糊。 他的原理是调用win7/8.1的缩放DPI,这个老的DPI是专门

C#文件管理器、读取文件列表

打开文件夹和选择其中某一项 1private void openExplorer() 2{ 3 string FilePath = Directory.GetCurrentDirectory(); 4 //打开文件夹并选中文件 5 System.Diagnostics.Process.Start("Explorer", "/select," + FilePath + "\\" + "infolist.xml"); 6 //仅打开文件夹 7 System.Diagnostics.Process.Start(FilePath); 8} 读取某位置的指定后缀文件(列

Winform适配dpi

https://zhuanlan.zhihu.com/p/128588859 在项目中添加一个:应用程序清单文件 在清单文件app.manifest的 </assembly> 标签下添加 1<application xmlns="urn:schemas-microsoft-com:asm.v3"> 2 <windowsSettings> 3 <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware> 4 …

归档辅助小程序

最近写了一个工作用的小程序:https://github.com/kasusa/archive_helper 然后从开始写到现在大概花了5小时

Linkedlist删除指定值

info是我自己定义的一个类。 下面是如何删除linklist中指定item的办法。 1LinkedList<info> infolist = new LinkedList<info>(); 2 3string todelete = "1"; 4 5info tmpitem = new info(); 6foreach (var item in infolist) 7{ 8 if (item.no == todelete) 9 tmpitem

保存object到xml

对实体类做标记 [DataContract] 标记在class前。 [DataMember] 标记在需要保存的属性前。 1 [DataContract] 2public class Car 3{ 4 [DataMember] 5 public string name; 6 7 [DataMember] 8 double power; 9 10 [DataMember] 11 List<Wheel> wheels; 12} 拷贝这两个函数 保存:保存文件

Corntab计划任务

corntab 设置corntab任务,使用默认编辑器 1corntab -e 设置默认编辑器 1select-editor 设置任务,每天2:00执行 10 2 * * * /home/saber/DDREPORT/ddrp.sh

Hugo博客

剧情介绍 今天yr在我旁边弄新的hugo主题,我感觉他的新主题真的很清新,很不错,然后markdown记录之类的确实要比转化成html再放出来

Proxychains 使用教程

安装proxychains sudo apt install proxychains4 配置他的配置文件:sudo vim /etc/proxychains4.conf 取消掉的注释 dynamic_chain 将底部的网络协议和代理端口和ip改成你翻墙软件提供的: 1socks5 127.0.0.1 1089 2http

Shell

菜鸟shell教程 Shell 命令脚本 Shell 脚本文件的名称可以任意,建议将.sh 后缀加上,以表示是一个脚本文件。 创建脚本:vim example.sh 写好脚本的内容(就是连串

Ubuntu安装Qv2ray

replace your source with tuna speed up apt-update : https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ this is for ubuntu , but igeuss it will working well on other linux machines too. download Qv2ray here: https://github.com/Qv2ray/Qv2ray/releases download v2ray-core here (linux-64 …

Ubuntu换源

ps:也可以通过内置的software & update来测试和更换中国源 清华: https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ 阿里: https://developer.aliyun.com/mirror/ubuntu

Vim

vimtutor-ch 快速使用vim: 跳转 行之间的跳转 1[n] shift g #跳转到第n行 2gg #跳转到第一行 3shift g #跳转到最后一行 行内的跳转 1~ #切换大小写 2w #到下一个单词头部 30 #到