A straightforward version from Vincent Driessen article.
Create a copy branch from develop.
$ git checkout -b feature-1 developMerge with develop after code your feature.
A straightforward version from Vincent Driessen article.
Create a copy branch from develop.
$ git checkout -b feature-1 developMerge with develop after code your feature.
| /** | |
| /DOBPicker.tsx | |
| **/ | |
| 'use client'; | |
| import * as React from 'react'; | |
| import { format, subYears } from 'date-fns'; | |
| import { cn } from '@/lib/utils'; | |
| import { Button } from '@/components/ui/button'; |
| ## ====================================================================================================== ## | |
| ## Visit this page for a list of all variables: https://github.com/arut/nginx-rtmp-module/wiki/Directives ## | |
| ## Visit this site for many more configuration examples: https://github.com/arut/nginx-rtmp-module ## | |
| ## This example file was put together by Andre "ustoopia" for usage on https://youtube.com/ustoopia ## | |
| ## ====================================================================================================== ## | |
| user www-data; # Only used on linux. Nginx will run under this username. | |
| worker_processes 1; # Set this to how many processors/cores CPU has. Relates to "worker_connections" | |
| pid /run/nginx.pid; # Sets the location of the process id file (used on linux only). | |
| include /etc/nginx/modules-enabled/*.conf; # Include all the optional configuration files stored here. | |
| events { |
| #!/bin/bash | |
| set -e | |
| rm -rf openresty-1.19.3.2 openresty-1.19.3.2.tar.gz | |
| apt-get update -y | |
| apt-get install -y libpcre3-dev \ | |
| libssl-dev \ | |
| perl \ | |
| make \ | |
| build-essential \ |
For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.
Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon with HyperThreading enabled, but it can work without problem on slower machines.
You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.
| var mediaJSON = { "categories" : [ { "name" : "Movies", | |
| "videos" : [ | |
| { "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
| "sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
| "subtitle" : "By Blender Foundation", | |
| "thumb" : "images/BigBuckBunny.jpg", | |
| "title" : "Big Buck Bunny" | |
| }, | |
| { "description" : "The first Blender Open Movie from 2006", | |
| "sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
| #!/bin/bash | |
| ## Install and Setup TiDB on Linux | |
| ## https://github.com/pingcap/tidb | |
| ## https://github.com/pingcap/docs/blob/master/sql/privilege.md | |
| ## https://pingcap.com/blog/2016-10-17-how-we-build-tidb/ | |
| useradd tidb -d /var/lib/tidb -m | |
| usermod -a -G tidb tidb | |
| cd /var/lib/tidb |
| package main | |
| import ( | |
| "bytes" | |
| "errors" | |
| "fmt" | |
| "io" | |
| "log" | |
| "mime/multipart" | |
| "net/http" |