[2021 spring] CS61A Lab 6: Nonlocal, Mutability, Iterators and Generators ...
分类:
编程语言 时间:
2021-07-02 16:21:32
阅读次数:
0
Qt 字符串转md5 #include <QCryptographicHash> QString strToMd5(QString str) { QByteArray qba = QCryptographicHash::hash(str.toLatin1(), QCryptographicHash: ...
分类:
其他好文 时间:
2021-07-02 16:21:17
阅读次数:
0
ASP.Net Core 进程内(InProcess)托管 CreatDefultBuilder() 执行的一些任务 设置Web服务器 加载主机和应用程序配置表信息 配置日志记录 ASP.NET Core 应用程序的托管形式 在InProcess(进程内托管)或者 OutOfProcess(进程外托 ...
分类:
Web程序 时间:
2021-07-02 16:20:59
阅读次数:
0
背景:当时在接到一个任务,任务是输入imei,查出所有相关imei的数据,请求入下图,和返回如下图(最后说我理解的不对,我X,写了也白忙) 请求: { "imei":"xxx", "oaid":"xxx", "uid": "xxx", "appkey": "xxx", "idfa": "xxx", ...
分类:
其他好文 时间:
2021-07-02 16:20:36
阅读次数:
0
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
1、查看系统分区的详细情况 fdisk -l 2、对磁盘进行分区 #需要注意的是/dev/sdb要根据第一步查看的路径来设置,挂载的路径实际操作的时候略有不同 fdisk /dev/sdb 创建新分区 # 1 选择n创建 ? Command (m for help): n # 2 创建分区 Part ...
分类:
其他好文 时间:
2021-07-02 16:19:29
阅读次数:
0
一、多线程方法一(继承Thread类) package Demo01;//继承线程类Threadpublic class MyThread extends Thread{ //重写 run()方法 @Override public void run() { for (int i = 0; i < 2 ...
分类:
编程语言 时间:
2021-07-02 16:18:56
阅读次数:
0
检测Tomcat日志关键字异常 日常工作中经常会遇到Tomcat日志报特定的错误导致 Linux 服务器CPU暴涨,这时候需要重启应用才可以降下来 所以就需要写一个shell脚本,报出特定的错误就重启应用 shell脚本如下: [root@Mike-VM-Node-10_10_0_188 ~]# v ...
分类:
其他好文 时间:
2021-07-02 16:18:28
阅读次数:
0
用GDB调试程序(完全手册) http://blog.chinaunix.net/u2/87718/showart_1726531.html 查看源程序一、显示源代码 GDB 可以打印出所调试程序的源代码,当然,在程序编译时一定要加上-g的参数,把源程序信息编译到执行文件中。不然就看不到源程序了。当 ...
分类:
数据库 时间:
2021-07-02 16:18:03
阅读次数:
0
1、直接执行 app.go --type a 对于这种形式可以采用flag的形式进行,参考: wordPtr := flag.String("word", "foo", "a string") https://studygolang.com/articles/25754?fr=sidebar 2、r ...
分类:
其他好文 时间:
2021-07-02 16:17:44
阅读次数:
0
box-sizing:border-box; border:20px solid transparent; background-clip:padding-box,border-box; background-origin:padding-box,border-box; background-ima ...
分类:
其他好文 时间:
2021-07-02 16:17:27
阅读次数:
0
我的下拉数据都是循环出来的 <u-form-item v-for="(item,index) in list.tuinaResultOptions" :label="item.name" prop="item.value" :key="item.id"> <u-input v-if="item.ty ...
分类:
微信 时间:
2021-07-02 16:16:55
阅读次数:
0
1、打开防火墙 如果觉得打开防火墙危险,可以只允许node.js通过防火墙,方法如下: PS:我同事电脑的允许通过是这样的,可能是nodejs版本不同? 2、vue.config.js中配置 host:'0.0.0.0', port: 8080, disableHostCheck: true, ...
分类:
其他好文 时间:
2021-07-02 16:16:39
阅读次数:
0
操作DOM节点,做常用的是document.getElementById() 和 document.getElementsByTagName() , 以及css选择器document.getElementsByClassName(); document.getElementsByTagName() ...
分类:
其他好文 时间:
2021-07-02 16:16:13
阅读次数:
0
Map转二维数组,Map转数组 ©Copyright 蕃薯耀 2021-07-02 https://www.cnblogs.com/fanshuyao/ import java.util.ArrayList; import java.util.Collection; import java.util ...
分类:
编程语言 时间:
2021-07-02 16:15:46
阅读次数:
0
https://www.cnblogs.com/tibos/p/14958948.html ...
分类:
Web程序 时间:
2021-07-02 16:15:29
阅读次数:
0