上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 55 下一页
摘要: a b c d e f g h i j k l m n o p q r s t u v w x y z 默认使用所有, 且于最后 -n --max-args=MAX-ARGS use at most MAX-ARGS arguments at a time 使用 -n1 使 xargs 每次传入一个 阅读全文
posted @ 2021-06-24 14:06 ascertain 阅读(42) 评论(0) 推荐(0) 编辑
摘要: set +o history 关闭 set -o history 打开 export HISTCONTROL=ignorespace or export HISTCONTROL=ignoreboth [space] command # 此command不会被记录 export HISTSIZE=0 阅读全文
posted @ 2021-06-23 17:51 ascertain 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 官网: /source/index.html (openssl.org) git: GitHub - openssl/openssl: TLS/SSL and crypto library 下载源码包 , 安装依赖 wget https://www.openssl.org/source/openss 阅读全文
posted @ 2021-06-22 18:02 ascertain 阅读(175) 评论(0) 推荐(0) 编辑
摘要: public class Queen { protected int num = 8; // the number of queens // chessboard索引表示行,即第几个queen,chessboard[i]=value,表示第i+1个queen,位于value+1列 int[] che 阅读全文
posted @ 2021-06-22 11:20 ascertain 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Labyrinth public class Labyrinth { public static void main(String[] args){ Map map=new Map(); map.init(); map.show(); Mouse mouse=new Mouse(); mouse.s 阅读全文
posted @ 2021-06-20 16:46 ascertain 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 杨辉三角 import java.util.Scanner; public class B { public static void main(String[] args) { int[][] array=new int[10][]; for(int i=0;i<array.length;++i){ 阅读全文
posted @ 2021-06-20 10:59 ascertain 阅读(45) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class B { public static void main(String[] args) { String[] names={"aa","bb","cc","dd"}; System.out.println("name: ") 阅读全文
posted @ 2021-06-19 15:21 ascertain 阅读(38) 评论(0) 推荐(0) 编辑
摘要: (Array.length-1)/ 2 and Array.length/2 取中值 index Array.length is even * * * * * * ^ (Array.length-1)/2 * * * * * * ^ Array.length/2 当Array.length is e 阅读全文
posted @ 2021-06-19 12:18 ascertain 阅读(85) 评论(0) 推荐(0) 编辑
摘要: Universal: Disable Bell In the Terminal sed -i '/bell-style none/c \set bell-style none' /etc/inputrc Ubuntu: Setup Fountain sed -i 's@http://.*.ubunt 阅读全文
posted @ 2021-06-18 13:22 ascertain 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 在win10专业版操作系统中,我们经常会把一些经常使用的应用固定到任务栏中,方便打开。但是有用户在打开固定在任务栏上的应用图标之后却遇到了无法打开的现象,提示:该文件没有与之关联的应用来执行该操作,该怎么办呢?出现这样的问题首先我们可以尝试直接从源文件地址或者桌面快捷方式进行打开会不会出现这个问题? 阅读全文
posted @ 2021-05-27 09:51 ascertain 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 添加文件和文件夹右键菜单: npm script: Cursor: Whitespace: "workbench.colorCustomizations": { "editor.selectionForeground": "#00AC00", "editor.foreground": "#00AC0 阅读全文
posted @ 2021-05-26 18:08 ascertain 阅读(131) 评论(0) 推荐(0) 编辑
摘要: centos.repo [base] name=CentOS-6.10 enabled=1 failovermethod=priority baseurl=http://mirrors.cloud.aliyuncs.com/centos-vault/6.10/os/$basearch/ gpgche 阅读全文
posted @ 2021-05-20 15:06 ascertain 阅读(277) 评论(0) 推荐(0) 编辑
摘要: npm config -h npm config list prefix 为 --globa 的安装路径 npm config edit 调用notepad编辑 npm ls npm list -g 全局模块 npm list recast 阅读全文
posted @ 2021-05-18 16:13 ascertain 阅读(32) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE vaunt ( id INTEGER PRIMARY KEY, NAME VARCHAR ( 55 ) NOT NULL, PASSWORD VARCHAR ( 55 ) NOT NULL, email VARCHAR ( 55 ), create_time TIMESTA 阅读全文
posted @ 2021-05-18 11:12 ascertain 阅读(71) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class B{ public static void main(String[] args){ Scanner scanner1 = new Scanner(System.in); byte level=scanner1.nextB 阅读全文
posted @ 2021-05-17 06:33 ascertain 阅读(69) 评论(0) 推荐(0) 编辑
摘要: select concat('drop table ',table_name,';') from information_schema.tables where table_schema='employees' and table_name rlike '^d.*$' into outfile 'd 阅读全文
posted @ 2021-05-14 12:21 ascertain 阅读(185) 评论(0) 推荐(0) 编辑
摘要: #!/bin/env bash rootdir=/mnt/sysroot libcp() { for i in `ldd $1|grep -o '/[^[:blank:]]*'`;do libdir=`dirname $i` [[ -d $rootdir$libdir ]] || mkdir -p 阅读全文
posted @ 2021-05-09 11:51 ascertain 阅读(42) 评论(0) 推荐(0) 编辑
摘要: #!/bin/env bash username=$1 { id $username [[ $? -ne 0 ]] && useradd --comment '$username' $username && echo $username|passwd --stdin $username } >& / 阅读全文
posted @ 2021-05-09 11:47 ascertain 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 显示->段落标记 段落 -- 中文板式 -- 允许西文在单词中间换行 阅读全文
posted @ 2021-05-09 08:54 ascertain 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 修改项目默认路径 @SuppressWarnings({"SpellCheckingInspection"}) 显示空格 Comment Format: Keymap: 多选: alt+shift,然后用鼠标左键点击文本,可以让光标在多个位置出现 按住 Ctrl+Shift+Alt,用鼠标选则多行文 阅读全文
posted @ 2021-05-07 15:55 ascertain 阅读(183) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 55 下一页