1 创建webpack.config.js文件 const path = require('path') module.exports = { entry: './src/main.js', output: { path: path.resolve(__dirname, 'dist'), filen ...
分类:
Web程序 时间:
2020-07-10 00:32:47
阅读次数:
84
使用工具:IDA pro v7.0,安装时自动安装Python 2.7.13(win32) 1. 首先使用IDA打开一个项目 2. File选项下 “Script file...”选项可选择idc或py文件,打开即运行,运行结果显示在界面下方的Output window中; “Script comm ...
分类:
编程语言 时间:
2020-07-09 22:45:05
阅读次数:
94
#Code-Output File-Two Way July 9, 2020 9:25 PM ##1.使用ofstream 输出 #include <fstream> SYSTEMTIME st; GetLocalTime(&st); CString strTime; strTime.Format( ...
分类:
其他好文 时间:
2020-07-09 22:11:03
阅读次数:
73
题目链接:http://poj.org/problem?id=3321 题目大意:给定一棵树,某些节点上有苹果,多次询问各子树上的节点数,并且在询问的中途随时可能新增和删除苹果。 Sample Input 3 1 2 1 3 3 Q 1 C 2 Q 1 Sample Output 3 2 emmm, ...
分类:
移动开发 时间:
2020-07-09 19:37:43
阅读次数:
84
https://blog.csdn.net/danmeng8068/article/details/96430660 1.分离视频音频流 ffmpeg -i input_file -vcodec copy -an output_file_video //分离视频流 ffmpeg -i input_f ...
分类:
其他好文 时间:
2020-07-09 19:12:12
阅读次数:
85
nohup rsync -rp --rsh=ssh /data/test/bi_270000_original_images glodon@192.168.8.195:/data02/cv_data/ nohup: ignoring input and appending output to `no ...
分类:
其他好文 时间:
2020-07-09 01:17:20
阅读次数:
104
package LeetCode_523 /** * 523. Continuous Subarray Sum * https://leetcode.com/problems/continuous-subarray-sum/description/ * * Given a list of non-n ...
分类:
其他好文 时间:
2020-07-09 00:47:21
阅读次数:
54
题目 Given a syntax tree (binary), you are supposed to output the corresponding infix expression, with parentheses reflecting the precedences of the ope ...
分类:
其他好文 时间:
2020-07-08 20:02:44
阅读次数:
64
题目链接:https://codeforces.com/problemset/problem/687/C 题目大意:给你n个数,然后让这些数相加组合,然后在这些组合的数里可以再相加组合搞出给定 k,输出这些组合的数。 Examples Input 6 185 6 1 10 12 2 Output 1 ...
分类:
其他好文 时间:
2020-07-08 01:41:40
阅读次数:
87
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1024 题目大意:给m 和n个数,将n个数分为m段,不交叉,求m段和的最大值。 Sample Input 1 3 1 2 3 2 6 -1 4 -2 3 -2 3 Sample Output 6 8 em ...
分类:
其他好文 时间:
2020-07-08 00:58:59
阅读次数:
82