I hereby claim:
- I am tahesse on github.
- I am tahesse (https://keybase.io/tahesse) on keybase.
- I have a public key ASC5oB1TWSKfC3-p_ZDDJ3m5XEf0kGzJlapCX-Gm-pOSuQo
To claim this, I am signing this object:
Starting Jupyter Enterprise Gateway... | |
[D 2022-10-07 14:58:34.251 EnterpriseGatewayApp] Searching ['/usr/local/bin', '/home/jovyan/.jupyter', '/home/jovyan/.local/etc/jupyter', '/opt/conda/etc/jupyter', '/usr/local/etc/jupyter', '/etc/jupyter'] for config files | |
[D 2022-10-07 14:58:34.251 EnterpriseGatewayApp] Looking for jupyter_config in /etc/jupyter | |
[D 2022-10-07 14:58:34.252 EnterpriseGatewayApp] Looking for jupyter_config in /usr/local/etc/jupyter | |
[D 2022-10-07 14:58:34.252 EnterpriseGatewayApp] Looking for jupyter_config in /opt/conda/etc/jupyter | |
[D 2022-10-07 14:58:34.253 EnterpriseGatewayApp] Looking for jupyter_config in /home/jovyan/.local/etc/jupyter | |
[D 2022-10-07 14:58:34.253 EnterpriseGatewayApp] Looking for jupyter_config in /home/jovyan/.jupyter | |
[D 2022-10-07 14:58:34.254 EnterpriseGatewayApp] Looking for jupyter_config in /usr/local/bin | |
[D 2022-10-07 14:58:34.254 EnterpriseGatewayApp] Looking for jupyter_enterprise_gateway_config in /etc/jupyter | |
[D 2022-10-07 14:58:34.255 EnterpriseGatewayApp] |
const fs = require('fs'); | |
const pseudo = ['hover', 'active', 'focus'] | |
const prefix = ['text', 'bg']; | |
const colors = ['primary', 'secondary' , 'success' , 'error' , 'warning']; | |
const intensity = ['50' , '100' , '200' , '300' , '400' , '500' , '600' , '700' , '800' , '900']; | |
const fileContent = []; | |
const p = (str) => fileContent.push(str); |
I hereby claim:
To claim this, I am signing this object:
const a = [ | |
{id: 1}, | |
{id: 4}, | |
{id: 8}, | |
{id: 6}, | |
]; | |
const b = [ | |
{id: 1, op: 'foo'}, | |
{id: 2, op: 'abc'}, | |
{id: 3, op: 'def'}, |
import random | |
import click | |
import uvicorn | |
from fastapi import FastAPI, APIRouter, Depends, Request | |
# Service | |
class MySingletonService: | |
def __init__(self): |
from typing import TypedDict | |
class Movie(TypedDict): | |
name: str | |
year: int | |
def foo(movie_params: Movie): | |
pass # do your thing |
#!/usr/bin/env sh | |
# https://docs.docker.com/engine/install/debian/ | |
if [ $EUID != 0 ]; then | |
sudo "$0" "$@" | |
exit $? | |
fi | |
apt-get remove docker docker-engine docker.io containerd runc |
#!/bin/bash | |
# set your device name here (can be found through `xinput`) | |
touchpadDevice='SynPS/2 Synaptics TouchPad' | |
if [ ! -z "$1" ]; then | |
# set the device state via argument (must be 0 or 1) | |
devEnabled=$1 | |
else | |
# toggle the device state |
class Book { | |
String title; | |
Book(this.title); | |
} | |
void main() { | |
List<Book> bookList = [ | |
Book('foo'), | |
]; |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import logging.config | |
import functools | |
from typing import Callable, Union | |
__author__ = 'Thomas Hesse' |