- 博客(29)
- 资源 (1)
- 收藏
- 关注
原创 github window下采用 公钥提交的一些坑
TortoiseGit 的 ssh必须是git下的ssh.exe公钥生成方式参考:https://blog.youkuaiyun.com/qq_22182989/article/details/81429616最后git clone 一下链接
2019-10-26 17:07:55
230
原创 前端(液化滤镜) 后台DJANGO
安装的模块版本:Django (1.11) dlib (19.7.0) python(3.6)效果演示图:dlib安装可参考:https://blog.youkuaiyun.com/ezhchai/article/details/79087046Anaconda python3.6 安装下载:https://www.anaconda.com/download/代码项目下载:http...
2018-12-04 12:58:33
626
转载 webstorm 的一些配置
npm install 太慢 就用 npm install -g cnpm --registry=https://registry.npm.taobao.orgwebstorm 安装https://www.jianshu.com/p/9b70a09ad74fvue element 后台管理https://github.com/PanJiaChen/vue-element-adm...
2018-12-03 19:35:32
366
原创 js object 添加键值
var obj = { id: i, name: 'name_' , };obj['SerialNo'] = "123"
2018-06-21 17:18:38
22426
原创 安卓 http Get请求和Json 解析
import android.util.Log;import org.json.JSONObject;import java.io.BufferedReader;import java.io.InputStream;import java.io.InputStreamReader;import java.net.HttpURLConnection;import java.net.U...
2018-05-25 14:38:50
3394
原创 安卓开发 log
public static final String TAG=”MainActivity”; //MainActivity是该文件名 Log.i(TAG,”你想输出的内容”);在logcat 里可看到内容
2018-05-23 16:36:42
180
转载 [VS2015] [asp.net] 允许远程访问本机正在DEBUG的服务
https://www.cnblogs.com/lionetchen/p/5884871.html 一、打开并编辑解决方案目录(不是工程目录)下的文件: .vs\config\applicationhost.config 增加黑体行:site name="XXXX" id="X">application path="/" applicationPool="Clr4IntegratedA
2018-01-24 11:54:34
455
原创 wpf DoubleAnimation对image控件进行缩放旋转
/// /// 用户控件是的动画 缩放效果 /// /// 控件名 /// 元素开始的大小 /// 元素到达的大小 public void ScaleEasingAnimationShow(UIElement element, double from, double to) {
2017-10-31 15:03:00
3581
原创 bat 程序杀死进程
for /f "tokens=2" %%a in ('tasklist ^|find /i "杀死的程序名.exe"') do set qqpid=%%atskill %qqpid%此外还要在当前目录添加tskill.exe文件
2017-10-11 10:12:04
4107
原创 QT creator 获取多个屏幕分辨率
QList AllScreen = a.screens();QList::iterator iter = AllScreen.begin(); for( ; iter != AllScreen.end(); iter++) { qDebug()geometry().height() ) geometry().width() ); }
2017-07-31 14:14:07
706
转载 C++ 单例模式
代码块头文件 #include <iostream>class BrowserSetting{public : static BrowserSetting *GetInstance() { if (m_Instance == NULL) { m_Instance = new BrowserSetting();
2017-07-15 15:34:31
241
转载 C++ 回调函数
回调函数就是一个通过函数指针调用的函数。如果你把函数的指针(地址)作为参数传递给另一个函数,当这个指针被用来调用其所指向的函数时,我们就说这是回调函数。回调函数不是由该函数的实现方直接调用,而是在特定的事件或条件发生时由另外的一方调用的,用于对该事件或条件进行响应。⑴定义一个回调函数;⑵提供函数实现的一方在初始化的时候,将回调函数的函数指针注册给调用者;⑶当特定
2017-07-04 10:40:26
260
转载 caffe + windows + python + gpu 配置
http://blog.youkuaiyun.com/xierhacker/article/details/51834563
2017-06-22 07:51:43
1308
转载 wpf 文件对话框
public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void button_Click(object sender, RoutedEventAr
2017-06-16 12:02:30
292
原创 c# 注册表开户启动
public class StartLaunch { //表示Window注册表中项级节点,读取 Windows 注册表基项HKEY_LOCAL_MACHINE public Microsoft.Win32.RegistryKey loca; public Microsoft.Win32.RegistryKey run;
2017-05-23 13:57:26
290
原创 wpf listview 的右键菜单 点击事件
Mainwindow.xmal<Window x:Class="vlctesst.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2017-05-20 11:17:22
7707
1
原创 C# 线程委托
public delegate void NextPrimeDelegate();private void bmpPaint2(){ System.Threading.Thread.Sleep(8); this.Dispatcher.BeginInvoke(
2017-05-05 10:25:08
647
转载 C# 多线程 定时器
DispatcherTimer dTimer = new System.Windows.Threading.DispatcherTimer(); dTimer.Tick += new EventHandler(bmpPaint); dTimer.Interval = TimeSpan.FromSeconds(0); dT
2017-04-17 17:57:25
476
原创 C# 线程池同步
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using System.Diagnostics;using System.IO;using System.Windows;using System.Runtime;na
2017-04-17 10:56:38
1362
原创 C# JSON
添加类using System.Web;using System.Web.Script.Serialization;程序例子 public string json = @"{'url': 'http: //mp.funslink.cn/version/101/', 'list': [ '1.png', '2.png'
2017-03-23 21:59:32
1277
原创 C# xml 读写操作
www 0 123 0 1 0 0 简单文本data.xml XmlDocument doc = new XmlDocument();doc.Load("data.xml");XmlElement root = doc.DocumentElement;//XmlNode node = root.Se
2017-03-22 11:14:02
207
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人