Skip to content

Instantly share code, notes, and snippets.

View kcchien's full-sized avatar

Kuang-Cheng Chien kcchien

  • King Steel Machinery Co., Ltd.
  • Taichung, Taiwan
View GitHub Profile
@kcchien
kcchien / nteract-tricks.md
Created August 8, 2020 04:52 — forked from vhoulbreque/nteract-tricks.md
Make conda environments visible in nteract

Nteract tricks

To add a conda environment to the list of environments:

$ source activate thisenv
(thisenv) $ pip install ipykernel
(thisenv) $ python -m ipykernel install --user --name thisenv
@kcchien
kcchien / excel-addins-snippets
Created November 17, 2020 00:55
Excel.run snippet
await window.Excel.run(async (context) => {
// do something
await context.sync();
});