A Pen by Lakindu Akash on CodePen.
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
package main | |
import ( | |
"fmt" | |
) | |
func world(c chan string) { | |
c <- "World!" | |
fmt.Println("World finished") | |
} |
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
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func world() { | |
fmt.Print("World") | |
} |
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
export const isoCountries = [ | |
{code : 'AF', name : 'Afghanistan'}, | |
{code : 'AX', name : 'Aland Islands'}, | |
{code : 'AL', name : 'Albania'}, | |
{code : 'DZ', name : 'Algeria'}, | |
{code : 'AS', name : 'American Samoa'}, | |
{code : 'AD', name : 'Andorra'}, | |
{code : 'AO', name : 'Angola'}, | |
{code : 'AI', name : 'Anguilla'}, | |
{code : 'AQ', name : 'Antarctica'}, |
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
#!/usr/local/bin/python3 | |
import subprocess | |
import shlex | |
import json | |
import glob | |
import sys | |
# This depend on ffmpeg | |
def findVideoMetada(pathToInputVideo): |