- 博客(20)
- 资源 (3)
- 收藏
- 关注
原创 nodejs vue vue/cli 安装流程及错误处理 常用指令
win10电脑下 nodejs vue vue/cli 安装流程及错误处理 常用指令
2022-09-09 17:04:02
249
原创 数据库性能查询
SELECT(total_elapsed_time / execution_count)/1000 N'平均时间ms',total_elapsed_time/1000 N'总花费时间ms',total_worker_time/1000 N'所用的CPU总时间ms',total_physical_reads N'物理读取总次数',total_logical_reads/execution_count N'每次逻辑读次数',total_logical_reads N'逻辑读取总次数',total_
2021-12-24 17:49:40
485
原创 IIS技巧
因为服务器IIS不认SVG,WOFF/WOFF2 这几个文件类型,只要在IIS上添加MIME类型即可.svg image/svg+xmz.woff application/x-font-woff.woff2 application/x-font-woff
2020-05-16 17:59:16
197
原创 前端技术
暂记下,闲下来整理技术点vuehttps://www.runoob.com/vue2/vue-tutorial.htmlangularhttps://angular.cn/gulphttps://www.gulpjs.com.cn/docs/getting-started/explaining-globs/webpackhttps://www.webpackjs.com/
2020-05-11 09:30:56
183
原创 SQL-SERVER语法特性
--从一张表中取数据创建并插入一张新表 SELECT * into famen from Sheet1$ where Sheet1$.Subsid in('ab')
2019-11-18 10:58:58
484
1
原创 c# 语法糖
经过简化的Propertypublic string MyName { get; set; }public string MyName { get; protected internal set; }func与actionFunc是一个.Net内置的委托。Func<Result>,Func<T1,Result>是一个.Net内置的泛型委托。Func&...
2019-05-12 18:29:49
1095
原创 .net MVC Core新特性代码
[Validate]数据验证[Validate(CheckApp = false)]富文本验证取消CSHTML页面特性分部视图 占位符增加@RenderSection("header", false)去除false后页面如果不实现将报错cshtml页面调用JS和CSS@section header{ //样式表及JS文件引用}@Html.RawViewData:...
2019-05-12 18:07:03
195
原创 vs项目中SVN全局忽略样式
*.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store thumbs.db Thumbs.db *.bak *.class *.exe *.dll *.mine *.obj *.ncb *.lib *.log *.idb *.pdb *.ilk *.msi* .res *.pch *.suo *.exp *.*~ *.~* ~*.* cvs CVS...
2019-05-06 16:08:55
991
原创 ENUM 枚举类型互换
Enum-->StringEnum.GetName(typeof(Colors), Colors.Blue))String-->Enum(Colors)Enum.Parse(typeof(Colors), "Red")Enum-->Int(int)Colors.RedInt-->EnumColors color = (Colors)2...
2019-04-30 10:03:31
244
原创 List 数组 Dictionary 总结 --持续更新
List集合中查找元素//字符串查询var BytList = new List<string>(){ "ad","bb" };var byt = BytList.Where(x => x.IndexOf("a") >= 0).ToList();var BytList = new List<object>(){...};//单个条件var By...
2019-04-23 13:41:23
773
原创 谷歌浏览器播放海康威视监控
1:下载ffmpeg官网:http://ffmpeg.org/解压后,电脑右键属"属性"选择“高级系统属性”下在“环境变量”中的【PATH】路径追加 “c:\ffmpeg\bin;”2:利用ffmpeg将RTSP视频转成HLSffmpeg -i rtsp://用户名:密码@IP地址:554/H.264/ch1/main/av_stream -fflags flush_packets ...
2019-04-15 11:40:20
18859
1
原创 android 获取通讯录
在Android6.0以后我们需要手动去获取权限,我在程序里已经加入,其他权限可以参考Android 6.0权限管理以及动态申请,下面直接贴代码1.先写一个实体类,来放名字和号码public class PhoneDto { private String name; //联系人姓名 private String telPhone; //电话号码 ...
2019-01-11 10:43:55
870
1
原创 android 自动拨号
Manifest.xml文件中加上<uses-permission android:name="android.permission.CALL_PHONE"/>代码中写入startActivity(new Intent(Intent.ACTION_CALL, Uri.parse("tel:电话号码")));
2019-01-11 10:40:27
334
原创 屏幕截屏
public static void GetScreenImage(string imgpath) { //屏幕宽 int iWidth = Screen.PrimaryScreen.Bounds.Width; //屏幕高 int iHeight = Screen.PrimaryScre...
2019-01-11 10:30:33
255
原创 双网卡路由设置
安装双网卡后,默认情况下,会发现,安装双网卡的机器只能访问外网或者只能访问内网。解决方法:做个软路由,静态路由。假设内网的网络部署:192.168.0.0/24 网关为192.168.1.1192.168.0.0/24的意思是这个网段的网络ID是192.168.0.0,子网掩码是255.255.255.0外网网络部署:10.0.0.0/24 网关为10.0.0.110.0.0...
2019-01-09 10:52:17
1734
原创 获取URL中的参数
//获取url中的参数 function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if...
2019-01-09 10:22:54
674
原创 执行cmd程序
public static string RunCommand(string cmd) { try { //创建一个进程 Process p = new Process(); p.StartInfo.FileName = "cmd.exe"...
2019-01-09 10:09:28
618
1
原创 邮件发送
public static string fromEmail = "123123123@qq.com";//邮件发送方 public static string fromPwd = "xxxxxxxxxxxxx"; //邮件发送方密码/QQ授权码 public static string emailType = "smtp.qq.com";//邮件类型 smtp.1...
2019-01-09 10:05:41
273
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人