码迷,mamicode.com
首页 >  
搜索关键字:zip gzip tar    ( 64026个结果
前端生成uuid
github下载地址: https://github.com/uuidjs/uuid 1. Install npm install uuid 2. Create a UUID (ES6 module syntax) import { v4 as uuidv4 } from 'uuid'; uuidv ...
分类:其他好文   时间:2021-04-24 11:48:35    阅读次数:0
PHP8开启PHPStorm + Xdebug3
在windows 10中 开启 PHP8 + PHPStorm + Xdebug3 调试模型 ...
分类:Web程序   时间:2021-04-23 12:18:17    阅读次数:0
摄像头驱动--mmap
看到之前在csdn 上写的摄像头驱动总结,首先得感谢摄像头驱动这个东西 让我在读书时挣到了一笔生活费!! 现在把文章简要拷贝过来,以及去掉之前的代码然后随便扯一下文件的map吧 驱动核心: 将摄像头驱动中的yuv数据map到用户空间,便于访问。read 性能不够!! 原理是:通过mmap将内核太bu ...
分类:其他好文   时间:2021-04-23 12:17:55    阅读次数:0
python zipfile
import os, zipfile def deflate(paths, zip_path): z = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED, allowZip64=True, compresslevel=9) for path i ...
分类:编程语言   时间:2021-04-23 12:03:14    阅读次数:0
java 定时任务接口scheduledExecutorService
一、ScheduledExecutorService 设计思想 ScheduledExecutorService,是基于线程池设计的定时任务类,每个调度任务都会分配到线程池中的一个线程去执行,也就是说,任务是并发执行,互不影响。 需要注意,只有当调度任务来的时候,ScheduledExecutorS ...
分类:编程语言   时间:2021-04-23 12:00:54    阅读次数:0
Nginx Windows详细安装部署教程
1、下载nginx包 直接去官网下载:http://nginx.org/en/download.html 2、下载完成后,在指定位置解压缩,不要直接双击nginx.exe。 3、运行cmd,进入解压的指定目录下 4、启动nginx服务,启动命令为:start nginx,启动时会一闪而过是正常的 5 ...
分类:Windows程序   时间:2021-04-23 11:54:40    阅读次数:0
C# SynchronizationContext以及Send和Post使用总结
1、(SynchronizationContext)同步上下文的作用 SynchronizationContext其实就是实现线程之间通讯的。 2、创建(SynchronizationContext)同步上下文的方法 1)直接new创建一个SynchronizationContext同步上下文对象。 ...
分类:Windows程序   时间:2021-04-22 15:59:45    阅读次数:0
leetcode-二分查找相关
二分查找的基本框架 int binarySearch(int[] nums, int target) { int left = 0, right = ...; while(...) { int mid = left + (right - left) / 2; if (nums[mid] == tar ...
分类:其他好文   时间:2021-04-22 15:54:34    阅读次数:0
获取前一天日期
Date dNow = new Date(); //当前时间Date dBefore = new Date();Calendar calendar = Calendar.getInstance(); //得到日历calendar.setTime(dNow);//把当前时间赋给日历calendar.a ...
分类:其他好文   时间:2021-04-22 15:38:17    阅读次数:0
微信小程序——如何快速的打造一份小程序简历
前言 一个使用uniapp开发的微信小程序简历 步骤 简历仓库:https://github.com/wangyang0210/Resume ...
分类:微信   时间:2021-04-21 13:00:18    阅读次数:0
64026条   上一页 1 ... 44 45 46 47 48 ... 6403 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!