会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
笔记本
首页
管理
上一页
1
2
3
4
5
6
···
8
下一页
2021年12月19日
用cat命令合并文件
摘要: linux的cat命令 cat file1 file2 file3 > file 将file1,file2,file3,重定向到file文件 windowns系统没有cat,可以下载git的客户端 https://git-scm.com/downloads
阅读全文
posted @ 2021-12-19 11:37 xuecl
阅读(768)
评论(0)
推荐(0)
2021年12月5日
selenium切换网页标签窗口
摘要: from selenium import webdriver from selenium.webdriver.common.keys import Keys # 拿到键盘的按键 # 通过 webdriver 拿到 Chrome 对象 web = webdriver.Chrome(executepat
阅读全文
posted @ 2021-12-05 14:16 xuecl
阅读(464)
评论(0)
推荐(0)
2021年12月4日
下载梨视频
摘要: import time import requests # 返回视频的真实下载地址 def get_real_video_url(video_id): # 视频地址解析接口 url = 'https://www.pearvideo.com/videoStatus.jsp?contId={}'.for
阅读全文
posted @ 2021-12-04 11:38 xuecl
阅读(73)
评论(0)
推荐(0)
2021年11月30日
用selenium抓取网易云音乐评论
摘要: import time import random from selenium import webdriver def crawl(): # 网易云音乐 只要平凡 url = 'https://music.163.com/#/song?id=574919767' # 拿到chrome参数配置对象
阅读全文
posted @ 2021-11-30 23:19 xuecl
阅读(207)
评论(0)
推荐(0)
2020年12月3日
基础
摘要: 智能合约概述 以太坊solidity学习记录 深入理解Solidity——全局变量
阅读全文
posted @ 2020-12-03 16:52 xuecl
阅读(50)
评论(0)
推荐(0)
2020年8月27日
忘记wifi密码???在win10系统的cmd中,查看已经连接上的wifi密码
摘要: win + r ,然后输入 cmd 输入命令:netsh wlan show profiles name="你的wifi的名字" key = clear 安全设置中的关键内容就是wifi密码了
阅读全文
posted @ 2020-08-27 09:54 xuecl
阅读(242)
评论(0)
推荐(0)
2020年6月10日
指针函数与函数指针的区别
摘要: 指针函数:一个函数的返回值为指针,则该函数叫做指针函数。 int *fun(int a,int b){ } 函数指针:指向一个函数的指针变量,用来存放函数的入口地址。 int (*fun)(int,int);
阅读全文
posted @ 2020-06-10 18:35 xuecl
阅读(307)
评论(0)
推荐(0)
指针数组与数组指针的区别
摘要: 指针数组:存放指针的数组,本质上来说,它是一个数组 int *a [3]; 数组指针:指向数组的指针,本质上来说,它是一个指针 int (*a)[3];//指向一个int a[][3]数组的指针
阅读全文
posted @ 2020-06-10 18:05 xuecl
阅读(289)
评论(0)
推荐(0)
2020年6月7日
c#中const与readonly的区别
摘要: https://www.cnblogs.com/royenhome/archive/2010/05/22/1741592.html
阅读全文
posted @ 2020-06-07 12:18 xuecl
阅读(121)
评论(0)
推荐(0)
2020年6月5日
c/c++面向过程与面向对象的区别
摘要: https://www.cnblogs.com/pylearner/p/10903266.html
阅读全文
posted @ 2020-06-05 23:58 xuecl
阅读(355)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
8
下一页