Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
His | 703 | 4 months ago | 24 | apache-2.0 | Java | |||||
HIS英文全称 hospital information system(医疗信息就诊系统),系统主要功能按照数据流量、流向及处理过程分为临床诊疗、药品管理、财务管理、患者管理。诊疗活动由各工作站配合完成,并将临床信息进行整理、处理、汇总、统计、分析等。本系统包括以下工作站:门诊医生工作站、药房医生工作站、医技医生工作站、收费员工作站、对帐员工作站、管理员工作站。需求为东软提供的云医院。 | ||||||||||
Firestore Store | 45 | 5 | 1 | 3 months ago | 17 | November 11, 2020 | 7 | mit | JavaScript | |
express-session store for Firebase Cloud Firestore | ||||||||||
Automatic Cloud Backup | 16 | 4 years ago | 6 | Shell | ||||||
Ujshealthchecker | 7 | 2 years ago | 1 | wtfpl | Python | |||||
江大健康打卡助手 | ||||||||||
Bitbucklet | 5 | 2 years ago | 1 | mit | Python | |||||
A small CLI to manage BitBucket Cloud via its API | ||||||||||
Connect Session Firestore | 4 | 5 years ago | 2 | mit | JavaScript | |||||
A Connect/Express session store powered by the Firebase Cloud Firestore. | ||||||||||
Barry Cloud | 3 | 2 years ago | mit | Java | ||||||
Spring Cloud Alibaba Nacos Dubbo Gateway 实现微服务架构 权限、身份认证 | ||||||||||
Sale System | 3 | 4 years ago | apache-2.0 | Java | ||||||
本项目主要是现在流行的电商项目中的售卖系统的简化实现,但是包含了绝大多数场景,思路可以借鉴到企业级应用中。 | ||||||||||
Jupyterlab_cookiecutter | 2 | 3 years ago | 1 | Python | ||||||
Cloud AI Platform Notebooks JupyterLab extension cookie cutter project | ||||||||||
Spring Cloud Demo | 2 | 3 years ago | apache-2.0 | Java | ||||||
spring cloud 学习示例。包括服务合并、代码生成、api文档生成、网关、服务监控、注册中心、feign、分布式事务、链路跟踪、配置中心等 |
Cloud AI Platform Notebooks JupyterLab extension cookiecutter project for quickly generating a JupyterLab extension that follows AI Platform best practices. The extension will display a list of strings retrieved from a JupyterLab backend in a React-based side panel widget. Follow the Quick Start instructions to get JupyterLab up and running with a custom example extension installed.
Install cookiecutter:
pip install cookiecutter
Generate a new extension from the template. Press enter at each of the prompts to accept the default value or add the --no-input
flag:
cookiecutter https://github.com/gclouduniverse/jupyterlab_cookiecutter -o my_extension
Change to the generated project directory:
cd my_extension/jupyterlab_cookies # Change this to the generated project directory
To build, install, and launch run:
virtualenv -p python3 venv && \
source venv/bin/activate && \
pip install . && \
npm install && \
npm run build && \
jupyter labextension install . --no-build && \
jupyter lab build && \
npm start