上一页 1 2 3 4 5 6 7 8 9 10 ··· 29 下一页
摘要: tar -c: 建立压缩档案-x:解压-t:查看内容-r:向压缩归档文件末尾追加文件-u:更新原压缩包中的文件 这五个是独立的命令,压缩解压都要用到其中一个,可以和别的命令连用但只能用其中一个。下面的参数是根据需要在压缩或解压档案时可选的。-z:有gzip属性的-j:有bz2属性的-Z:有compr 阅读全文
posted @ 2021-05-10 00:35 shiningrise 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1、从远程服务器复制到本地 2、从本地复制到远程服务器 回到顶部 1、从远程服务器复制到本地 scp -r fare@192.168.128.107:/tmp/database/ /data/ 回到顶部 2、从本地复制到远程服务器 scp -r /data/ fare@192.168.128.107 阅读全文
posted @ 2021-05-10 00:31 shiningrise 阅读(114) 评论(0) 推荐(0) 编辑
摘要: node有一个模块叫n(这名字可够短的。。。),是专门用来管理node.js的版本的。 首先安装n模块: 1 npm install -g n 第二步: 升级node.js到最新稳定版 1 n stable 是不是很简单?! n后面也可以跟随版本号比如: 1 n v0.10.26 或 1 n 0.1 阅读全文
posted @ 2021-05-09 15:53 shiningrise 阅读(15378) 评论(0) 推荐(1) 编辑
摘要: 方法一命令设置Git大小写敏感:git config core.ignorecase false 方法二找到项目的 .git 文件夹(window默认是隐藏的,设置显示隐藏的项目即可出现) 下的 config 文件打开,将 ignorecase = true 设置成 ignorecase = fal 阅读全文
posted @ 2021-05-01 20:50 shiningrise 阅读(752) 评论(0) 推荐(0) 编辑
摘要: php及插件安装 apt install php-fpm php-mysql php-curl php-gd php-mbstring php-mcrypt php-xml php-xmlrpc php-zip php-opcache -y server { listen 80; listen [: 阅读全文
posted @ 2021-05-01 20:07 shiningrise 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 对于一个系统,必须严格的控制权限,权限表的设计是基本的。 基本的权限表有五个,即用户表,角色表,权限表,用户角色表,角色权限表。 下面介绍下基本字段 用户表 useruser_id user_name password角色表 role role_id role_name权限表 permission 阅读全文
posted @ 2021-04-29 09:27 shiningrise 阅读(1625) 评论(0) 推荐(0) 编辑
摘要: 数据库迁移工具 安装: composer require topthink/think-migration 创建迁移工具文件 php think migrate:create AnyClassNameYouWant 执行迁移工具 php think migrate:run 多应用 composer 阅读全文
posted @ 2021-04-28 15:04 shiningrise 阅读(101) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/liveinjs/article/details/14135749 步骤/方法 打开 shell 窗口, 在窗口中输入 sudo apt-get update,更新软件源,最后会读取软件包列表: 输入 sudo apt-get dist-upgrade,更 阅读全文
posted @ 2020-10-15 00:00 shiningrise 阅读(832) 评论(0) 推荐(0) 编辑
摘要: 报别的错: Error: Cannot find module 'webpack/lib/RequestShortener' 这个真的是毫无头绪,后来有文章解决其他类似报错的方法,就借用了一下,果然好用! npm install webpack --save-dev // 安装成功之后,会有提示再安 阅读全文
posted @ 2020-10-06 22:57 shiningrise 阅读(4163) 评论(0) 推荐(0) 编辑
摘要: # 建议不要用 cnpm 安装 会有各种诡异的bug 可以通过如下操作解决 npm 下载速度慢的问题 npm install --registry=https://registry.npm.taobao.org 阅读全文
posted @ 2020-10-06 22:46 shiningrise 阅读(11176) 评论(1) 推荐(0) 编辑
摘要: 使用Gitlab的clone项目的时候出现错误: schannel: next InitializeSecurityContext failed: SEC_E_UNTRUSTED_ROOT 1 对于这个错误,以管理员模式打开cmd窗口,执行下面命令: git config --system http 阅读全文
posted @ 2020-10-06 22:27 shiningrise 阅读(1281) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lucm/p/11136112.html npm安装typescript npm config set registry https://registry.npm.taobao.org npm config set disturl https://np 阅读全文
posted @ 2020-09-21 20:08 shiningrise 阅读(1327) 评论(0) 推荐(0) 编辑
摘要: 3. 启动客户端npm installnpm run serve 2. 修改main.js中的 axios.defaults.baseURL 设置成本机. 并将下方的注释掉. 1. 启动服务器npm i -g nodemoncnpm i cors body-parse express jsonweb 阅读全文
posted @ 2020-09-18 18:29 shiningrise 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 生成 (venv) $ pip freeze >requirements.txt 导入 (venv) $ pip install -r requirements.txt https://blog.csdn.net/xgocn/article/details/80930469 阅读全文
posted @ 2020-09-18 15:39 shiningrise 阅读(276) 评论(0) 推荐(0) 编辑
摘要: import json class User(object): def __init__(self, username, theme,image): self.username = username self.theme = theme self.image = image @app.route(" 阅读全文
posted @ 2020-09-18 12:31 shiningrise 阅读(2103) 评论(0) 推荐(0) 编辑
摘要: python -m django --versiondjango-admin startproject mysitepython manage.py runserverpython manage.py startapp polls python manage.py makemigrations po 阅读全文
posted @ 2020-09-17 16:48 shiningrise 阅读(164) 评论(0) 推荐(0) 编辑
摘要: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'mydb', # 你要存储数据的库名,事先要创建之 'USER': 'root', # 数据库用户名 'PASSWORD': 'wxy', # 密码 ' 阅读全文
posted @ 2020-09-09 15:28 shiningrise 阅读(265) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jingzaixin/p/13585511.html 参考网址:https://www.cnblogs.com/meml/p/13579831.html 解决:在工程文件的__init__.py中加上 指定版本 import pymysqlpymysq 阅读全文
posted @ 2020-09-09 15:26 shiningrise 阅读(1205) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/HYESC/article/details/100074665 阅读全文
posted @ 2020-09-08 18:29 shiningrise 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 导入Vue项目后,#npm run dev 报错: 1 2 error in ./src/pages/hello.vue Module build failed: Error: Node Sass does not yet support your current environment...... 阅读全文
posted @ 2020-01-29 20:53 shiningrise 阅读(791) 评论(0) 推荐(0) 编辑
摘要: VS2019正式版注册码秘钥 Visual Studio 2019 EnterpriseBF8Y8-GN2QH-T84XB-QVY3B-RC4DFVisual Studio 2019 ProfessionalNYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y Visual Studio 20 阅读全文
posted @ 2019-10-25 16:37 shiningrise 阅读(4454) 评论(1) 推荐(1) 编辑
摘要: protected void Page_Load(object sender, EventArgs e) { string sql = "select top 1 * from [user] order by userid asc"; DataTable dt = DBUtility.SQLHelperJJ3.Query(sql).... 阅读全文
posted @ 2019-05-23 15:49 shiningrise 阅读(9220) 评论(0) 推荐(1) 编辑
摘要: https://github.com/shiningrise/docker-mysql-cron-backup CRON_TIME=“0 18 * * * ?” 改为 CRON_TIME=0 18 * * * 双引号不能有,否则不能执行任务 阅读全文
posted @ 2019-04-10 14:36 shiningrise 阅读(338) 评论(0) 推荐(0) 编辑
摘要: NOIP初赛知识点大全-普及+提高组 https://mp.weixin.qq.com/s/vSXLDxmbBoFfZPzD8lrt3w 阅读全文
posted @ 2018-10-11 09:26 shiningrise 阅读(789) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_40426638/article/details/78959972 https://blog.csdn.net/jeikerxiao/article/details/74559244 阅读全文
posted @ 2018-09-15 15:23 shiningrise 阅读(564) 评论(0) 推荐(0) 编辑
摘要: 交叉编译: cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/CMakeToolchainFileMingw32.cmake -build ./ ../ 1.n2n 基于p2p的内网穿透方案。 2.ubuntu-linux下编译 git clone https://gith 阅读全文
posted @ 2018-07-03 10:24 shiningrise 阅读(3951) 评论(0) 推荐(0) 编辑
摘要: Visual Studio 2017 扩展 Visual Studio 2017 15.4.4 : 目前是最新的版本号,所有的工具&插件都支持这个版本号。所以请对号入座。 ReSharper : 首先的是Resharper,这个基本是目前是我开发过程中必备的工具集,唯一的缺点就是吃内存,所以你的内存 阅读全文
posted @ 2018-06-21 23:23 shiningrise 阅读(851) 评论(0) 推荐(1) 编辑
摘要: ... 阅读全文
posted @ 2018-06-14 10:11 shiningrise 阅读(790) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2018-06-12 11:38 shiningrise 阅读(2470) 评论(0) 推荐(0) 编辑
摘要: 基于git命令的代码统计方法 没什么好说的,基于git log命令,使用前提是安装了git ...... 1.统计所有人代码量 统计所有人代码增删量,拷贝如下命令,直接在git bash等终端,git项目某分支下执行 git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --aut... 阅读全文
posted @ 2018-06-11 10:37 shiningrise 阅读(1978) 评论(0) 推荐(0) 编辑
摘要: if [ "$UseSwagger" != "true" ]; then sed -i "s/\"UseSwagger\": true/\"UseSwagger\": false/g" appsettings.jsonfiif [ "$AutoMigrationEnabled" = "true" ] 阅读全文
posted @ 2018-06-02 22:25 shiningrise 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 结果:  由第一步的结果可知,我们的 mysql 运行在一个叫 mysql_server 的 docker 容器中。而我们要备份的数据库就在里面,叫做 test_db。mysql 的用户名密码均为root,我们将文件备份到宿主机/opt/sql_bak文件夹下。 https://www.cnblo 阅读全文
posted @ 2018-06-01 23:29 shiningrise 阅读(849) 评论(0) 推荐(0) 编辑
摘要: 需要确保在组策略编辑器(Win+R 输入 gpedit.msc )中计算机配置->Windows设置->安全设置->本地策略->安全选项->右侧的网络访问:本地帐户的共享和安全模型。修改为使用经典模式即可! 阅读全文
posted @ 2018-06-01 14:38 shiningrise 阅读(930) 评论(0) 推荐(0) 编辑
摘要: $ sudo apt-get install python-software-properties $ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - sudo apt-get install nodejs 阅读全文
posted @ 2018-05-27 17:40 shiningrise 阅读(1446) 评论(0) 推荐(0) 编辑
摘要: http://www.weichatba.com 阅读全文
posted @ 2018-05-08 21:20 shiningrise 阅读(1415) 评论(2) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_19244423/article/details/46662293 阅读全文
posted @ 2018-04-19 23:17 shiningrise 阅读(892) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000007892407 安装nodejs 安装nodejs建议直接下载二进制包,把官网上的64位二进制版本下载地址复制下来,执行 wget https://nodejs.org/dist/v6.9.2/node-v6.9.2-linux 阅读全文
posted @ 2018-04-15 16:40 shiningrise 阅读(4359) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/xkjcf/article/details/78698232 在Ubuntu系统中添加自定义服务需要遵从设计启动脚本的模式,下面就是如何编写启动脚本的示例程序。 1、在/etc/init.d/ 下以管理员权限新建文件,在本例中为location_serve 阅读全文
posted @ 2018-04-15 16:36 shiningrise 阅读(4329) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/gongyuhonglou/p/6922721.html 2. 生成ssh key $ ssh-keygen -t rsa -C “邮箱”按3个回车,密码为空。 解决本地多个ssh key问题 2. 生成ssh key时同时指定保存的文件名 ssh-k 阅读全文
posted @ 2018-04-15 14:21 shiningrise 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 执行安装 sudo go get github.com/nsf/gocode 提示: cannot download, $GOPATH not set. For more details see: go help gopath 解决方案: export GOPATH=/home/zhangbl/go 阅读全文
posted @ 2018-04-15 13:13 shiningrise 阅读(2966) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 29 下一页
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css