码迷,mamicode.com
首页 >  
搜索关键字:is == type    ( 51964个结果
安装虚拟机 出现问题VMware Workstation 与 Device/Credential Guard 不兼容。在禁用 Device/Credential Guard 后,可以运行 VMware Workstation。
VMware Workstation 与 Device/Credential Guard 不兼容。在禁用 Device/Credential Guard 后,可以运行 VMware Workstation。 bcdedit /set hypervisorlaunchtype off 想到 之前安装过 ...
分类:系统相关   时间:2021-06-05 18:25:37    阅读次数:0
vscode单步调试Android c++源码
步骤 注意:这个过程需要在Android源码环境中运行,可以使用adb端口转发工具,来连接服务器端的源码进行运行 关于adb端口转发:请看https://www.cnblogs.com/pyjetson/p/14828485.html 1. 运行gdbclient.py脚本 首先是使用vscode ...
分类:移动开发   时间:2021-06-05 18:17:03    阅读次数:0
将某字段做本地存储(缓存)eg:项目字段
存储字段 eg: <script type="text/javascript"> $('#option_btn').change(function () { project_id = $('#option_btn').val(); var project_ids = $('#option_btn') ...
分类:其他好文   时间:2021-06-05 18:11:43    阅读次数:0
Linux下删除当前目录及子目录下的所有.txt文件
因为某种应用场景我需要将特定目录下的txt文件进行清理,核心命令如下: find 目录 -name '*.txt' -type f -print -exec rm -rf {} \; 例如: find /home/tech/data_log -name '*.txt' -type f -print ...
分类:系统相关   时间:2021-06-05 17:53:08    阅读次数:0
python爬虫基础篇一,理解思路一看就会
相信有许多人都向往代码给人带来的魅力,今天带大家入门爬虫,感受一下,代码的快乐大家应该都听过爬虫,但是什么是爬虫呢? 其实可以了解为:通过编写程序,模拟浏览器上网,然后让其去互联网上抓取数据的过程 爬虫可以做什么呢?1、收集数据 2、调研 3、刷流量和秒杀 当然更多是为了就业,赚取很多的玛尼了。 爬 ...
分类:编程语言   时间:2021-06-05 17:52:49    阅读次数:0
Login Vagrant VM using Xshell
Connect Vagrant VM by using Xshell 1. View your vagrant ssh-config type this commend to view your vagrant ssh-config: vagrant ssh-config you will get ...
分类:系统相关   时间:2021-06-05 17:39:35    阅读次数:0
微信公众号 认证TOKEN
<?php header("Content-type:text/html;charset=utf8"); date_default_timezone_set("RPC"); $signature = $_GET["signature"]; $timestamp = $_GET["timestamp" ...
分类:微信   时间:2021-06-05 17:35:32    阅读次数:0
c++ 可变参数的打包到tuple,使用tuple传递参数
直接上代码 void Add(int a, double b, short c, const char * f) { std::cout << f << a << ", " << b << ", " << c << ";\n"; } void *p = nullptr; template <type ...
分类:编程语言   时间:2021-06-04 19:35:50    阅读次数:0
Linux - last 命令(Mac 电脑)
前言 为啥写这篇? 因为听 grep、sed 教程的时候有这个命令栗子 加上工作中,运维给我排查问题的时候也用到了,感觉挺重要,先了解为敬! 命令作用 显示用户和TTY的最后登录次数 啥是 TTY 终端(Terminal) =TTY 语法格式 last [-n] [-h host] [-t tty] ...
分类:系统相关   时间:2021-06-04 19:33:37    阅读次数:0
垂直水平居中div
// html <div id="bg_img"> <div> <input type="text" /> </div> </div> // css #bg_img{ display: grid; place-items: center; } ...
分类:其他好文   时间:2021-06-04 19:14:30    阅读次数:0
51964条   上一页 1 ... 15 16 17 18 19 ... 5197 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!