码迷,mamicode.com
首页 >  
搜索关键字:compress advanced low    ( 4944个结果
Data Mining UVA - 1591
Dr. Tuple is working on the new data-mining application for Advanced Commercial Merchandise Inc. One of the subroutines for this application works wit ...
分类:其他好文   时间:2021-02-02 11:09:22    阅读次数:0
H5 上传图片的前端 利用 canvas 压缩图片
H5 通过 input 获取本地图片后上传服务器是,图片大小会极大的耗费网络,和服务器资源,所以此时我们就要对上传的图片进行压缩后上传compress(file) { if (file.file && (file.file.size > 1024*1024*.3)){ // 设置文件压缩的阈值 le ...
分类:Web程序   时间:2021-01-30 11:56:13    阅读次数:0
DVWA-XSS(Reflected-反射型)
难度1-Low 查看代码: <?php // Is there any input? if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) { // Feedback for end user echo '<pre>He ...
分类:其他好文   时间:2021-01-29 11:44:05    阅读次数:0
gitlab操作
新建一个gitlab,用于提交代码,然后git bash。 A20331@A200331R MINGW64 /d/workspace/gitlab (master)$ git clone git@10.240.1.140:tools-dev-team/ecusimulatorrecorder.git ...
分类:其他好文   时间:2021-01-22 11:59:10    阅读次数:0
celery并发方式
Celery支持不同的并发和序列化的手段 并发:Prefork, Eventlet, gevent, threads/single threaded 序列化:pickle, json, yaml, msgpack. zlib, bzip2 compression, Cryptographic mes ...
分类:其他好文   时间:2021-01-18 10:52:48    阅读次数:0
LeetCode938. 二叉搜索树的范围和
题目 1 class Solution { 2 public: 3 int sum = 0; 4 int rangeSumBST(TreeNode* root, int low, int high) { 5 dfs(root,low,high); 6 return sum; 7 } 8 void d ...
分类:其他好文   时间:2021-01-14 11:04:51    阅读次数:0
scan compress 实践
1.read_gate_and_protocol read_ddc mapped/ORCA.ddc ;# note this was created during the unmapped flow current_design ORCA link #source -echo -verbose sc ...
分类:其他好文   时间:2021-01-07 11:56:13    阅读次数:0
连通分量相关代码
// 割边 void tar(int x,int in_e) { dfn[x] = low[x] = ++cnt; for(int i=hd[0][x],y=vr[i]; i; i=nt[i],y=vr[i]) if(!dfn[y]) { tar(y,i); low[x] = min(low[x], ...
分类:其他好文   时间:2021-01-06 11:58:04    阅读次数:0
yii2项目配置-composer慢解决办法
因为工作上需要建立一个基于学校的cms内容管理系统。并且需要对教室等活动进行对应的预约管理。因为自己虽然写过1年的php。但是技术上还是比较菜的。之前做过类似yii的项目。因此借着这个机会用yii的advanced模版来进行对应功能的编写。程序开发水平的话因为自己比较菜。一个是作为自己的工作记录,另 ...
分类:其他好文   时间:2020-12-31 12:31:02    阅读次数:0
Advanced Installer打包MySQL
一.精简mysql Mysql数据库比较大,可以进行精简。这样可以减少mysql打包后的大小。 精简方案:(该方案针对绿色解压版的mysql) 1:只保留,share,bin 2::删除BIN下面除以下三个文件之外的所有文件: libmysql.dll(MYSQL5中的文件,若有则保留没有也没事) ...
分类:数据库   时间:2020-12-28 11:53:57    阅读次数:0
4944条   上一页 1 ... 4 5 6 7 8 ... 495 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!