Trust can’t be given, you must earn it!!
Monterey Bay Aquarium
Cosmic Funnies
Cosimo Galluzzi
TVSTRANGERTHINGS

Love Begins
untitled
Xuebing Du
$LAYYYTER
cherry valley forever
RMH
KIROKAZE

PR's Tumblrdome
The Stonewall Inn

No title available
trying on a metaphor

pixel skylines
tumblr dot com
ojovivo
Lint Roller? I Barely Know Her
One Nice Bug Per Day

seen from Yemen
seen from Saudi Arabia
seen from Brazil
seen from Chile

seen from Pakistan
seen from Poland

seen from Canada

seen from Türkiye

seen from Italy
seen from Venezuela
seen from Taiwan
seen from Canada
seen from United States
seen from Türkiye

seen from Belgium

seen from China
seen from Israel
seen from Egypt

seen from Malaysia

seen from Malaysia
@ymchandra
Trust can’t be given, you must earn it!!
The transformation of luxuries into necessities is called evolution!
People say
“Failures are the stepping stones to success”.
Even if you have the success, the failures would still haunt you for the rest of your life.
“To get rid of an addiction we got to addict to a new one.”
“Listening and singing songs for a while in a day can reduce stress and increase confidence!”
- From my experience 😂
Life’s all about memories, the more you have the more you live!!
Laziness is the mother of all evil, ‘Beat it’ with craziness!
Me
Life is like roller coaster. Enjoy it when it's UP and fight it when it's DOWN.
Me
Quote of the year.
“Dream it. Wish it. Do it.”
Dream big, have a wish for it. No matter what happens just do it. And do it today.
I wish you a very happy and prosperous new year. Happy 2020.
Copenhagen Tivoli mini train
Copenhagen Tivoli Dragon Ride
Copenhagen day #2
Copenhagen day #1
On a cloudy day!
Docker Commands Explained
The below are some of the commonly used docker commands. These commands helps to get started for working with docker images and containers.
docker stop $(docker ps -a -q) (Stops all containers)
docker rm $(docker ps -a -q) (Removes all containers)
docker ps -a (Lists all containers)
docker images (Lists all images)
docker images -a (Lists all dangling images)
docker images -a | awk '{print $3}' | xargs docker rmi --force (Removes all images including dangling images)
docker image rm <image_id> (Removes the image, use --force to force remove)
docker logs <container_id> (To see logs of a container)
docker logs --follow <container_id> (Tails the logs)
docker inspect -f '{{ .Config.Env}} {{ .Config.Entrypoint}} {{ .Config.Cmd}}' <container_id> (To view the EntryPoint, CMD used and other details of a started container)
Streams in Java 8
Streams in Java 8 provide a convenient way to loop through a collection of objects. The following are the few examples on their usage.
Filter
List<Employee> adminEmployees = employees.stream() .filter(employee -> employee.getDepartment().equals("ADMIN")) .collect(Collectors.toList());
All Match
boolean areAllActive = employees.stream() .filter(employee -> employee.getDepartment().equals("ADMIN")) .allMatch(Employee::isActive);
Any Match
boolean hasAnyActiveEmployee = employees.stream() .anyMatch(Employee::isActive);
None Match
boolean hasNoneActiveEmployee = employees.stream() .noneMatch(Employee::isActive);
Race begins to figure out what else can be done with data. But not all data is useful, and some of it is faulty.
This article shows how the data usage is been increasing over the years.