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.
This file contains 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
#!/bin/bash | |
set -ex | |
pip_args=${@:-"--help"} | |
apk add --no-cache \ | |
--virtual .build-deps \ | |
gcc \ | |
g++ \ | |
make \ |
This file contains 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 emoji | |
import schedule | |
import asyncio | |
import inspect | |
from datetime import datetime | |
class Job(schedule.Job): |
- Official Python Job Board https://www.python.org/jobs/
-
pycoders newsletter job board: http://www.pythonjobshq.com
-
Python Jobs http://www.pythonjobs.com
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#!/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/
my
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
.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) |
NewerOlder