Showing posts with label Tutorials. Show all posts
Showing posts with label Tutorials. Show all posts

Sunday, April 15, 2018

[TUTORIAL] Enable 4K UHD video recording on the Xiaomi Redmi Note 5 Pro


Xiaomi, released the Xiaomi Redmi Note 5 Pro only recently and with it comes a number of features that typically are found in much higher price brackets. The 2160×1080 18:9 screen, Snapdragon 636, 4/6GB of RAM and the 4,000mAh battery are all well above the price range of the device, and it’s no surprise that there were some cut corners in order to make the cost achievable for the Chinese company. One of these cut corners, as tends to be the case, was in the camera. This was despite the fact that the device was advertised as “India’s camera beast.” The camera in budget devices tends to be lacking in some features, one of which is support for 4K UHD video recording.it is now possible to enable 4K UHD video recording on the Xiaomi Redmi Note 5 Pro.


To do so, all you’ll need is root access and a root enabled file explorer like MiXplorer or Solid Explorer. Download the file explorer below and then check out the short tutorial linked below if you want to try it out!
Credits: XDA

Read more ...

Tuesday, June 9, 2015

What Is C++ And Why To Learn It.

What does C++ Programming Language mean?

C++ is an object oriented programming (OOP) language, developed by Bjarne Stroustrup, and is an extension of C language. It is therefore possible to code C++ in a "C style" or "object-oriented style." In certain scenarios, it can be coded in either way and is thus an effective example of a hybrid language.

{Warning - Reading Full Article May Be Boring BUT If You Really Want To Know C++ You Must Read Whole Article. }

C++ is a general purpose object oriented programming language. It is considered to be an intermediate level language, as it encapsulates both high and low level language features. Initially, the language was called 'C with classes’ as it had all properties of C language with an additional concept of 'classes’. However, it was renamed to C++ in 1983.

It is pronounced "C-Plus-Plus."

Why Learn C++?


Why would you care to learn C++? It is a very powerful programming language which basically has a “trust the programmer” motto. While that stance also increases the chance for errors without the compiler freaking out, it does give the programmer more flexibility in how they actually write their code.
Due to this, most programs are at least partially written in this language or its cousin, C. Learning C++ is also beneficial in another way – as C++ is very similar to C, you can understand and (for the most part) code in C as well.

What is C, What is C++, and What is the Difference?

C is a programming language originally developed for developing the Unix operating system. It is a low-level and powerful language, but it lacks many modern and useful constructs. C++ is a newer language, based on C, that adds many more modern programming language features that make it easier to program than C. 

Basically, C++ maintains all aspects of the C language, while providing new features to programmers that make it easier to write useful and sophisticated programs. 

For example, C++ makes it easier to manage memory and adds several features to allow "object-oriented" programming and "generic" programming. Basically, it makes it easier for programmers to stop thinking about the nitty-gritty details of how the machine works and think about the problems they are trying to solve.

So, what is C++ used for?


C++ is a powerful general-purpose programming language. It can be used to create small programs or large applications. It can be used to make CGI scripts or console-only DOS programs. C++ allows you to create programs to do almost anything you need to do. The creator of C++, Bjarne Stroustrup, has put together a partial list of applications written in C++.

How To learn C++?

No special knowledge is needed to learn C++, and if you are an independent learner, you can probably learn C++ from online tutorials or from books. There are plenty of free tutorials online, including Cprogramming.com's C++ tutorial - one which requires no prior programming experience. You can also pick out programming books from Flipkart, SnapDeal.

While reading a tutorial or a book, it is often helpful to type - not copy and paste (even if you can!) - the code into the compiler and run it. Typing it yourself will help you to get used to the typical typing errors that cause problems and it will force you to pay attention to the details of programming syntax. Typing your program will also familiarize you with the general structure of programs and with the use of common commands. After running an example program - and after making certain that you understand how it works - you should experiment with it: play with the program and test your own ideas. By seeing which modifications cause problems and which sections of the code are most important to the function of the program, you should learn quite a bit about programming. 


Try C++ Beginner to C++ Expert recommended book series, a six-book set designed to get you maximal information and help take you from beginner to C++ master. 

Top Three Website For Learning C++








Source: Internet
Join us here:
Our Fb Group.
Our Fb Page.
Our Twitter.


Read more ...