This is Akash Mittal, an overall computer scientist. He is in software development from more than 10 years and worked on technologies like ReactJS, React Native, Php, JS, Golang, Java, Android etc. Being a die hard animal lover is the only trait, he is proud of.
There are 4 primitive data types in Carbon language – Bool, Int, Float and String. Bool Similar to other languages, bool represents Boolean. It’s values are True and False. It…
To define variables in carbon language, use this syntax – Code Example Let’s understand this example – var – To indicate that this is a variable. x – Name of…
Carbon Language is the successor to C++ which means it is better in all those aspects where C++ lacks. In this article we will introduce you to the Carbon Language.…
Docker throws error standard_init_linux.go:228: exec user process caused: exec format error when there are issues with executable file format. It could happen due to these reasons – You forgot to…
In this article we will see how Bootstrap Tour links to other pages. By the end of this post we will create a multi page application with Bootstrap tour embedded…
Numpy throws error – only length-1 (size-1) arrays can be converted to python scalars when you are passing an array to a Python inbuild function which expects single value. This…
You will get aapt: error: resource android:color/system_neutral1_1000 not found when you are using Material-1.5.0-alpha03 or later and using compiledSdkVersion less than 31. Problem According to Material Component release notes, Make…
In this article we will see how to run docker containers for Plex, Sonarr, Radarr, Jackett and Transmission. Together these technologies make a complete suit. Let’s see how we can…
You can never guess how many times I tried to learn WordPress. For a beginner, it seems a daunting process. First two times I made several mistakes but the third…
To access docker container filesystem and terminal, use this command – Here the choice of terminal depends on the flavor of operating system used by container image. Some of them…
In order to set custom name to a docker container, use this command – For example, we can run a mongodb container with custom name as my-mongo-container – This will…
We saw in our last article how to get logs of a docker container. In this article we will see how to continuously stream the logs in host machine. For…
In order to get logs of docker container, we can use this command – Or, For our example of mongodb, let’s first run a container – Now let’s check which…
To bind a docker container port with host, use this command – Let’s see this using an example. First, we need a docker image which exposes a port. Generally the…
In this article we will look at the differences between docker run and docker start command. We will discuss which one to use and when. docker run docker start This…
To list all the running docker containers, use this command – and use this command to list all the containers running or otherwise – Different Container States Suppose no container…
Sometimes, docker run <image> or docker start <container_id> doesn’t start a container. This is because either there is no starting process or the process completes instantly. Introduction In Dockerfile of…