上一页 1 2 3 4 5 6 7 8 ··· 15 下一页
摘要: 参考了下php官方手册总结了五种PHP连接MSsql server的方法,mssql_系列函数,sqlsrv_系列函数,odbc方式连接sqlserver,PDO方式连接sqlserver,COM方式连接 参考php手册,对php连接sql server系列做出个小结。主要有五种方式: 一、通过ms 阅读全文
posted @ 2020-01-04 09:48 landv 阅读(648) 评论(0) 推荐(0) 编辑
摘要: [简约webAPI]分别以asp|jsp|php简单粗暴实现webAPI,输出json数据 https://gitee.com/landv_admin/csharp_login_report_plug-in 原本打算使用golang编写一个RESTful API,但因为环境所限,此次采用“偷懒的方式 阅读全文
posted @ 2020-01-04 09:44 landv 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 2020年以及过了几天,把之前随性而发的随笔,发布一下,也没太多整理。 https://stackoverflow.com/questions/4652347/dynamically-binding-of-dataset-to-rdlc-reports https://blogs.msdn.micr 阅读全文
posted @ 2020-01-04 09:14 landv 阅读(342) 评论(0) 推荐(0) 编辑
摘要: apt-get install software-properties-common sudo add-apt-repository ppa:jonathonf/python-3.6sudo apt updatesudo apt install python3.6 阅读全文
posted @ 2020-01-04 09:13 landv 阅读(1026) 评论(0) 推荐(0) 编辑
摘要: https://github.com/andlabs/libui c++ https://github.com/andlabs/ui https://github.com/gotk3/gotk3/ https://github.com/go-gl/gl/v2.1/gl https://github. 阅读全文
posted @ 2020-01-04 09:12 landv 阅读(434) 评论(0) 推荐(0) 编辑
摘要: [access]第一篇-平台 上海盟威软件有限公司http://www.accessoft.com/ 下载地址http://www.accessgood.com/ 中山市天鸣科技发展有限公司http://www.office-cn.net/ 下载地址http://www.office-cn.net/ 阅读全文
posted @ 2019-12-23 10:36 landv 阅读(611) 评论(0) 推荐(0) 编辑
摘要: # engine: mmapv1: smallFiles: true wiredTiger: engineConfig: configString : cache_size=512M echo "deb [ arch=amd64 ] http://mirrors.aliyun.com/mongodb 阅读全文
posted @ 2019-12-23 08:24 landv 阅读(267) 评论(0) 推荐(0) 编辑
摘要: html CSS 阅读全文
posted @ 2019-12-22 11:10 landv 阅读(594) 评论(0) 推荐(1) 编辑
摘要: 1. mongoDB是什麽 mongodb是时下流行的NoSql数据库,它的存储方式是文档式存储,并不是Key-Value形式。 存储在集合中的文档,被存储为键-值对的形式。键用于唯一标识一个文档,为字符串类型,而值则可以是各种复杂的文件类型。我们称这种存储形式为BSON(Binary JSON)。 阅读全文
posted @ 2019-12-20 18:56 landv 阅读(915) 评论(0) 推荐(0) 编辑
摘要: 昆仑会员此打印方式只针对用会员卡结账的消费,放开限制解决方案 在这个function里面 把下面这段修改一下 修改结果如下,别问我为毛在else里面又写一次,这个锅是IE的,哈哈哈哈。 svc\m_history\his_room_detail.asp 阅读全文
posted @ 2019-12-13 15:54 landv 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 用jdk1.6的pack200和unpack200,对jar文件进行压缩和解压 解压xxx.jar.pack.gz为xxx.jar:unpack200 -r xxx.jar.pack.gz xxx.jar, 压缩xxx.jar为xxx.jar.pack.gz:pack200 xxx.jar.pack.gz xxx.jar 一些eclipse插件,比如:jboostools个头较大,一般采用将plu 阅读全文
posted @ 2019-12-13 08:45 landv 阅读(851) 评论(0) 推荐(0) 编辑
摘要: #查看设备列表ffmpeg -list_devices true -f dshow -i dummy #录制声音ffmpeg -f alsa -ac 2 -i hw:0,0 -acodec libmp3lame -f mp3 test1.mp3 #录制屏幕ffmpeg -f x11grab -s 1 阅读全文
posted @ 2019-12-10 09:07 landv 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 简单粗暴仅需要三步即可 这里保持默认什么都不用添加,项目无需在 gopath里面 Vendoring mode无需开启。 go mod download 下载模块到本地缓存,缓存路径是 $GOPATH/pkg/mod/cache go mod vendor 把依赖拷贝到 vendor/ 目录下,这一 阅读全文
posted @ 2019-12-10 09:01 landv 阅读(1415) 评论(0) 推荐(0) 编辑
摘要: 组件允许你将Ui拆分为独立可复用的代码片段,并对每个片段进行独立构思。本指南只在介绍组件的相关概念。你可以参考详细组件 API。 组件,从概念上类似与JavaScript函数。它接受任意的入参(既“props”),并返回用于描述页面展示内容的REACT元素。 函数组件与class组件 定义组件最简单 阅读全文
posted @ 2019-12-07 10:59 landv 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 元素是构成REACT应用的最小砖块 元素描述了你在屏幕上想看到的内容。 const element =<h1>Hello,world</h1>; 与浏览器的DOM元素不同,REACT元素是创建开销极小的普通对象。REACT DOM会负责更新DOM来与REACT元素保持一致。 注意: 你可能会将元素与 阅读全文
posted @ 2019-12-07 09:06 landv 阅读(240) 评论(0) 推荐(0) 编辑
摘要: JSX 简介 考虑如下变量声明: 这个有趣的标签语法既不是字符串也不是HTML。 它被称为JSX,是一个JavaScript的语法扩展。我们建议在REACT中配合使用JSX,JSX可以很好地描述UI应该呈现出它应有交互的本质形式。JSX可能会使人联想到模板语言,但它具有JavaScript的全部功能 阅读全文
posted @ 2019-12-06 15:46 landv 阅读(489) 评论(0) 推荐(0) 编辑
摘要: React-HelloWorld 最简单的React示例如下: 它将在页面上展示一个“Hello,world!”的标题。 在 CodePen 上尝试 点击链接打开在线编辑器。随意更改内容,查看它们会怎样影响展示。本指南中的大多数页面都有像这样的可编辑的示例。 预备知识 React 是一个 JavaS 阅读全文
posted @ 2019-12-06 15:14 landv 阅读(265) 评论(0) 推荐(0) 编辑
摘要: VUE和REACT两个JavaScript框架都是当下比较受欢迎的,他们两者之间的区别有那些,各自的优缺点是什么,本文将为你呈现。 简单介绍 除非你最近一直不关注前端的发展,不然你肯定听说过由Facebook创建的JavaScript UI框架--REACT。它支撑包括Instagram在内的大多数 阅读全文
posted @ 2019-12-06 11:56 landv 阅读(4209) 评论(0) 推荐(0) 编辑
摘要: AntDesign-React与VUE有点不一样,第一篇深入了解React的概念之一:JSX 一、什么是JSX 使用JSX声明一个变量(REACT当中的元素): JSX是一种JavaScript的语法扩展。我们推荐在REACT中使用JSX来描述用户界面,JSX乍一看起来可能比较像是模板语言,但事实上 阅读全文
posted @ 2019-12-06 10:52 landv 阅读(3269) 评论(0) 推荐(0) 编辑
摘要: 入门非常简单 # 安装 $ yarn global add umi # 或者 npm install -g umi # 新建应用 $ mkdir myapp && cd myapp # 新建页面 $ umi generate page index # 本地开发 $ umi dev # 构建上线 $ 阅读全文
posted @ 2019-12-05 09:46 landv 阅读(1745) 评论(0) 推荐(0) 编辑
摘要: About me recently Recently I fell that memory has always been problematic.Maybe I hava bee too tired recently. I need get plenty of exercise and rest. 阅读全文
posted @ 2019-11-30 12:01 landv 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 使用Hugo搭建静态站点 hugo下载地址:https://github.com/gohugoio/hugo 模板列表:https://github.com/gohugoio/hugoThemes 开始搭建 1、下载和初始化 安装包 源码编译 2、皮肤模板 我使用的皮肤 修改layouts/inde 阅读全文
posted @ 2019-11-29 17:20 landv 阅读(1908) 评论(0) 推荐(1) 编辑
摘要: linux c++ 通过xcb库获取屏幕大小 阅读全文
posted @ 2019-11-29 08:17 landv 阅读(1085) 评论(0) 推荐(0) 编辑
摘要: dataDictionary 介绍 生成数据字典 应用场景 根据mysql数据库生成html格式数据字典,目前仅支持macos/linux/windows 使用步骤 windows: dataDictionary -c root:1234567890@tcp(127.0.0.1:3306)/ha66 阅读全文
posted @ 2019-11-27 15:33 landv 阅读(715) 评论(0) 推荐(0) 编辑
摘要: 和老外的原文好像没多大联系了,哈哈哈,反正是读书笔记,下面的内容也是我读此书中的历程,也写进来吧。不过说实话,这框架的作者还挺对我脾气的,哈哈哈。 拒交“智商税”,解密“GUI”运行之道 我很忙 项目压力大,平时要加班,有些休闲时间,还要学习Qt。。。所以,可以提供的学习成本只剩下2小时了! 有归零 阅读全文
posted @ 2019-11-12 08:58 landv 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 与其说是go之旅,不如说是C,计算机世界的霸主C语言,有人可能说是汇编(ASM)才是,亲我说的是高级语言哈。不要抬杠,很多语言都是基于C的,搞了很多类C语言。 golang想绘制GUI,必然涉及交叉编译。 废话不多说,今天的主角是https://github.com/idea4good/GuiLit 阅读全文
posted @ 2019-11-12 08:51 landv 阅读(619) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-11) GoCN每日新闻(2019-11-11) GoCN每日新闻(2019-11-11)1. Go的内存管理与回收 https://medium.com/a-journey-with-go/go-memory-management-and-memory-sweep 阅读全文
posted @ 2019-11-12 08:31 landv 阅读(198) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-09) GoCN每日新闻(2019-11-09) 1. Go语言发行10周年庆祝 https://blog.golang.org/10years2. 容器中某Go服务GC停顿经常超过100ms排查 https://mp.weixin.qq.com/s/Lk1EbiT 阅读全文
posted @ 2019-11-12 08:30 landv 阅读(149) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-10) GoCN每日新闻(2019-11-10) 1. Go Netpoll I/O多路复用构建原生网络模型之源码深度解析 https://taohuawu.club/go-netpoll-io-multiplexing-reactor2. Go垃圾回收:第三部分- 阅读全文
posted @ 2019-11-12 08:30 landv 阅读(156) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-08) GoCN每日新闻(2019-11-08) GoCN每日新闻(2019-11-08) 1. Go Modules: v2及更高版本使用 https://blog.golang.org/v2-go-modules 2. 根据拓扑图理解golang的sync.Ma 阅读全文
posted @ 2019-11-09 08:43 landv 阅读(180) 评论(0) 推荐(0) 编辑
摘要: gcc `pkg-config --cflags gtk+-3.0` -o example-1 example-1.c `pkg-config --libs gtk+-3.0` 阅读全文
posted @ 2019-11-09 08:42 landv 阅读(217) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <unistd.h> void usage() { printf("Usage:\n"); printf("\tOptDemo [-a] [-b] [-c message]"); } int main(int argc, char *argv[]) { int o; const char *optstring = "abc::"; // 有三 阅读全文
posted @ 2019-11-08 11:44 landv 阅读(189) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-07) GoCN每日新闻(2019-11-07) GoCN每日新闻(2019-11-07)1. [译] 排序运行时间能否做到 O(n)?让 Go 语言来告诉你 https://mp.weixin.qq.com/s/dHp-OJ0v9yNTazdYSsEKGw 2.  阅读全文
posted @ 2019-11-07 16:19 landv 阅读(139) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-05) GoCN每日新闻(2019-11-05) GoCN每日新闻(2019-11-05)1. Protobuf 终极教程 https://colobu.com/2019/10/03/protobuf-ultimate-tutorial-in-go/2. 何处安放我 阅读全文
posted @ 2019-11-07 16:18 landv 阅读(169) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-06) GoCN每日新闻(2019-11-06) GoCN每日新闻(2019-11-06)1. 使用构建标签分离你的测试文件 https://mickey.dev/posts/go-build-tags-testing/2. 使用 Go 添加 Nginx 代理 ht 阅读全文
posted @ 2019-11-07 16:17 landv 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 安装wineQQ8.9.19983deepin23版本后提示,不在提供服务请升级。 第一步 前往QQ官方下载Windows最先版本QQ https://qd.myapp.com/myapp/qqteam/pcqq/PCQQ2019.exe 第二步 打开深度系统资源监视器,当然你通过top或者htop 阅读全文
posted @ 2019-11-07 15:53 landv 阅读(986) 评论(1) 推荐(0) 编辑
摘要: 正规军解法(加了面板属性进行筛选卡等级) 会员账务情况表 阅读全文
posted @ 2019-11-06 17:40 landv 阅读(690) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-03) GoCN每日新闻(2019-11-03) GoCN每日新闻(2019-11-03) 1. Go的内存管理与分配 https://medium.com/a-journey-with-go/go-memory-management-and-allocation- 阅读全文
posted @ 2019-11-05 14:13 landv 阅读(178) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-04) GoCN每日新闻(2019-11-04) GoCN每日新闻(2019-11-04) 1. Go中垃圾收集器是如何标记内存的 https://medium.com/a-journey-with-go/go-how-does-the-garbage-collec 阅读全文
posted @ 2019-11-05 14:13 landv 阅读(138) 评论(0) 推荐(0) 编辑
摘要: GoCN每日新闻(2019-11-02) GoCN每日新闻(2019-11-02) GoCN每日新闻(2019-11-02)1. Go 1.13.4 and Go 1.12.13 are released https://groups.google.com/forum/#!msg/golang-an 阅读全文
posted @ 2019-11-05 14:12 landv 阅读(198) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 15 下一页