gunicorn run:app --workers=9
gunicorn run:app --workers=9 --worker-class=meinheld.gmeinheld.MeinheldWorker
Macbook Pro 2015 Python 3.7
| Framework | Server | Req/s | Max latency | +/- Stdev |
|---|
| """Converts floats to/from any base. | |
| 2021-03-25 v1.1 by Cees Timmerman""" | |
| import math | |
| NUMERALS = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
| def numeral(i): | |
| try: |
gunicorn run:app --workers=9
gunicorn run:app --workers=9 --worker-class=meinheld.gmeinheld.MeinheldWorker
Macbook Pro 2015 Python 3.7
| Framework | Server | Req/s | Max latency | +/- Stdev |
|---|
| echo -e '"$RANDOM returns a pseudorandom integer between 0 and 32767" - False.' | |
| (( r = 1 )) | |
| until ((r <= 0 || r >= 32767)) | |
| do | |
| (( r = $RANDOM )) | |
| done | |
| echo -e "$r.\nSemicolons replace newlines:" | |
| (( r = 5)); while ((r < 10)); do echo $r; (( r ++ )); done | |
| echo "Ranges include end:" |
| # Generate a 440 Hz square waveform in Pygame by building an array of samples and play | |
| # it for 5 seconds. Change the hard-coded 440 to another value to generate a different | |
| # pitch. | |
| # | |
| # Run with the following command: | |
| # python pygame-play-tone.py | |
| from array import array | |
| from time import sleep |
| node { | |
| echo 'Results included as an inline comment exactly how they are returned as of Jenkins 2.121, with $BUILD_NUMBER = 1' | |
| echo 'No quotes, pipeline command in single quotes' | |
| sh 'echo $BUILD_NUMBER' // 1 | |
| echo 'Double quotes are silently dropped' | |
| sh 'echo "$BUILD_NUMBER"' // 1 | |
| echo 'Even escaped with a single backslash they are dropped' | |
| sh 'echo \"$BUILD_NUMBER\"' // 1 | |
| echo 'Using two backslashes, the quotes are preserved' | |
| sh 'echo \\"$BUILD_NUMBER\\"' // "1" |
If you don't learn from the past you're doomed to repeat it.
| #coding: utf8 | |
| """ Simple debugging HTTP server | |
| 2020-11-20 v1.0 by Cees Timmerman | |
| """ | |
| import logging | |
| from pprint import pformat as pf | |
| from flask import Flask, request, make_response | |
| app = Flask(__name__) |
| """Euler's pentagonal formula, by Cees Timmerman, 2020-11-23. | |
| https://www.youtube.com/watch?v=iJ8pnCO0nTY""" | |
| import math | |
| def get_lookback_index(x: int): | |
| i = 0 | |
| a = 0 | |
| b = 1 | |
| steps = [1] | |
| while i < x-1: |
| // from https://fireship.io/lessons/wasm-video-to-gif/ | |
| // formatted using prettier --write "src/**/*.{js,jsx}" | |
| import React, { useState, useEffect } from 'react'; | |
| import './App.css'; | |
| import { createFFmpeg, fetchFile } from '@ffmpeg/ffmpeg'; | |
| const ffmpeg = createFFmpeg({ log: true }); | |
| function App() { |