Posts

Top 9 Android Smartphones For 15000 Rupees

Image
1. Xiaomi Mi Max RAM: 3 GB Camera: 16/5 MP Display: 6.44" Storage: 32 GB Released: May 2016 2. Asus Zenfone 2 RAM: 4 GB Camera: 13/5 MP Display: 5.5" Storage: 16 GB Released: March 2015 3. Vivo V 3 RAM: 3 GB Camera: 13/8 MP Display: 5" Storage: 32 GB Released: April 2016

Fix update/upgrade errors in Kali Linux [Rolling Release 2016.1]

Image
Last year I published an article on this blog about fixing update and upgrade issues in Kali Linux and it helped many users and now again after a year this issue has occurred which can not be solved by previous trick hence posting a new article here. Check previous article: http://com.puter.tips/2015/03/fix-updateupgrade-errors-in-kali-linux.html This trick is better than previous one. All you need to do is check latest repository links and update it in your sources list. You can go to official Kali Linux website documents http://docs.kali.org/general-use/kali-linux-sources-list-repositories and check for the current repository. Then open /etc/apt/sources.list in your favorite editor and overwrite the file with latest repositories links you found from official website. For now you can gedit /etc/apt/sources.list and change it to as this is for latest version Kali Linux 2016.1 Rolling Release: deb http://http.kali.org/kali kali-rolling main contrib non-free # For ...

Android 7.0 Nougat list of supported SOC

Image
Supported processors are as below: Qualcomm Snapdragon 415 430 435 615 616 617 625 650 652 805 808 810 820 821 Samsung Exynos ARMv8 5433 7420 7870 8890 Huawei Kirin 950, 955 MediaTek MT with Mali 6732 6722 6755 6797 MediaTek MT with PowerVR 6595M 6595T 6595M 6795 8135 8173 8176 679x Intel Atom Z 3460 3480 3530 3560 3570 3580 Rockchip RK 3368 Nvidia Tegra K1, X1 Nvidia GeForce 600 700 800 900 1000 Unsupported processors are as below: Qualcomm Snapdragon 200 208 210 212 400 410 412 600 800 801 Samsung Exynos 5250 5260 5410 5420 5422 5430 5800 7580 Mediatek MT 6735, 6753 Huawei Kirin 920 925 930 935 Learn more about Android 7.0 Nougat here: https://www.android.com/versions/nougat-7-0/

Learn C and C++

Image
C and C++: The major difference between C and C++ is that C is a procedural programming language and does not support classes and objects, while C++ is a combination of both procedural and object oriented programming language; therefore C++ can be called a hybrid language. C: C was developed by Dennis Ritchie between 1969 and 1973 at AT&T Bell Labs. When compared to C++, C is a subset of C++. C supports procedural programming paradigm for code development. In C (because it is a procedural programming language), data and functions are separate and free entities.

Full (MEAN) Stack Developer Tutorials

Image
Full Stack Development: The term full-stack means developers who are comfortable working with both back-end and front-end technologies. To be more specific, it means that the developer can work with databases, PHP, HTML, CSS, JavaScript and everything in between, also, venturing as far as converting Photoshop designs to front-end code. (Ref.: https://www.sitepoint.com/full-stack-developer/ ) MEAN Stack: MEAN is a framework for an easy starting point with MongoDB, Node.js, Express, and AngularJS based applications. It is designed to give you a quick and organized way to start developing MEAN based web apps with useful modules like Mongoose and Passport pre-bundled and configured. We mainly try to take care of the connection points between existing popular frameworks and solve common integration problems. (Ref.: http://learn.mean.io/ ) Online Certification Courses (MOOCs) and Tutorials: https://www.udacity.com/course/full-stack-web-developer-nanodegree--nd004 h...

Fix _nsis.py installation error in Anaconda

Image
What is Anaconda? Anaconda is the leading open data science platform powered by Python. The open source version of Anaconda is a high performance distribution of Python and R and includes over 100 of the most popular Python, R and Scala packages for data science. Ref.: https://www.continuum.io/downloads The error reads as below: Traceback (most recent call last): File "C:\Anaconda2\Lib\_nsis.py", line 164, in <module> main() File "C:\Anaconda2\Lib\_nsis.py", line 150, in main   mk_menus(remove=False) File "C:\Anaconda2\Lib\_nsis.py", line 94, in mk_menus   err("Traceback:\n%s\n" % traceback.format_exc(20)) IOError: [Errno 9] Bad file descriptor

Active Directory login in GitBlit

Image
What is Git? Git is a version control system that is used for software development and other version control tasks. As a distributed revision control system it is aimed at speed, data integrity, and support for distributed, non-linear workflows. Git was created by Linus Torvalds in 2005 for the development of the Linux kernel, with other kernel developers contributing to its initial development. Read more about Git: https://en.wikipedia.org/wiki/Git_(software) What is GitBlit? Gitblit is an open-source, pure Java stack for managing, viewing, and serving Git repositories. It's designed primarily as a tool for small workgroups who want to host centralized repositories. Read more about GitBlit: http://gitblit.com/