Results
These results are generated by a gatling simulation that ramps 100 user over 10 second and then keeps the users constant at that rate for 60 seconds before ramping again by 100 users. The entire scenario runs from 0 to 1000 users.
#!/bin/bash | |
set -ex | |
pip_args=${@:-"--help"} | |
apk add --no-cache \ | |
--virtual .build-deps \ | |
gcc \ | |
g++ \ | |
make \ |
import emoji | |
import schedule | |
import asyncio | |
import inspect | |
from datetime import datetime | |
class Job(schedule.Job): |
These results are generated by a gatling simulation that ramps 100 user over 10 second and then keeps the users constant at that rate for 60 seconds before ramping again by 100 users. The entire scenario runs from 0 to 1000 users.
pycoders newsletter job board: http://www.pythonjobshq.com
Python Jobs http://www.pythonjobs.com
#!/bin/bash | |
# | |
# Install an application or library that uses a PKG installer | |
# wrapped inside a DMG archive. Takes the URL of the DMG and | |
# optionally the name of the downloaded file locally. | |
# | |
# ./auto_install_dmg.sh https://example.com/software/download/super_genius_tool_v1.2.dmg | |
set -uxe | |
download_url=${1:-"https://google.com/"} |
PEP-420 is explaining the differences between regular packages and namespace packages: https://www.python.org/dev/peps/pep-0420/
__init__.py
:my
The beer frigde is a trust-based organism that will die if the trust is not nurtured.
Beer in the fridge is fair game to every member of the trust, unless explicitly labeled.
.PHONY: deploy build static-upload | |
SHELL := /bin/bash | |
base_image := elbaschid/python-base | |
builder_image := elbaschid/django-builder | |
tester_image := elbaschid/django-tester | |
image := tutum.co/elbaschid/love-fear | |
image_version := $(shell python deployer.py bump_version) |