Trust can’t be given, you must earn it!!
Lint Roller? I Barely Know Her
wallacepolsom
occasionally subtle
Not today Justin

Janaina Medeiros
Misplaced Lens Cap

if i look back, i am lost
2025 on Tumblr: Trends That Defined the Year
noise dept.

No title available
sheepfilms

JBB: An Artblog!
art blog(derogatory)

Kiana Khansmith
Cosimo Galluzzi
Three Goblin Art

izzy's playlists!
Jules of Nature

No title available
Aqua Utopia|海の底で記憶を紡ぐ
seen from United States
seen from United States

seen from Belgium

seen from Mexico
seen from Qatar

seen from United Kingdom
seen from United Kingdom
seen from Australia
seen from United States

seen from Maldives
seen from Italy
seen from Mexico
seen from China

seen from Maldives
seen from China
seen from United States

seen from United States

seen from United States

seen from Austria
seen from United States
@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.