摘要: 法一: 同时按下快捷键 'Win+R', 在打开的运行窗口中输入 'ie4uinit -show', 回车。 法二: 同时按下快捷键 'Win+R', 在打开的运行窗口中输入 '%localappdata%' , 回车。 在打开的文件夹中,找到 'Iconcache.db', 将其删除 (点击'查看 阅读全文
posted @ 2020-11-16 17:01 XKIND 阅读(336) 评论(0) 推荐(0)
摘要: //删除本条微博 function del_weibo(id){ console.log(id); var postdata = "mid="+id; fetch("https://www.weibo.com/aj/mblog/del?ajwvr=6", { "credentials":"inclu 阅读全文
posted @ 2020-04-29 12:03 XKIND 阅读(207) 评论(0) 推荐(0)
摘要: #define _WIN32_WINNT 0x0500 #include <Windows.h> #include <stdio.h> int main() { SetWindowLongW(GetConsoleWindow(), GWL_STYLE, GetWindowLongW(GetConso 阅读全文
posted @ 2020-04-29 11:46 XKIND 阅读(37) 评论(0) 推荐(0)
摘要: public sealed class LogHelper { /// <summary> /// 输出 ERROR 日志 /// </summary> /// <param name="logger"></param> /// <param name="message">文本消息</param> 阅读全文
posted @ 2020-04-29 11:34 XKIND 阅读(250) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc 阅读全文
posted @ 2020-04-29 11:29 XKIND 阅读(141) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8"?> <configuration status="INFO" monitorInterval="60"> <Properties> <Property name="app.name"></Property> <Property 阅读全文
posted @ 2020-03-17 15:10 XKIND 阅读(434) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="60 seconds" debug="false"> <include resource="org/springframework/boot/l 阅读全文
posted @ 2020-03-17 15:08 XKIND 阅读(136) 评论(0) 推荐(0)
摘要: 插件修改自 jquery.treegrid.extension.js,新增按需加载子节点的功能(即 lazyload: true 模式),需配合 TreeGrid plugin for jQuery 使用 改造思路如下: 1 > 首次只加载根节点 2 > 在节点上绑定点击事件,查询后台数据,动态加载 阅读全文
posted @ 2019-11-25 17:53 XKIND 阅读(1110) 评论(1) 推荐(0)
摘要: Simple TCP Server import java.net.InetSocketAddress; import java.net.SocketAddress; import java.util.Optional; import java.util.function.Consumer; imp 阅读全文
posted @ 2019-10-30 13:39 XKIND 阅读(120) 评论(0) 推荐(0)
摘要: Java CRC-8 工具类 /** * CRC-8 * * <table width="400px" border="1" cellpadding="0" cellspacing="0"> * <tr> * <th>名称</th> * <th>多项式</th> * <th>初始值</th> * < 阅读全文
posted @ 2019-10-28 17:42 XKIND 阅读(800) 评论(0) 推荐(0)