5 Mar
2023

Instructions for setting up Jupyterhub and Jupyterlab with Docker in Windows

Category:Uncategorized

import pwd, subprocessc.JupyterHub.authenticator_class = ‘nativeauthenticator.NativeAuthenticator’c.Authenticator.admin_users = {‘admin’}c.Authenticator.allowed_users = {‘other_user_name’} def pre_spawn_hook(spawner):      username = spawner.user.name      try:           pwd.getpwnam(username)     except KeyError:           subprocess.check_call([‘useradd’, ‘-ms’, ‘/bin/bash’, username])c.Spawner.pre_spawn_hook = pre_spawn_hookc.Spawner.default_url = ‘/lab’ Useful Links:

Read More
3 Jul
2016

New paper published at Optics Letters

Category:Uncategorized

Low helium permeation cells for atomic microsystems technology. Optics Letters Vol. 41, Issue 12, pp. 2775-2778 (2016)  doi: 10.1364/OL.41.002775 Argyrios T. Dellis, Vishal Shah, Elizabeth A. Donley, Svenja Knappe, and John Kitching     Abstract: Laser spectroscopy of atoms confined in vapor cells can be strongly affected by the presence of background gases. A significant […]

Read More
28 Sep
2014

Paper published at Physical Review A

Category:Uncategorized

Spin-noise correlations and spin-noise exchange driven by low field spin-exchange collisions.Phys. Rev. A 90, 032705A. T. Dellis, M. Loulakis, and I. K. Kominis ABSTRACTThe physics of spin-exchange collisions have fueled several discoveries in fundamental physics and numerous applications in medical imaging and nuclear magnetic resonance. We report on the experimental observation and theoretical justification of […]

Read More
17 May
2014

Mathics

Category:Uncategorized

Mathics is a free computer algebra system with Mathematica compatible syntax. It is implemented on Python, relying on SymPy.http://www.mathics.org/

Read More