1.配置好Archlinuxcn源。 2.安装以下软件 sudo pacman -S fcitx-configtool fcitx-lilydjwg-git fcitx-sogoupinyin 3.编辑 .xprofile文件 export GTK_IM_MODULE=fcitx export QT ...
分类:
编程语言 时间:
2019-12-25 20:24:39
阅读次数:
164
[root@localhost src]# tar xf nginx-1.14.2.tar.gz [root@localhost src]# ls nginx-1.14.2 nginx-1.14.2.tar.gz [root@localhost nginx-1.14.2]# yum -y insta ...
分类:
其他好文 时间:
2019-12-24 09:29:31
阅读次数:
74
typedef struct { char str[MAX]; int length; }SString; BF算法 int Index(SString *S, SString *T) { int i, j; i = 1; j = 1; while (i<=S->length&&j<=T->leng ...
分类:
编程语言 时间:
2019-12-23 22:46:23
阅读次数:
133
1.charAt 返回字符串指定位置的字符 2.charCode 返回字符串指定位置字符Unicode编码 3.fromCharCode 用Unicode编码创建字符串 我们来看下例子 var str="我爱你" console.log(str.charAt(2)) //你 console.log( ...
分类:
其他好文 时间:
2019-12-22 20:00:36
阅读次数:
111
话不多说上代码: 1 2 3 4 5 6 7 8 9 1.判断是不是微信 function is_weixn(){ var ua = navigator.userAgent.toLowerCase(); if(ua.match(/MicroMessenger/i)=="micromessenger" ...
分类:
微信 时间:
2019-12-22 14:15:12
阅读次数:
143
void 隐藏同色() { UF_initialize(); //单选对象对话框 char 提示语[] = "选择对象,隐藏对象同色的所有对象", 对话框title[] = "单选对象隐藏同色", msg[256]; int 选择范围 = UF_UI_SEL_SCOPE_WORK_PART, 响应, ...
分类:
其他好文 时间:
2019-12-22 10:55:33
阅读次数:
74
1、安装mysql server sudo apt-get install mysql-server 2、查看默认生成的密码 sudo cat debian.cnf debian.cnf # Automatically generated for Debian scripts. DO NOT TOU ...
分类:
数据库 时间:
2019-12-21 20:12:08
阅读次数:
129
废话少说,直接上最新鲜的干货 当然,你得提前安装好bootstrap,router,element-ui,vue-axios 1.上递归组件,此处参考了某位大神的代码,具体不知道是谁,因为到处都有人用 <template> <div> <template v-for='menu in menuLis ...
分类:
其他好文 时间:
2019-12-21 17:05:14
阅读次数:
180
看到下面的语法,其他语言都没见过这种语法 然后在stack overflow上看到使用冒号的各种情形: https://stackoverflow.com/questions/17034475/in-c-sharp-what-category-does-the-colon-fall-into-and ...
分类:
其他好文 时间:
2019-12-21 11:36:21
阅读次数:
87
from PIL import Image import numpy as np #img1=Image.open('leaf.jpeg') #img=Image.open('people.jpeg') #img.show() #print("before image becoming number ...
分类:
编程语言 时间:
2019-12-21 10:05:33
阅读次数:
92