码迷,mamicode.com
首页 >  
搜索关键字:all in one    ( 50303个结果
ThreadLocal源码分析以及why导致内存泄露
1 ThreadLocal? This class provides thread-local variables. These variables differ from their normal counterparts in that each thread that accesses one ...
分类:其他好文   时间:2020-07-24 16:00:59    阅读次数:76
监控多条微信公众号链接阅读量,并可视化--模拟鼠标键盘
1 from time import sleep 2 import random,pyperclip,os 3 import pyautogui 4 from openpyxl import load_workbook 5 import datetime 6 import tkinter as tk ...
分类:微信   时间:2020-07-24 15:58:58    阅读次数:135
初始DOS命令与批处理
网络测试命令 1、如何查看IP地址 ipconfig # 查看IP地址的基本信息 ipconfig /all # 查看IP地址的详细信息 2、测试网络的连通性 ping 目标IP # 测试网络的连通性 ping -t 目标IP地址 # 一直ping ping -n 数字 目标IP地址 # 修改pin ...
分类:其他好文   时间:2020-07-24 10:01:39    阅读次数:68
2020杭电多校第二场
1010.Lead of Wisdom 暴搜。。。我去除了比某一同类装备4个属性都低的装备 #include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i, a, b) for (register i ...
分类:其他好文   时间:2020-07-23 23:22:33    阅读次数:184
93. Restore IP Addresses 93.恢复IP地址
Given a string containing only digits, restore it by returning all possible valid IP address combinations. A valid IP address consists of exactly four ...
分类:其他好文   时间:2020-07-23 23:22:00    阅读次数:75
SSM前后端原理案例,复制直接可用
即Spring+SpringMVC+MyBatis 步骤 导包(引入依赖) 2.配置web.xml 文件 <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.su ...
分类:其他好文   时间:2020-07-23 23:11:39    阅读次数:74
【Vue】provide/inject实现组件通信
provide/inject是Vue.js2.2.0版本后新增的API: provide:Object | () => Object//一个对象或返回一个对象的函数。该对象包含可注入其子孙的属性。 inject:Array<string> | { [key: string]: string | Sy ...
分类:其他好文   时间:2020-07-23 23:05:12    阅读次数:68
Colab运行GitHub代码
前提:代理选“德国”,稳定一点 ~ 1. 将Colab与Good Drive关联起来 from google.colab import drive drive.mount('/content/drive') 2.定位到Drive的根目录,并查看根目录下的文件 import os os.chdir(" ...
分类:其他好文   时间:2020-07-23 22:49:20    阅读次数:97
RedisConnectionException: Unable to connect
问题:使用windos客户端RedisDestopManger可以连接,证明服务器连接正常,项目配置出现问题分析:原因在application.properties文件中最后多了一个空格总结:配置properties文件时要注意空格引起redis无法连接
分类:其他好文   时间:2020-07-23 22:47:46    阅读次数:65
pillow 压缩和放大图片
记住这个 resize()方法 from PIL import Image img=Image.open("test.png") x,y=img.size print(x,y) k=5 x=int(x*k) y=int(y*k) newimg=img.resize((x,y),Image.ANTIA ...
分类:其他好文   时间:2020-07-23 22:37:20    阅读次数:83
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!