One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| Results of running this script: https://gist.github.com/jabbalaci/398429347c96e98aba88 | |
| Views Ups Downs Title (Speakers) | |
| 9,810 166 3 Keynote - Jacob Kaplan-Moss - Pycon 2015 (Jacob Kaplan-Moss) | |
| 7,044 64 0 Type Hints - Guido van Rossum - PyCon 2015 (Guido van Rossum) | |
| 4,742 121 0 David Beazley - Python Concurrency From the Ground Up: LIVE! - PyCon 2015 (David Beazley) | |
| 4,684 66 3 Keynote - Guido van Rossum - PyCon 2015 (Guido van Rossum) | |
| 4,272 78 1 Dan Callahan - My Python's a little Rust-y - PyCon 2015 (Dan Callahan) | |
| 2,694 34 0 How to build a brain with Python (Trevor Bekolay) | |
| 2,391 29 0 Andrew T. Baker - Demystifying Docker - PyCon 2015 (Andrew T. Baker) |
| import docker | |
| import json | |
| client = docker.from_env() | |
| service_list = client.services.list() | |
| print("Services") | |
| print("--------") | |
| def to_mounts_string(ml): |
| ## this GeoIP dat file relate on centos environment please change to your OS path | |
| geoip_country /usr/share/GeoIP/GeoIP-initial.dat; | |
| map $request_uri $request_uri_path { | |
| "~^(?P<path>[^?]*)(\?.*)?$" $path; | |
| } | |
| log_format w3cjson escape=json | |
| '{' | |
| '"Date":"$time_iso8601",' |
How to transcribe Thai speech in videos into text.
Google Cloud or Firebase project with billing enabled.
ffmpeg or Docker.
A collection of links to the excellent "Composing Software" series of medium stories by Eric Elliott.
Edit: I see that each post in the series now has index, previous and next links. However, they don't follow a linear flow through all the articles with some pointing back to previous posts effectively locking you in a loop.
| package main | |
| import ( | |
| "context" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" | |
| "time" | |
| ) |
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
| package main | |
| import ( | |
| "io" | |
| "net/http" | |
| "sync/atomic" | |
| ) | |
| func index() http.Handler { | |
| return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |