Amadine是一款矢量绘图软件,具有完美平衡的UI,可确保流畅的工作流程和快速学习。该应用程序非常适合插图,设计网站,用户界面,布置传单和小册子,创建徽标和图标。Amadine精确开发并注重用户的需求,提供您可能需要的一切,将最疯狂的插图创意变为现实。 原文下载链接:https://mac.ors ...
分类:
系统相关 时间:
2021-01-13 11:22:08
阅读次数:
0
go安装 下载安装包 go下载: 下载地址:https://golang.google.cn/dl/ lazydocker下载: 下载地址:wget https://github.com/jesseduffield/lazydocker/releases/download/v0.2.4/lazydo ...
分类:
其他好文 时间:
2021-01-13 10:48:49
阅读次数:
0
Python语言程序设计基础 第5章 函数和代码复用 函数的基本使用 函数的定义 函数是一段具有特定功能的、可重用的语句组,用函数名表示并通过函数名进行功能调用。 使用函数主要有两个目的:降低编程难度和代码重用。 Python使用def定义一个函数,语法形式: def <函数名> (<参数列表>): ...
分类:
编程语言 时间:
2021-01-13 10:40:36
阅读次数:
0
Laravel Package for Matching Engine 快速开始 github地址 安装: composer require sting_bo/mengine 复制配置文件: php artisan vendor:publish 依赖 predis 号外 已经出Golang微服务撮合 ...
分类:
Web程序 时间:
2021-01-12 11:24:44
阅读次数:
0
参考官网文档: https://github.com/redisson/redisson 查看配置详细信息: https://github.com/redisson/redisson/wiki/Table-of-Content #step1 redisson知识: 一,可重用锁(Reentrant ...
分类:
其他好文 时间:
2021-01-12 10:58:48
阅读次数:
0
知道并发,并行,线程,协程概念吗?或者知道大概含义吗?
有线程为什么还要有协程?区别是什么?
『进程』通信方式知道几种?有没有超过3种?
golang『协程』通信方式推荐?
使用并发的目的是为什么?是能帮我们解决什么问题吗? ...
分类:
系统相关 时间:
2021-01-12 10:28:29
阅读次数:
0
如果你用vscode开发golang,发现golang的提示很慢或者跳转很慢,很可能是你没有使用gopls。 安装gopls 安装方式一 打开 VS Code 的 setting, 搜索 go.useLanguageServe, 并勾选上。默认情况下, Go 扩展会提示你安装 gopls。 安装方式 ...
分类:
其他好文 时间:
2021-01-11 10:58:24
阅读次数:
0
1、新建 conf.yaml 文件 database: dbtype: mysql dbname: database table: table username: username password: password application: port: 8000 2、新建 conf.go 文件 ...
分类:
其他好文 时间:
2021-01-08 10:52:58
阅读次数:
0
修改golang包路径的时候一直报红字,因为go.mod里面也要一起修改。否则一直报错。 go.mod包名 module proxy-mgr mian.go里面的包名路径 import ( _ "proxy-mgr/boot" _ "proxy-mgr/router" ) ...
分类:
其他好文 时间:
2021-01-08 10:52:41
阅读次数:
0
package main import ( "fmt" "reflect" ) type Reflect struct { Name string `json:"name" test:"tag"` PassWord string Three int } func (m Reflect)Hello(v ...
分类:
其他好文 时间:
2021-01-07 12:35:17
阅读次数:
0