import pandas as pd import asyncio from collections import defaultdict collect = defaultdict(list) #######创建处理一个对象的方法,并返回期物 async def dealone(chunk,sa... ...
分类:
编程语言 时间:
2019-01-14 18:59:17
阅读次数:
242
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml;... ...
分类:
其他好文 时间:
2019-01-14 18:56:03
阅读次数:
282
pip install fcntl Collecting fcntl Could not find a version that satisfies the requirement fcntl (from versions: ) No matching distribution found for ...
分类:
Windows程序 时间:
2019-01-14 11:02:30
阅读次数:
3935
很多都是C#调用window API 发送SendMessage,实现操作摄像头,但是C#调用window API的时候因为驱动的问题,总是弹出视频选择对话框,让人很是无语,看到大牛们有的截获到了window消息,然后模拟点击确定按钮,这是在是不敢恭维啊,还有的大牛根据API原型重写了,至于我是一只 ...
函数名的使用 嵌套的升级:闭包 迭代器 在说明函数名的使用时,必须熟记函数的结构: 函数名的使用: 1,函数名可以当做值赋给变量 2,函数名可以当做参数去传递 3,函数名可以当做返回值被返回 在这里插入一个比较绕的:接力 4,函数名可以当做元素存放在容器当中 lst = [foo,func,func ...
分类:
其他好文 时间:
2019-01-13 15:02:36
阅读次数:
203
Awesome Modern C++ A collection of resources on modern C++. The goal is to collect a list of resouces to help people learn about and leverage modern C ...
分类:
其他好文 时间:
2019-01-12 10:40:43
阅读次数:
233
一:简介 自动计算都是常驻内存的,没有人机交互。我们经常用到的就是console job和sql job了。sqljob有自己的宿主,与数据库产品有很关联,暂时不提。console job使用quartz.net框架,目前3.x已经支持netcore。 如果单台服务器运行计算,那就很简单了,quar ...
分类:
Web程序 时间:
2019-01-12 00:28:39
阅读次数:
135
ASP.NETCore学习记录(一) asp.net core介绍 Startup.cs ConfigureServices Configure 0. ASP.NETCore 介绍 ASP.NETCore是一个新的开源和跨平台的框架,用于构建如Web应用、物联网(IoT)应用和移动后端应用等连接到互 ...
分类:
Web程序 时间:
2019-01-12 00:14:07
阅读次数:
266
1. 免费上线网址:www.pythonanywhere.com-->Pricing & signup(购买和注册)-->Free(免费) 2. Create Beginner account-->注册-->邮箱验证 3.进入界面,分四部分 :控制台Console、文件Files、日志Noteboo ...
分类:
编程语言 时间:
2019-01-11 23:16:01
阅读次数:
399
1 package cn.bjext.collection; 2 3 public class Node { 4 Node previous; 5 Object obj; 6 Node next; 7 8 public Node(){} 9 10 public Node(Node previous, ...
分类:
其他好文 时间:
2019-01-11 14:46:06
阅读次数:
125