Skip to content

Instantly share code, notes, and snippets.

View oeway's full-sized avatar

Wei Ouyang oeway

  • Science For Life Laboratory
  • Stockholm
View GitHub Profile
<docs lang="markdown">
[TODO: write documentation for this plugin.]
</docs>
<config lang="json">
{
"name": "CreateFolder",
"type": "native-python",
"version": "0.1.0",
"description": "[TODO: describe this plugin with one sentence.]",
<docs lang="markdown">
[TODO: write documentation for this plugin.]
</docs>
<config lang="json">
{
"name": "RemoveFolder",
"type": "native-python",
"version": "0.1.0",
"description": "[TODO: describe this plugin with one sentence.]",
<docs lang="markdown">
[TODO: write documentation for this plugin.]
</docs>
<config lang="json">
{
"name": "MarkdownDemo",
"type": "window",
"tags": [],
"ui": "",
<docs lang="markdown">
</docs>
<config lang="json">
{
"name":"launchpad",
"type":"window",
"tags":[],
"ui":"",
"version":"0.1.11",
"api_version":"0.1.6",
@oeway
oeway / Dockerfile
Created May 23, 2019 12:02
The docker file for running ImJoy Engine on Kubernetes cluster
FROM nvcr.io/nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
# System packages
RUN apt-get update && apt-get install -y \
bzip2 \
bc \
build-essential \
cmake \
curl \
g++ \
<docs lang="markdown">
# Plot line chart with matplotlib
This demo shows how to plot chart with matplotlib
</docs>
<config lang="json">
{
"name": "PlotLineChart",
@oeway
oeway / proxy_server.py
Last active January 21, 2024 12:12 — forked from barrachri/proxy_server.py
Proxy Server with aiohttp
import logging
import sys
from urllib.parse import urljoin
import asyncio
import aiohttp
from aiohttp import web
TARGET_SERVER_BASE_URL = 'http://127.0.0.1:8888'
<docs lang="markdown">
[TODO: write documentation for this plugin.]
</docs>
<config lang="json">
{
"name": "Unet-Segmentation",
"type": "native-python",
"version": "0.1.0",
"description": "This plugin uses U-net to segment images.",
<docs lang="markdown">
[TODO: write documentation for this plugin.]
</docs>
<config lang="json">
{
"name": "CellCycleResults",
"type": "window",
"tags": [],
"ui": "",
<docs>
# ImJoy-Engine-Manager
This plugin manages different plugin engines the ImJoy-Engine or the ImJoy Desktop App is connected to.
To use it, you need to install the [ImJoy Desktop App](https://github.com/oeway/ImJoy-App) or the [ImJoy-Engine](https://github.com/oeway/ImJoy-Engine).
</docs>