摘要:
https://www.cnblogs.com/cpbk/p/10617508.html 阅读全文
摘要:
Linux查看文件指定行数内容 1、tail date.log 输出文件末尾的内容,默认10行 tail -20 date.log 输出最后20行的内容 tail -n -20 date.log 输出倒数第20行到文件末尾的内容 tail -n +20 date.log 输出第20行到文件末尾的内容 阅读全文
摘要:
csv读写 封装成工具包 package utils import ( "encoding/csv" "fmt" "log" "os" "path" "time" ) func ReadCsv(filePath string) (data [][]string, err error) { f, er 阅读全文
摘要:
资料来源:技术胖 jspang.com 下载linux学习路径:https://newimg.jspang.com/linux-image01.png Linux备忘手册: 百度网盘 链接:https://pan.baidu.com/s/1CO_yd8TYFPhw77G8vETzeA 提取码:kh1 阅读全文
摘要:
gorm 关系一对一,一对多,多对多查询 gorm v2版本 Belongs To mysql表 CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL DEFAULT '', ` 阅读全文
摘要:
#!/bin/bash HOST="127.0.0.1" PORT="3306" USERNAME="root" PASSWORD="123456" DBNAME="fofapro" #定时修改 update_sql=" update enterprise_ip_tasks set state = 阅读全文
摘要:
创建控制器 --no-assets 我们不需要生成资源文件 haima@haima-PC:/media/haima/34E401CC64DD0E28/site/go/src/ruby/rails_demo$ rails g controller api/v1/order --no-assets cr 阅读全文
摘要:
添加字段 控制台上执行下面的命令 rails g migration addColumnToBlackIps send_time:datetime 会生成文件db/migrate/20210529131328_add_column_to_black_ips.rb class AddColumnToB 阅读全文
摘要:
start.sh #!/bin/bash nohup rails s Puma -d >> run_log.log 2>&1 & stop.sh #!/bin/bash ps -ef |grep puma |awk '{print $2}'|xargs kill -9 阅读全文
摘要:
https://sysin.org/article/vmware-workstation-16-slic/ 阅读全文
摘要:
下载ruby 下载地址: ruby各版本下载地址 https://rubyinstaller.org/downloads/ 2.3.3版本 https://www.cr173.com/soft/14252.html 下载后安装 这里以2.7.3为例 双击安装后 回车 回车 C:\Users\Admi 阅读全文
摘要:
https://blog.51cto.com/abian/1337989 阅读全文
摘要:
github地址 https://github.com/rest-client/rest-client gemfile里添加 gem 'rest-client', '~> 2.0' 执行 bundle install 代码里 # 要请求接口地址 # 上传文件的key名字 # file 文件的绝对路径 阅读全文
摘要:
https://www.cnblogs.com/chentianwei/p/9227594.html 阅读全文
摘要:
# 文件的当前目录 puts __FILE__ # string.rb # 文件的当前行 puts __LINE__ # 6 #文件的当前目录 puts __dir__ #/media/haima/34E401CC64DD0E28/site/ruby/RubyStudy/Lesson02 puts 阅读全文
摘要:
debug启动 debug启动 安装插件 报错: 网络问题 下载 ruby-debug-ide-2.3.1 解压到 /home/haima/.rvm/gems/ruby-2.3.8/gems/ 阅读全文
摘要:
rails s报如下错误 Could not find mimemagic-0.3.2 in any of the sources Run `bundle install` to install missing gems. haima@haima-PC:/media/haima/34E401CC64 阅读全文
摘要:
Windows版下载地址: http://www.hostbuf.com/downloads/finalshell_install.exe Mac版,Linux版安装及教程: http://www.hostbuf.com/t/1059.html 更新日志: http://www.hostbuf.co 阅读全文
摘要:
https://github.com/haimait/go-devise-encryptor package main import ( "fmt" //devisecrypto "haimait/learn/testdevise/go-devise-encryptor" "github.com/c 阅读全文
摘要:
macos10136 黑苹果usb无线网卡 1.系统下载: 下面是我自制的带clover 4596版本的u盘镜像: 链接: https://pan.baidu.com/s/1wRdVddwkei7bfeO8g09faA 密码: ycxw 原文件地址: https://cloud.tencent.co 阅读全文
摘要:
一.安装过程 当前工具主要是用来对ES中的数据进行数据导入/导出,以及对数据迁移相关,使用elasticdump工具需要使用到npm,所以需要安装相关的依赖 目前使用到的ES版本是 7.x 安装NODE 参考下面的连接 https://www.cnblogs.com/haima/p/11235640 阅读全文
摘要:
一.思路: 把go-admin-ui包成静态html文件,放在go-admin的静态目录static里加载服务 这样前后台启一个服务就可以了 下面开始操作 二.打包go-admin-ui为静态文件 a.修改配置文件 修改文件.env.production 这里是请求api的接口地址的配置 # jus 阅读全文
摘要:
搜索条件参考下面的文件 https://github.com/go-admin-team/go-admin-core/blob/master/tools/search/query_test.go type ApplicationQuery struct { Id string `search:"ty 阅读全文
摘要:
https://www.secpulse.com/archives/133560.html 阅读全文
摘要:
https://www.pianshen.com/article/6506750269/ 阅读全文
摘要:
![](https://img2020.cnblogs.com/blog/1441611/202103/1441611-20210310095326034-426198125.png) 阅读全文
摘要:
olivere/elastic 包 github.com/olivere/elastic doc: https://pkg.go.dev/github.com/olivere/elastic?utm_source=godoc 初使货es package elasticsearch import ( 阅读全文
摘要:
package main import ( "github.com/gin-gonic/gin" "encoding/json" "fmt" ) func main() { router := gin.Default() router.GET("/test2", test2) router.Run( 阅读全文
摘要:
路由层 func registerCommonRouter(v1 *gin.RouterGroup) { up := v1.Group("upload") { up.POST("/upLoadFile", commons.FileUpLoad) //单文件上传 up.POST("/upLoadMul 阅读全文
摘要:
http://map.ps123.net/world/2365.html 阅读全文
摘要:
python3 -m http.server https://blog.csdn.net/a772304419/article/details/113338103 Debian下配置Samba服务器 https://www.cnblogs.com/xycoin/p/6095688.html 阅读全文
摘要:
https://www.cnblogs.com/jkko123/p/7144938.html 阅读全文
摘要:
https://colobu.com/2015/10/09/Linux-Signals/ https://blog.csdn.net/leonpengweicn/article/details/52131313?utm_medium=distribute.pc_relevant_t0.none-ta 阅读全文
摘要:
简述Gin框架集成swagger过程 1、安装 swag go get github.com/swaggo/swag/cmd/swag swag 用于生成 docs 文件夹(swagger文档程序使用) 安装完成后会在 ${GOPATH}/bin生成一个执行文件 2、安装依赖包 github.com 阅读全文
摘要:
注意下面几点: 1)要保证同步服务期间之间的网络联通。即能相互`ping`通,能使用对方授权信息连接到对方数据库(防火墙开放3306端口)。 2)关闭selinux。 3)同步前,双方数据库中需要同步的数据要保持一致。这样,同步环境实现后,再次更新的数据就会如期同步了。如果主库是新库,忽略此步。 主 阅读全文
摘要:
https://www.cnblogs.com/wade-lt/p/9008058.html 阅读全文
摘要:
mysql命令行备份数据库 二 基础知识: 1.数据库的连接 mysql -u -p -h -u 用户名 -p 密码 -h host主机 2:库级知识 2.1 显示数据库: show databases; 2.2 选择数据库: use dbname; 2.3 创建数据库: create databa 阅读全文
摘要:
常用命令 CREATE USER 'haima'@'host' IDENTIFIED BY '123456'; grant all privileges on *.* to joe@localhost identified by ‘123′; show grants; flush privilege 阅读全文
摘要:
设置前注意下面几点: 1)要保证同步服务期间之间的网络联通。即能相互ping通,能使用对方授权信息连接到对方数据库(防火墙开放3306端口)。 2)关闭selinux。 3)同步前,双方数据库中需要同步的数据要保持一致。这样,同步环境实现后,再次更新的数据就会如期同步了。如果主库是新库,忽略此步。 阅读全文
摘要:
package main import "fmt" import "net/url" import "strings" func main() { //我们将解析这个 URL 示例,它包含了一个 scheme,认证信息,主机名,端口,路径,查询参数和片段。 s := "postgres://user 阅读全文