"Damn Single (单身狗)" is the Chinese nickname for someone who is being single. You are supposed to find those who are alone in a big party, so they can ...
分类:
其他好文 时间:
2021-03-01 13:14:50
阅读次数:
0
题目要求 写一个shell脚本,检查指定的shell脚本是否有语法错误,若有错误,首先显示错误信息,然后提示用户输入q或者Q退出脚本,输入其他内容则直接用vim打开该shell脚本。 参考答案 #!/bin/bash sh -n $1 2>/tmp/sh.err if [ $? -ne 0 ] th ...
分类:
系统相关 时间:
2021-02-27 12:59:01
阅读次数:
0
最近做个小实验,其中一部分要求将表单提交的数据转换为double,这个功能其实很简单直接一句Double.parseDouble(request.getParameter("chinese").trim())就可以实现,但因为是统计成绩,所以需要保留小数点后两位,所以各种百度发现了很多解决方法,这里 ...
分类:
编程语言 时间:
2021-02-19 13:32:43
阅读次数:
0
1、创建新的表空间 create undo tablespace undo_new datafile '/u01/oracle/oradata/yscsfhx/newundotbs01.dbf' size 5m; View Code 2、切换到新的Undo表空间上 alter system set ...
分类:
其他好文 时间:
2021-02-16 12:25:14
阅读次数:
0
Introduction: It's a paper to reorganize the knowledge of List Rendering in Vue official guide. So a lot of content is from the Vue Official guide. Th ...
分类:
其他好文 时间:
2021-02-16 12:03:49
阅读次数:
0
A. Required Remainder 题意: $t$组样例,判定一个正整数$n$是否存在一个大于$1$的奇数因子,\((1≤t≤10^4), (2≤n≤10^{14})\) 思路: 打表,发现只有满足$2^$的数字不存在奇数因子。 Code: int main(){ ios::sync_wit ...
分类:
其他好文 时间:
2021-02-15 12:39:39
阅读次数:
0
标准格式 <table> <thead></thead> 表头(字段信息) <tbody></tbody> 表单(数据信息) </table> 表头 <table> <thead> <tr> tr表示一行 <td>username</td> 正常文本 <th>password</th> 加粗文本 < ...
分类:
Web程序 时间:
2021-02-02 11:31:43
阅读次数:
0
1、修改配置文件 etc /locale.conf LANG="zh_CN.UTF-8" 2、查看更改后的系统语言变量 [root@5c46832b5c01 ~]# locale locale: Cannot set LC_CTYPE to default locale: No such file ...
分类:
编程语言 时间:
2021-01-28 12:23:02
阅读次数:
0
v-for循环遍历 遍历数组、列表 首先在script标签内实例化一个vue对象,在对象的data属性里面定义一个列表 <script src="../js/vue.js"></script> <script> const app = new Vue({ el: '#app', data: { th ...
分类:
其他好文 时间:
2021-01-26 12:08:45
阅读次数:
0
前言 由于我安装时选择的是英文最小安装,导致缺失了中文软件支持。解决办法: sudo apt install ibus-pinyin 那么问题来了,什麼是ibus? iBus & Fcitx iBus Intelligent Input Bus,简称IBus,是 Unix-like 操作系统下的多语 ...
分类:
系统相关 时间:
2021-01-26 11:50:30
阅读次数:
0