Posts

Support Code With Abhishek

Image
  Support Code With Abhishek Loading... Although the videos and other content of this website are free for anyone to watch, learn and share, this website and the Code WithAbhishek.com   relies on support from people like you. I dont earn anything significant from YouTube which makes it difficult for me to pay the hosting, equipment and software costs for producing content. All the donations will be used in buying new equipment, improving quality of the content and bringing more of such videos up. You can support this content by donating any amount of money through scanning the PayTM QR code below: Apart form paying through PayTM/Paypal, you can also support this content by: • Sharing it as much as you can • Liking and commenting on the videos • Sharing the posts on www.CodeWithAbhishek.com Thanks a lot for the tremendous support. Happy coding! 

Top 5 Programming Languages To Learn In 2022

Image
  Top 5 Programming Languages To Learn in 2022 Loading... We all are aware of technology and its development at an alarming rate. It's prevalent to see one technology overpassing the other with great updations and developments. To keep ourselves in the field of technology, one thing always remains intact - learning a programming language. Nowadays, the programming language is the basic building block of any technological development. It’s a pre-requisite of any major coding field. For example:- for machine learning, you need to learn languages like python, R, etc.; for web development, you need to learn HTML, CSS, JavaScript, etc., and the list goes on. If you are in this field, you should not know just one programming language. At the same time, you don't want to be an excellent example of the famous saying, " Jack of all trades master of none." To ensure that you are not a jack of all trades and a master of none, you should start by learning one language to perfecti...

How to Install & Setup VS Code for Running C++ Programs

Image
How to Install & Setup VS Code for running C++ Programs Loading... To run C++ programs in Visual Studio Code, you need to download and install the VS code on your computer.  Follow the steps given below: Step 1:  Download the VS Code by clicking here. Step 2:  Install VS code as soon as the downloading completes. <|ADIA|> Step 3:  To compile C++ programs, you need to install the MinGW compiler. Click here, and downloading will start shortly. Step 4:  Install the MinGW compiler.  <|ADIA|> Step 5:  Now, you need to add MinGW to the path. Go to This PC→C:/→Program Files (x86)→mingw-w64→i686-8.1.0-posix-dwarf-rt_v6-rev0→mingw32→bin.   Step 6:  Copy the path and paste in the environment variables. Right-click on  This PC →Properties →Advanced System Settings →Environment variables. <|ADIA|> Step 7 :  Click on the path and then  Edit →New.  Paste the copied path here and click ‘ ok.’ Step 8: ...

CSS ideas to spark your Web page

Image
  CSS ideas to spark your Web page Loading... Introduction C ascading  S tyle  S heets referred to as CSS, is a simple design language intended to simplify the process of making web pages presentable. CSS is not a programming language. It's not a markup language either.  CSS is a style sheet language.  CSS is what you use to style HTML elements selectively. Learning new CSS tricks is one of the best ways to shake up your website design. Here are a few of the helpful CSS tricks that will definitely help. 1.Selection in CSS On the web, we select content for different reasons. Maybe we want to copy a text and quote it somewhere, or maybe copying is just a habit that some users do it make reading easier. Usually, when the user selects any text on the web page, it has a white color with a blue background as blue. Why keep your webpage simple and the same as others. Here is an amazing trick. p::selection { background-color : pink ; color : rgb...