To enable SRv6 support, at least CONFIG_IPV6 must be enabled. The default built-in SRv6 code supports elementary processing of SR-enabled packets. For ...
分类:
系统相关 时间:
2020-05-08 20:10:42
阅读次数:
154
package com.intfish.util; /** * */ import org.apache.commons.lang3.StringEscapeUtils; import org.apache.commons.lang3.text.StrBuilder; import java.io. ...
分类:
其他好文 时间:
2020-05-08 20:08:23
阅读次数:
79
前段时间,同事要我帮忙弄个浏览器调用摄像头拍照的demo给客户,一想,这个简单,直接上代码: 1 <video id="video" autoplay width="300" height="400"></video> 2 <canvas id="canvas" width="300" height ...
分类:
Web程序 时间:
2020-05-08 13:13:33
阅读次数:
337
Node 10 参见 "Node CHANGELOG_V10" vm: add dynamic import support。支持动态的 import。 但 ES 模块仍旧属于实验性质,并不能在代码中直接使用 import/export 除非开启实验性质的 flag,想使用还是得参见 "如何在 No ...
分类:
其他好文 时间:
2020-05-08 13:03:23
阅读次数:
448
最近给T470p装了BCM94352z网卡和黑苹果+kali linux 的双系统,黑苹果最好WiFi免驱,蓝牙要折腾一下。切回kali发现WiFi没有信号了 参考https://www.dell.com/support/article/zh hk/how10806/how to install b ...
分类:
移动开发 时间:
2020-05-06 14:22:06
阅读次数:
353
推荐插件: C/C++(建议关闭补全和错误提示功能,因为实在是太烂了) ccls clangd Code Runner Cmake CMake Tools 其他好用的插件: GNU Assembler Language Support Bracket Pair Colorizer 2 Visual ...
分类:
编程语言 时间:
2020-05-05 10:39:40
阅读次数:
734
DB facade实现CURD(操作数据库 手写原生SQL语句) use Illuminate\Support\Facades\DB;插入数据 (返回bool 插入是否成功) /$result = DB::insert('insert into student(name,age) values(?, ...
分类:
其他好文 时间:
2020-05-04 21:11:14
阅读次数:
69
#coding=gbkimport osimport timefrom selenium import webdriverfrom selenium.webdriver.common.by import By #导入by方法from selenium.webdriver.support.wait i ...
分类:
编程语言 时间:
2020-05-04 13:31:50
阅读次数:
91
如果系统里没有SQF这个tcode,可以参考note 1814328: SQF: Plug In for Source Code Scans进行安装。 ABAP static analysis tool SQF is a static code analysis tool developed in ...
分类:
其他好文 时间:
2020-05-04 13:19:07
阅读次数:
63
java.util.Arrays 类是 JDK 提供的一个工具类,用来处理数组的各种方法,而且每个方法基本上都是静态方法,能直接通过类名Arrays调用。 1、asList public static <T> List<T> asList(T... a) { return new ArrayList ...
分类:
编程语言 时间:
2020-05-04 00:33:35
阅读次数:
63