Disclosure: This article may contain affiliate links. When you purchase, we may earn a small commission.
Top 10 Free Courses to Learn Python in 2023 - Best of Lot
There is no doubt that Python is currently the world's #1 programming language and the biggest advantage of that is it's bringing more and more people into the programming world. In recent years, I have seen more people learning Python than any other language, yes, not even JavaScript. Many of them learning Python to explore some awesome Data Science and Machine learning libraries provided by Python. Some people are also learning Python for web development and there are still many developers who are learning Python for scripting and automating trivial tasks. It doesn't matter why you are learning Python at this moment, it's a great thing in itself that you have decided to learn Python.
Labels:
courses
,
online resources
,
python
5 Examples of df command in Linux
The df command is used to find the amount of disk space used and available on different partitions and file systems. The simplest example of df command is just typing df on console with out any arguments and it will show you the space used and available on all currently mounted file systems of all types e.g NFS, ext3 and both local and remote. Alternatively you can ask df command to print the size and space available and used for a particular partition. Normally the disk space is printed in units of 1024 bytes, but this can be overridden. I commonly use df -h option to print the size and disk usage in human readable format e.g. G for giga bytes, M for mega bytes and so on.
Top 10 Angular Tutorials and Courses for Web Developers in 2023 - Best of Lot
Hello guys, if you are interested in learning the Angular framework in 2023, one of the best and most popular JavaScript frameworks for developing component-based Web GUI, and looking for some awesome courses, books, and tutorials then you have come to the right place. Earlier, I have shared the best Angular courses and In this article, I am going to share some of the best resources like books, tutorials, and courses to learn the Angular framework, formerly known as Angular, and now famous as Angular 2. It's backed by Google; hence you should not worry about it being outdated and losing relevance in a couple of years. Any investment you made in learning Angular will pay you rich dividends in the coming years.
Labels:
Angular
,
courses
,
JavaScript
,
online resources
Top 5 React and Redux Courses to Learn Online in 2023 - Best of Lot
If you are a Web developer or someone passionate about web development and looking for some awesome courses to learn React or React JS, a popular JavaScript framework to develop a component-based user interface then you have come to the right place. Facebook's React library has taken the front-end development world by storm. More and more people have started using React even in favor of Google's Angular, another popular front-end development framework. Well, I am not going into the classic debate of Angular vs React as both the framework has their own advantage and disadvantage but if you have chosen to learn React, you have made the right decision.
Labels:
courses
,
online resources
,
React JS
,
web development
3 ways to parse JSON String to Object in Java [Jackson, Gson, and json-simple Example]
One of the common task in Java web application, particularly the ones which
deals with RESTful web services are parsing JSON messages. Many times you
need to parse JSON to create a Java object like parsing a JSON message to
create a POJO, for example, an Order or a Book. Representing JSON in Java is easy, it's like a
String value but unfortunately, JDK doesn't provide any standard API to
parse JSON in Java. There were talks to add JSON parsing API in JDK 9 but
that didn't materialize, but you don't need to worry. There are many good
open-source JSON parsing libraries you can use to parse any kind of JSON in
your Java program.
Labels:
Java JSON tutorial
,
JSON
How Long Does It Take To Learn Cyber Security?
Hello guys, if you want to become a Cyber Security Engineer or a Cyber Security Analyst and wondering how long it take to learn all essential Cyber Security concepts then you have come to the right place. Earlier, I have shared best Cyber Security online courses, Pen testing certification courses, and Ethical Hacking online courses to become a Security specialist in 2023 and in this article, I am going to share how you can learn Cyber Security and how much time it take to learn Cyber Security concepts, tools, and practices. Cyber security is a massive industry that involves protecting data from unauthorized access either locally on your devices such as a laptop, computer, phone, router, local network, or the data on the server that holds the companies data such as users information and their credit card. This article will help you estimate the time needed for learning cyber security and which skills are essential.
Labels:
best of javarevisited
,
Cyber Security
,
roadmap
Top 5 SQL Server Management Studio Tips for Programmers and DBAs
Hello guys, If you use SQL Server database and use SQL Server Management Studio in your day to day work and looking for tips to improve productivity and work fast and efficiently then you have come to the right place. Earlier, I have shared SQL Server online courses, SQL Server Interview questions and SQL Server Management Studio keyboard shortcuts and today, I am going to share amazing tips to make most of SSMS. These are the tips I learned hard way after working close to 8 years on SQL Server backend. Anyway, we all love tips? isn't it? Well, I certainly do, they not only make life easier on work but also gives us a joy of discovery. Every time I discover a not-so-trivial tip I feel happy and become more productive and that's why I am always in hunt of useful tips which can help me in my work.
Labels:
best of javarevisited
,
Microsoft SQL Server
,
SQL
,
tips
Area and Perimeter of Square in Java Program? Example Tutorial
Hello guys, if you are looking for Java program to calculate area of Square or program to calculate perimeter of square or just learning Java and looking for programming exercises then you have come to the right place. I have share many programming exercises and homework in this blog and today, I am going to share another simple programming assignment for beginners. Yes, we ae going to write a program which will calculate the area and perimeter of a square in Java. If you don't remember, area of a square is nothing but the multiplication of side with itself or square of side, while perimeter of a square is 4 times of its side because in case of square, each side is equal.
Labels:
Coding problems
,
homework
Why use Date as YYYYMMDD in SQL Server?
When you enter a Date in SQL SERVER for inserting data or filtering data in WHERE clause, what you enter is String. SQL Server infernally converts that formatted String to different date and time data types in Java e.g. DATETIME, DATE, TIME, DATETIME2 and SMALLDATETIME. This conversion is subject to language setting in SQL SERVER, for example, the same date 03/07/2015 can be interpreted as 3rd March 2015 if language setting is US English (MMDDYYYY) and 3rd July 2015 if language is set to British English(DDMMYYYY). To avoid this, you can enter date as YYYYMMDD format, which is considered language neutral and always interpreted correctly by Microsoft SQL Server.
Labels:
Microsoft SQL Server
,
SQL
,
SQL Interview Questions
Subscribe to:
Posts
(
Atom
)