码迷,mamicode.com
首页 >  
搜索关键字:gzip bzip2 xz zip tar cpio    ( 64604个结果
安装Anaconda3及使用Spyder编写python3程序
如果用Python3的一些包,特别是科学计算及数据处理的话,Anaconda是一个不错的发行版本,它预安装了很多流行的python3 的包,它的官网在 https://www.anaconda.com/ archives网址在 https://repo.anaconda.com/archive/ 有 ...
分类:编程语言   时间:2021-05-04 16:29:50    阅读次数:0
Raspberry Pi:树莓派安装Kali2021新版本
准备材料 树莓派4B kali系统镜像 SDFormatter (格式化工具) Win32DiskImager (镜像拷录工具) 镜像下载 kali下载地址:https://www.offensive-security.com/kali-linux-arm-images/ 这是 .xz 压缩文件,需 ...
分类:Web程序   时间:2021-05-04 16:16:02    阅读次数:0
[Tools] YAML
If you are new to YAML, here is a useful link to a blog on YAML. YAML tutorial Here is a free tool that was mentioned in the video that can convert YA ...
分类:其他好文   时间:2021-05-04 16:11:49    阅读次数:0
<JVM中篇:字节码与类的加载篇>导航
<JVM中篇:字节码与类的加载篇>01-Class字节码文件结构 <JVM中篇:字节码与类的加载篇>02-字节码指令集 <JVM中篇:字节码与类的加载篇>03-类的加载过程(类的生命周期)详解 <JVM中篇:字节码与类的加载篇>04-再谈类的加载器 ...
分类:其他好文   时间:2021-05-04 15:43:29    阅读次数:0
每日LeetCode - 1. 两数之和(Python3)
#时间复杂度O(N*N),空间复杂度O(1) #暴力法 def twoSum_baoli(nums: List[int], target:int) -> List[int]: for i in range(len(nums)-1): base = nums[i] for j in range(i+1 ...
分类:编程语言   时间:2021-05-04 15:39:57    阅读次数:0
Computer Networks COMPSCI 453: Select Lectures Notes (Resources and Foreword)
Computer Networking: a Top-Down Approach (8th ed.) : Select Lectures Notes Navigator 1 Resources and Introduction 2 Chapter 1: Introduction 3 Chapter ...
分类:Web程序   时间:2021-05-04 15:21:01    阅读次数:0
python中zip函数
python中zip函数 1、python中zip函数用于返回由可迭代参数共同组成的元组。 长度不一致时,以短的序列进行迭代。 >>> test1 = ["aaa","bbb","ccc","ddd"] >>> test2 = (111,222,333,444,555) >>> test3 = "a ...
分类:编程语言   时间:2021-05-04 15:19:44    阅读次数:0
linux中的-和--参数
在linux中,利用man查看某个命令的使用手册的时候,该命令参数通常会有-和--两种情况。通常而言,-说明参数是字符形式,后面接的是单字母命令。而--说明参数是字符串形式,对应相应-命令的全称,两者是等价的,如 xx -h 和 xx --help。 --参数:--后面通常接的是字符串。通常情况参数 ...
分类:系统相关   时间:2021-05-04 15:18:30    阅读次数:0
题解 CF990A 【Commentary Boxes】
题目 1 \(\le n,m \le 10^{12}\) , 1 \(\le a,b \le 100\) 由此可得, \(a , b\) 皆为正整数。 因此,加减运算同时存在的方案所需的代价一定不是最小的。 思路 \(n\) 每次加一达到比 \(n\) 大的且能被 \(m\) 整除的最小整数 或者 ...
分类:其他好文   时间:2021-05-03 12:58:00    阅读次数:0
用PreparedStatement批量插入数据
package com.czf.blob; import com.czf.util.JDBCUtils; import org.junit.Test; import java.sql.Connection; import java.sql.PreparedStatement; /** * 使用Pre ...
分类:其他好文   时间:2021-05-03 12:52:05    阅读次数:0
64604条   上一页 1 ... 38 39 40 41 42 ... 6461 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!