How to Run a Python Script via a File or the Shell
Python Script : One of the most important skills you need to build as a Python developer is to be able to run Python scripts and code. This is going to be the only way for you to know if your code works as you planned. It’s even the only way of knowing…
How to Uninstall Packages with Homebrew
Uninstall Packages with Homebrew: The Homebrew command is the underlying package manager that installs all those UNIX and open-source utilities you might want. It’s the easiest way to install them on Mac OS X, just as it is on Linux. Like Homebrew…
How to Fix “Error Establishing a Database Connection” in WordPress
Database Connection : While working with wordpress blog , we sometimes face with a common problem and that is not related wordpress design , not related to wordpress theme , even that is not related to any third-party Plugin, That issue exists inside the…
How to Install NODE-JS ?
NODE-JS Using Website: You can visit on the link Download Node and download LTS version. After installing node you can check your node version in command prompt using command.. ~ $node --version After that, you can just create a folder and add a file…
What is Node-JS ?
What is Node-JS : Node JS is an open-source server side runtime environment built on Chrome’s V8 JavaScript engine. It provides an event driven, non-blocking (asynchronous) I/O and cross-platform runtime environment for building highly scalable…
What Is AngularJS?
AngularJS is a structural framework for dynamic web apps. It lets you use HTML as your template language and lets you extend HTML’s syntax to express your application’s components clearly and succinctly. AngularJS’s data binding and…
How to hide WordPress theme update notifications
WordPress has a built-in upgrade system. This system automatically informs you when there is an upgrade available for WordPress, or one of the themes or plugins that are installed on your WordPress installation. Also Read : How to Update WordPress…
How to Install Anaconda Enterprise on Windows
Install Anaconda : Anaconda Enterprise is an enterprise-ready, secure, and scalable data science platform that empowers teams to govern data science assets, collaborate, and deploy data science projects. Enterprise 5 includes these capabilities: Easily…
How to download the task using URLSessionDownloadDelegate
URLSessionDownloadDelegate : By passing days the mobile APP is going more UX and UI friendly . Listening uninterrupted music or videos or browsing infifine scroll in a APP that means APP has to download something from the internet, be it images, data or…
How to use NSlock in ios
NSlock in ios : It is rare anymore that NSLock is the right tool for the job. There much better tools now, particularly with GCD.That’s very hard to implement without deadlocking if you’re trying to lock and unlock on different threads. The…