πͺ
This file contains hidden or 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
| /** | |
| * | |
| * - TαΊ£i chunk ΔαΊ§u tiΓͺn, Δα»c header Content-Range tα»« server Δα» biαΊΏt tα»ng dung lượng | |
| * - Sau ΔΓ³ tαΊ£i tiαΊΏp cΓ‘c chunk cΓ²n lαΊ‘i (nαΊΏu cΓ³) | |
| * - Cuα»i cΓΉng nα»i lαΊ‘i thΓ nh 1 file video hoΓ n chα»nh | |
| * | |
| * YΓͺu cαΊ§u: Node.js >= 18 (vΓ¬ dΓΉng fetch) | |
| */ | |
| import fs from "fs"; |
This file contains hidden or 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
| DB_HOST=db | |
| DB_PORT=27017 | |
| DB_ROOT_USER=root | |
| DB_ROOT_PASS=rootpass | |
| DB_USER=user | |
| DB_PASSWORD=userpass | |
| DB_NAME=mydb |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| START_TIME=$SECONDS | |
| set -e | |
| echo "-----START GENERATING HLS STREAM-----" | |
| # Usage create-vod-hls-gpu.sh SOURCE_FILE [OUTPUT_NAME] | |
| [[ ! "${1}" ]] && echo "Usage: create-vod-hls.sh SOURCE_FILE [OUTPUT_NAME]" && exit 1 | |
| # comment/add lines here to control which renditions would be created | |
| renditions=( |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Smooth Video Progress Bar</title> | |
| <style> | |
| body { | |
| font-family: sans-serif; | |
| padding: 20px; | |
| background: #f8f8f8; |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| START_TIME=$SECONDS | |
| set -e | |
| echo "-----START GENERATING HLS STREAM-----" | |
| # Usage create-vod-hls.sh SOURCE_FILE [OUTPUT_NAME] | |
| [[ ! "${1}" ]] && echo "Usage: create-vod-hls.sh SOURCE_FILE [OUTPUT_NAME]" && exit 1 | |
| # comment/add lines here to control which renditions would be created | |
| renditions=( |
This file contains hidden or 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 React, {Component} from 'react'; | |
| import {SafeAreaView, Text, View, Alert, Button, Switch} from 'react-native'; | |
| import Sound from 'react-native-sound'; | |
| class App extends Component { | |
| constructor(props) { | |
| super(props); | |
| Sound.setCategory('Playback', true); // true = mixWithOthers |
This file contains hidden or 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
| <template> | |
| <div class="message"> | |
| <div class="message-item user-name"> | |
| MTD | |
| </div> | |
| <div class="message-item timestamp"> | |
| | 11:21:32: | |
| </div> | |
| <div class="message-item text-message"> | |
| Hello how are you |
This file contains hidden or 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
| FROM quay.io/sclorg/nginx-120-c8s as base | |
| FROM base as builder | |
| USER root | |
| ARG JWT_MODULE_PATH=/usr/local/lib/ngx-http-auth-jwt-module | |
| ARG LIBJWT_VERSION=1.13.1 | |
| ARG NGINX_VERSION=1.20.0 |
This file contains hidden or 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
| version: '3.4' | |
| services: | |
| app: | |
| image: php:7.2-fpm-alpine | |
| restart: unless-stopped | |
| volumes: | |
| - ./:/var/www/html | |
| - ./www.conf:/usr/local/etc/php-fpm.d/www.conf | |
| webserver: |
This file contains hidden or 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 { withAuth } from "next-auth/middleware"; | |
| export default withAuth( | |
| { | |
| pages: { | |
| signIn: "/auth/signin", | |
| }, | |
| callbacks: { | |
| authorized: async ({ token }) => { | |
| if (!(token as any)?.id_token) return false; |
NewerOlder