This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/brython-dev/brython/issues/1190 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/joerick/pyinstrument/issues/70 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- session=0 --- | |
count=100000 time_diff=2.300 time_unit=23 micro | |
--- session=1 --- | |
count=100000 time_diff=2.262 time_unit=22 micro | |
--- session=2 --- | |
count=100000 time_diff=2.145 time_unit=21 micro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- session=0 --- | |
count=100000 time_diff=0.179 time_unit=1 micro | |
--- session=1 --- | |
count=100000 time_diff=0.168 time_unit=1 micro | |
--- session=2 --- | |
count=100000 time_diff=0.168 time_unit=1 micro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
master nice=0 | |
worker index=1 nice=19 | |
worker index=2 nice=19 | |
worker index=3 nice=19 | |
worker index=4 nice=19 | |
worker index=5 nice=19 | |
worker index=6 nice=19 | |
worker index=7 nice=19 | |
worker index=8 nice=19 | |
worker index=9 nice=19 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
master nice=0 | |
worker index=2 nice=19 | |
worker index=1 nice=19 | |
worker index=3 nice=19 | |
worker index=4 nice=19 | |
worker index=5 nice=19 | |
worker index=6 nice=19 | |
worker index=7 nice=19 | |
worker index=9 nice=19 | |
worker index=8 nice=19 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
robust cluster connection pool | |
""" | |
import asyncio | |
import logging | |
from contextvars import ContextVar | |
from typing import Awaitable | |
from typing import List | |
from typing import Mapping |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
""" | |
import tester | |
import logging | |
from logging.config import fileConfig | |
from sqlalchemy import pool | |
from sqlalchemy import engine_from_config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// https://github.com/bogde/HX711 | |
// | |
// sensor setup: | |
// * 5V supply (from nano) | |
// * 128 gain (library config) | |
// * +-20 mV input range (derived from gain) | |
// * int32_t output range (library convention) | |
// * 80 Hz (12.5 ms) sample rate (jumper on board) | |
// |