快乐坚果

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 3 4 5 6 7 8 下一页

2020年10月9日 #

摘要: 文章来源:https://www.cnblogs.com/wuhua1/p/6848960.html Emmet.vim 教程 May 5, 2012 目录 1 下载 Emmet.vim 2 安装 Emmet.vim 3 使用 Emmet.vim 4 余话 Emmet 项目原先叫 Zen Codin 阅读全文
posted @ 2020-10-09 15:07 merrynuts 阅读(216) 评论(0) 推荐(0) 编辑

2020年9月27日 #

摘要: 一、安装 1.直接到官网下载,然后解压至计划中的目录中。官网地地址:windows,Linux 2.设置本地源: ;; Set the source of package. (require 'package) (package-initialize) (setq package-archives 阅读全文
posted @ 2020-09-27 15:58 merrynuts 阅读(1859) 评论(0) 推荐(0) 编辑

2020年8月10日 #

摘要: Golang树结构的实现。 树结构Golang源代码: 1 /* 2 ** 3 ** Version : 0.1 4 ** 5 */ 6 7 package mnds 8 9 import ( 10 "errors" 11 "fmt" 12 "strings" 13 ) 14 15 type Tre 阅读全文
posted @ 2020-08-10 16:08 merrynuts 阅读(993) 评论(0) 推荐(0) 编辑

2020年8月1日 #

摘要: 包源:https://github.com/yofu/dxf 阅读全文
posted @ 2020-08-01 18:39 merrynuts 阅读(492) 评论(0) 推荐(0) 编辑

摘要: Go 语言的 Office 文档处理库 UniOffice unioffice 是一个纯 Go 的开源库,实现对 Office Word、Excel 和 PowerPoint 文件的创建和处理功能。 其目标是成为一个兼容性最强,性能最好的 Go 语言 Office 文档处理库。 当前的功能: Rea 阅读全文
posted @ 2020-08-01 18:35 merrynuts 阅读(5690) 评论(1) 推荐(0) 编辑

摘要: 本文为转载:https://studygolang.com/articles/9811 Excelize 是 Golang 编写的一个用来操作 Office Excel 文档类库,基于微软的 Office OpenXML 标准。可以使用它来读取、写入 XLSX 文件。相比较其他的开源类库,Excel 阅读全文
posted @ 2020-08-01 18:31 merrynuts 阅读(1916) 评论(0) 推荐(0) 编辑

摘要: 本文为转载:https://www.cnblogs.com/superfat/p/12129541.html 工作中经常会遇到一些pdf文件处理的问题,一千种pdf有一千种处理方式,每次都是绞尽脑汁和这些pdf战斗到底。 本人又是一个gopher,所以这篇文章会以一个goper的视角,列举一下我所经 阅读全文
posted @ 2020-08-01 18:28 merrynuts 阅读(1077) 评论(0) 推荐(0) 编辑

2020年7月4日 #

摘要: 基于vim 8.2设置。 1.golang在8.2版本中已自带golang语法高亮。 2.vim安装程序的html对css和javascript的缩进很难看,需要下载这个插件才能完美利用gg=G命令对带css和javascript代码的html文件完善格式化。下载地址:web_indent 3.em 阅读全文
posted @ 2020-07-04 16:49 merrynuts 阅读(775) 评论(0) 推荐(0) 编辑

2020年6月30日 #

摘要: 本文只介绍template的语法和用法,关于template包的函数、方法、template的结构和原理,见:深入剖析Go template。入门示例以下为test.html文件的内容,里面使用了一个template语法{{.}}。 1 <!DOCTYPE html> 2 <html> 3 <hea 阅读全文
posted @ 2020-06-30 14:24 merrynuts 阅读(643) 评论(1) 推荐(0) 编辑

2020年6月29日 #

摘要: 此类文章都是从网上收集整理。 本文是对网页中的Form数据进行验证。 golang的源代码: 1 package main 2 3 import ( 4 "fmt" 5 "html/template" 6 "log" 7 "net/http" 8 "regexp" 9 "strconv" 10 "s 阅读全文
posted @ 2020-06-29 14:08 merrynuts 阅读(607) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 下一页