首页
学习
活动
专区
工具
TVP
发布

landv

专栏成员
384
文章
648237
阅读量
44
订阅数
[golang][history]The Go Annotated Specification\ Go注释规范 266b9d49bfa3d2d16b4111378b1f9794373ee141
This document supersedes all previous Go spec attempts. The intent is to make this a reference for syntax and semantics. It is annotated with additional information not strictly belonging into a language spec.
landv
2021-01-29
6130
[golang][history]The Go Annotated Specification\ Go注释规范328df636c5f3e0875bc71a7eadf5a4a5084e0b13
This document supersedes all previous Go spec attempts. The intent is to make this a reference for syntax and semantics. It is annotated with additional information not strictly belonging into a language spec.
landv
2021-01-29
7120
[golang][history]The Go Annotated Specification\ Go注释规范18c5b488a3b2e218c0e0cf2a7d4820d9da93a554
This document supersedes all previous Go spec attempts. The intent is to make this a reference for syntax and semantics. It is annotated with additional information not strictly belonging into a language spec.
landv
2021-01-29
6810
[新坑][deepin][linux][Remmina]无法链接部分RDP服务Cannot open libmwv206dec.so, libmwv206dec.so: 无法打开共享对象文件: 没有那
[新坑][deepin][linux][Remmina]无法链接部分RDP服务Cannot open libmwv206dec.so, libmwv206dec.so: 无法打开共享对象文件: 没有那个文件或目录
landv
2020-11-13
1.7K0
[deepin][linux][DBeaver]DBeaver社区版安装好没有图标
[deepin][linux][DBeaver]DBeaver社区版安装好没有图标
landv
2020-11-12
1.2K0
Windows WSL2 htop打开黑屏的问题解决
Update: it’s not as straightforward as I’d thought.
landv
2020-08-13
1.3K0
[医疗信息化][DICOM教程]DICOM标准简介
DICOM是一种医疗保健标准,负责管理医学成像的几乎所有方面,例如图像传输,图像解释,打印管理,程序管理和离线存储,并且几乎用于与医疗保健相关的所有成像“模态”,例如磁共振,核医学,计算机断层扫描和超声检查。全世界几乎所有的临床成像工作流程都基于DICOM标准。如果您在医疗信息学行业工作或想要工作,那么学习此标准至关重要。我希望写本系列文章的目的是通过查看简短但有针对性的代码示例,帮助进入“ DICOM世界”的人们更快地学习标准的各个方面和部分。在本文中,我们将从较高的层次看待该标准的所有主要部分,本系列的文章中,我们将使用有助于将DICOM的理论与实际实现联系起来的代码示例,对这些方面的每个方面进行更详细的研究。
landv
2020-08-06
2.8K0
[医疗信息化][DICOM教程]开篇介绍,新冠肺炎为医疗保健信息产业带来新的的紧迫性
The ongoing COVID-19 pandemic and the tragedies that have occured (and still occuring) have helped highlight the need for more timely exchange of critical healthcare related information for governments, health agencies, care providers and patients around the world. For many decades, the healthcare community has been at the forefront of standardization efforts for information exchange through the use of communication protocols such as HL7 and DICOM, and has worked hard to promote the use of these standards worldwide. However, the recent experience only highlights the fact that more opportunities exist to help achieve even more synergies and efficiencies in the information exchange processes that need to occur between various systems involved in the overall process of planning, administering, receiving and monitoring of all healthcare-related activities that are operationalized at any moment.
landv
2020-08-05
8050
[golang]golang signal.Notify 信号,如何优雅的退出
Notify函数让signal包将输入信号转发到c。如果没有列出要传递的信号,会将所有输入信号传递到c;否则只传递列出的输入信号。
landv
2020-06-16
17.9K1
[deepin][linux]deepin禁用鼠标中间粘贴功能
不知何时起,nngxd,代码里面总是意外多点东西,造成bug.这都是鼠标中间在Linux上面有粘贴的功能,好吧,直接干掉这个功能。
landv
2020-04-28
2.2K0
[bash][linux]Linux开启vsftp
#!/bin/bash #开始安装vsftpd echo ">>> 1. Start install Vsftpd ......" yum -y install pam pam-devel db4 de4-devel db4-tcl vsftpd mkdir /var/ftp/virtual useradd vsftpd -M -s /sbin/nologin useradd ftpvload -d /var/ftp/ -s /sbin/nologin sleep 3 chown -R ftpvload
landv
2020-04-24
5.8K0
[java][kettle]在Linux上面kettle-spoon启动问题
在Linux上面kettle-spoon启动问题 文件大小限制问题 修改此文件 /etc/security/limits.conf * soft nofile 327680 * hard nofil
landv
2020-04-08
1.8K0
[CodeIgniter4]讲解-lnmp配置
LNMP1.4以上也可以直接使用/lnmp1.4/tools/目录下的./remove_open_basedir_restriction.sh进行移除。
landv
2020-03-05
1.2K0
[linux][c++]linux c++ 通过xcb库获取屏幕大小
linux c++ 通过xcb库获取屏幕大小 #include <stdio.h> #include <xcb/xcb.h> /** clang++ main.cpp -o main `pkg-config --cflags --libs xcb` -lxcb-randr landv@win7-pc:~/Desktop$ ./main Informations of screen 416: width.........: 1920 height........: 1080 white pi
landv
2019-11-30
8.4K2
[golang]数据库字典生成器-dataDictionary
根据mysql数据库生成html格式数据字典,目前仅支持macos/linux/windows
landv
2019-11-29
1.6K0
[linux][c/c++]代码片段01
#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::"; // 有三个选项-abc,其中c选项后有两个冒号,表示后面可选参数 whi
landv
2019-11-10
6670
GUI引发的一场脑部大战|wine、wsl、mono、gtk、qt
wine可以运行大部分Windows软件,实在不行还有虚拟机,虚拟机性能弱,还可以进行远程服务器玩耍。
landv
2019-10-15
1.7K0
[golang][译]使用os/exec执行命令
https://colobu.com/2017/06/19/advanced-command-execution-in-Go-with-os-exec/
landv
2019-09-26
2K0
[php][thinkphp] 记一次Composer Linux版安装以及用它进行thinkphp项目初始化
php中开启exec,system等函数调用系统命令 修改php.ini文件 关掉安全模式 safe_mode = off 然后在看看 禁用函数列表 disable_functions = proc_open, popen, exec, system, shell_exec, passthru 这里要把 exec 去掉
landv
2019-08-20
9060
如何修复GitKraken Inotify Limit Error\idea erro - 升级Ubuntu / Linux inotify限制
GitKraken是一个非常优秀的Git客户端。如果您是软件开发人员,那么您绝对应该试试GitKraken。今天我去了我的一个存储库做了一些提交,但是GitKraken告诉我它已经得到了Inotify Limit Error,并且我需要增加这个限制。事实证明这个问题与GitKraken无关,也很容易修复。
landv
2019-08-09
1.2K0
点击加载更多
社区活动
【纪录片】中国数据库前世今生
穿越半个世纪,探寻中国数据库50年的发展历程
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档