Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmj01 committed Apr 18, 2024
1 parent de3b21d commit 895201b
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 11 deletions.
2 changes: 2 additions & 0 deletions cg/ct.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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。
Expand Down
2 changes: 2 additions & 0 deletions cg/tools/CAD.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<a href="./index/standard.md">标准</a>
<a href="./index/community.md">Community</a>
<a href="./index/computerScience.md">CS</a>
<a href="./index/stomatological.md">口腔</a>
<a href="./index/medicalScience.md">医学技术</a>
<a href="./blender/index.md">Blender</a>
<a href="./html/index.html">HTML 入口</a>
</section>
Expand Down
4 changes: 3 additions & 1 deletion index/stomatological.md → index/medicalScience.md
Original file line number Diff line number Diff line change
@@ -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/)

## 概念

Expand Down
31 changes: 22 additions & 9 deletions web/pkg.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [node]()

## update

```js
npm install -g n 非window上使用n来管理
```

# [npm](https://docs.npmjs.com/)

```bat
Expand All @@ -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 // 子工作区按照特定依赖
Expand All @@ -24,7 +32,7 @@ npm install XXX --save-dev 安装且写入package.json中的devDependencies
npm install [email protected] --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 查询依赖的库信息
```
Expand All @@ -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
Expand Down Expand Up @@ -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/)

0 comments on commit 895201b

Please sign in to comment.