最新文章
-
linux压缩命令常用:tar,tgz,gzip,zip,rar
linux压缩命令常用的有:tar,tgz,gzip,zip,rar 一,tar (一) tar压缩命令 tar -cvf examples.tar files|dir #说明: -c, --create create a new ar…… -
leetcode461.汉明距离 Python
题目: 两个整数之间的 汉明距离 指的是这两个数字对应二进制位不同的位置的数目。 给你两个整数 x 和 y,计算并返回它们之间的汉明距离。 示例: 输入:x…… -
分布式学习 – MPICH编译与实践
下载release编译 参考官方README 源码编译 准备工作: git clone https://github.com/pmodels/mpich.git bash cd mpich git submodule update --init sudo…… -
ASP.NET Core 奇淫技巧之动态WebApi
一.前言 接触到动态WebApi(Dynamic Web API)这个词的已有几年,是从ABP框架里面接触到的,当时便对ABP的这个技术很好奇,后面分析了一波,也尝试过从ABP剥…… -
@AutoConfigurationPackage注解
@AutoConfigurationPackage注解 参考 AutoConfigurationPackage注解的作用是将 添加该注解的类所在的package 作为 自动配置package 进行管理。 可以通…… -
resin下rewrite示例
resin-web.xml <rewrite-dispatch> <!-- star seo --> <forward regexp='/([/w]+).htm$' target='/star.jsp?pinyin=$1'/> <!-- st…… -
[python从入门到实践]绘图显示不出中文字
前言 (文末送读者福利) 仅用于记录学习所得 import csv import matplotlib.pyplot as plt filename = 'sitka_weather_07-2018_simple.csv' with ope…… -
Python 安装模块后找不到模块以及Python代码自动补全设置的一个思路
起因是在做一些小玩意时安装了一些模块,但是运行时却找不到模块,于是多次重装VScode里边的Python部分,导致VScode自动补全也被玩掉了。查了很久的才终于搞…… -
-
java的lambda表达式,Java语言级别不支持lambda表达式“
I was testing out some new features of Java 8 and copied the example into my IDE (Eclipse originally, then IntelliJ) as shown here: http://docs.o……