From 895201b92b8d8acee312fa1e7d5e22d6c36257ba Mon Sep 17 00:00:00 2001 From: lmj01 Date: Thu, 18 Apr 2024 14:02:00 +0800 Subject: [PATCH] update --- cg/ct.md | 2 ++ cg/tools/CAD.md | 2 ++ index.html | 2 +- .../{stomatological.md => medicalScience.md} | 4 ++- web/pkg.md | 31 +++++++++++++------ 5 files changed, 30 insertions(+), 11 deletions(-) rename index/{stomatological.md => medicalScience.md} (97%) diff --git a/cg/ct.md b/cg/ct.md index 79ec0a9..d84e99c 100644 --- a/cg/ct.md +++ b/cg/ct.md @@ -13,6 +13,7 @@ ## [DICOM--Digital Imaging and Communications in Medicine](https://www.dicomlibrary.com/) +- [DICOM简介](https://www.cnblogs.com/springyangwc/archive/2012/02/15/2353092.html) - [DICOMweb™ is the DICOM Standard for web-based medical imaging. ](https://www.dicomstandard.org/using/dicomweb) - [C.11 Look Up Tables and Presentation States](https://dicom.nema.org/dicom/2013/output/chtml/part03/sect_C.11.html) - [DICOM image display - DCMTK - three conversions of pixel data](https://programming.vip/docs/dicom-image-display-dcmtk-three-conversions-of-pixel-data.html) @@ -22,6 +23,7 @@ 4. presentation lut - [[Medical] DICOM - 醫學影像的窗位、窗寬、調整斜率與調整截距心得筆記](https://dotblogs.azurewebsites.net/MemoryRecall/2021/07/17/170824) + ### 概念 **Application Entity (AE)**,Application Entity 代表DICOM通信中的一个终端,可以代表一个系统或者一个程序。每个系统中的AE拥有一个唯一的Application Entity Title (AET) 。AET的要求时不能超过16个字节。一个设备上面可以有很多个AE。 diff --git a/cg/tools/CAD.md b/cg/tools/CAD.md index 39ee28b..341afde 100644 --- a/cg/tools/CAD.md +++ b/cg/tools/CAD.md @@ -25,3 +25,5 @@ Exocad是一款跨平台的应用程序,免费使用。 - [FreeCAD is an open-source parametric 3D modeler made primarily to design real-life objects of any size](https://github.com/FreeCAD/FreeCAD) - [Analysis Situs, Analysis Situs is the open-source application and SDK for CAD feature recognition and more](https://analysissitus.org/index.html) - [Yet another modeling kernel? Hell, no.关于是否要从0开发一个新的几何内核](https://quaoar.su/blog/page/modeling-kernel-no-thanks) +- [A 3D CAD application on your browser](https://chili3d.com/) + - [github](https://github.com/xiangechen/chili3d) diff --git a/index.html b/index.html index da2216b..a9b3305 100644 --- a/index.html +++ b/index.html @@ -18,7 +18,7 @@ 标准 Community CS - 口腔 + 医学技术 Blender HTML 入口 diff --git a/index/stomatological.md b/index/medicalScience.md similarity index 97% rename from index/stomatological.md rename to index/medicalScience.md index d81a05b..a291b77 100644 --- a/index/stomatological.md +++ b/index/medicalScience.md @@ -1,9 +1,11 @@ -# Stomatological +# 医学 +> medical science - [口腔解剖图集](https://www.imaios.com/cn/e-anatomy/4/4) - [CT相关](../cg/ct.md) - [cornerstonejs](../cg/library/cornerstonejs.md) - [微笑美学](../articles/2023/smile.md) +- [Open Health Imaging Foundation](https://ohif.org/) ## 概念 diff --git a/web/pkg.md b/web/pkg.md index 8b301fa..8216121 100644 --- a/web/pkg.md +++ b/web/pkg.md @@ -1,3 +1,11 @@ +# [node]() + +## update + +```js +npm install -g n 非window上使用n来管理 +``` + # [npm](https://docs.npmjs.com/) ```bat @@ -7,7 +15,7 @@ node --harmony script.js --version --help ```javascript npm init -vim index.js +vim index.js node index.js npm init -w ./packages/a // 创建子包 npm install libraryX --workspace packages/pA // 子工作区按照特定依赖 @@ -24,7 +32,7 @@ npm install XXX --save-dev 安装且写入package.json中的devDependencies npm install xxx@a.b.c --save-dev // 安装指定版本 npm install update xxx --save-dev 指定升级某个包 npm install xxx@latest --save-dev 安装最新版本 -npm install -ddd // 可以查看安装的细节 +npm install -ddd // 可以查看安装的细节 npm install relative-path // 把某个本地包安装进当前工程 npm lx xxx 查询依赖的库信息 ``` @@ -41,12 +49,12 @@ find . -name "node_modules" -print | xargs rm -rf ### proxy -```shell -npm config get proxy -npm config get https-proxy +```shell +npm config get proxy +npm config get https-proxy // 确定没有设置代理, 返回为null, 否则强制设置为null -npm config set proxy null -npm config set https-proxy null +npm config set proxy null +npm config set https-proxy null npm config get registry npm config delete registry @@ -96,7 +104,12 @@ pnpm i // 重新按照 ``` # [Yarn is a package manager](https://yarnpkg.com/) +```js +yarn install +``` + +# 打包工具 -# [Rollup](https://rollupjs.org/introduction/) +## [Rollup](https://rollupjs.org/introduction/) -# [webpack](https://www.webpackjs.com/) +## [webpack](https://www.webpackjs.com/)