Skip to content
View axean's full-sized avatar
  • Chalmers University of Technology
  • Gothenburg, Sweden
  • 23:10 (UTC +02:00)

Block or report axean

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
axean/README.md

Rhombus TDA

Python workflow "cheatsheet"

  • delete last git stash: git stash drop
  • remove old jupyter kernels: jupyter kernelspec uninstall unwanted-kernel
  • pull all data from all submodules: git submodule update --init --recursive
  • remove a conda environment completely: conda remove --name myenv --all
  • new submodule: git submodule add <https_url>
  • update all submodules: git submodule update --remote --merge, then commit the new gitlink
  • list all jupyter kernels: jupyter kernelspec list
  • install a new jupyter kernel for a python interpreter in a conda env python -m ipykernel install --user --name=<CONDA ENV NAME> --display-name="$(python --version): <PRETTY NAME>"

A jupyter kernel is basically something which allows you to access other conda environments using the same jupyter notebook server.

Ubuntu Makefile

USER=your user name goes here
HOME=/home/$(USER)

all: update clean
	ldconfig && updatedb
	screenfetch

update:
	apt-get install -f
	apt-get update
	apt-get upgrade -y

clean:
	apt autoclean
	apt autoremove -y

   
.PHONY: all update clean

Popular repositories Loading

  1. axean axean Public

    github frontpage

  2. tergite tergite Public

    Forked from tergite/tergite

    The SDK in the [Tergite software stack](https://tergite.github.io/) for connecting to the WACQT quantum computer.

    Python

  3. tergite.github.io tergite.github.io Public

    Forked from tergite/tergite.github.io

    The documentation website for tergite stack

    Jupyter Notebook

  4. tergite-autocalibration tergite-autocalibration Public

    Forked from tergite/tergite-autocalibration

    A commandline application to calibrate the WACQT quantum computers automatically.

    Jupyter Notebook

  5. tergite-frontend tergite-frontend Public

    Forked from tergite/tergite-frontend

    The Frontend in the [Tergite software stack](https://tergite.github.io/) of the WACQT quantum computer.

    TypeScript

  6. tergite-backend tergite-backend Public

    Forked from tergite/tergite-backend

    The Backend in the Tergite software stack of the WACQT quantum computer.

    Python