A TV show form 2013-14 by Arirang channel. Photographers travelling in Korea.
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
| #!/bin/bash | |
| # From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/ | |
| # | |
| ARGS=2 | |
| E_BADARGS=99 | |
| if [ $# -ne $ARGS ] # correct number of arguments to the script; | |
| then |
Literary works of Agatha Christie by main character.
https://github.com/spring-projects/spring-boot/blob/0b27f7c70e164b2b1a96477f1d9c1acba56790c1/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorWebExceptionHandler.java#L177-L185 https://github.com/spring-projects/spring-boot/blob/0b27f7c70e164b2b1a96477f1d9c1acba56790c1/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/BeanTypeRegistry.java#L96-L101 [https://github.com/hankcs/HanLP/blo
We can't make this file beautiful and searchable because it's too large.
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
| github.com/pkg/errors | |
| github.com/sirupsen/logrus | |
| google.golang.org/grpc | |
| k8s.io/apimachinery/pkg/apis/meta/v1 | |
| github.com/golang/protobuf/proto | |
| github.com/spf13/cobra | |
| github.com/gin-gonic/gin | |
| k8s.io/apimachinery/pkg/runtime | |
| github.com/spf13/viper | |
| github.com/gorilla/mux |
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 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
| ['joshua peek', 'josh@joshpeek.com'] | |
| ['michael hobbs', 'github@psudo.net', 'michaelshanehobbs@gmail.com', 'michaelshobbs@users.noreply.github.com'] | |
| ['jeff lindsay', 'progrium@gmail.com'] | |
| ['bryce', 'bryce@gitlab.com', 'bryce johnson'] | |
| ['andrew newdigate', 'andrew@gitlab.com', 'andrew@troupe.co'] | |
| ['grzegorz bizon', 'grzegorz bizon ', ' off until 20th june', 'grzegorz@gitlab.com', 'grzesiek.bizon@gmail.com', 'grzegorz.bizon@ntsn.pl'] | |
| ['steve azzopardi', 'steveazz@outlook.com', 'sazzopardi@gitlab.com'] | |
| ['z.j. van de weg', 'git@zjvandeweg.nl', 'zeger-jan van de weg', 'zegerjan@gitlab.com', 'gitlab@zjvandeweg.nl', 'mail@zjvandeweg.nl', 'zj van de weg', 'zeger-jan van de weg 🌴 ooo back on 12th of august', 'zegerjan@localhost.localdomain'] | |
| ['phil hughes', 'me@iamphill.com', 'theephil@gmail.com'] | |
| ['rémy coutable', 'remy@rymai.me', 'rymai', '🏖 rémy coutable 🏖', 'remy@gitlab.com'] |
# Delete all containers
docker rm $(docker ps -aq)
# Delete all images
docker rmi $(docker images -q)
# Delete all untagged images
docker rmi $(docker images -q --filter "dangling=true")References: