How To Earn Bitcoin (Satoshi) By Reading Articles, Playing Games and Listening to Podcasts?
How To Earn Bitcoin (Satoshi) By Reading Articles, Playing Games and Listening to Podcasts? before coming to this question. Let's first understand what Bitcoin is? According to Bitcoin Whitepaper, Bitcoin is a peer-to-peer electronic cash system. The anonymous creator of Bitcoin "Satoshi Nakamoto" launched Bitcoin on January 3rd, 2009, with the intention to create a... Continue Reading →
Future Of Mobile Application Development
History Of Mobile Application Development Before going and understanding the future of mobile application let us know what is the history of mobile application development https://youtu.be/wCJFYOesGJI History Of Mobile App Development If we stride back into the traditional days of mobile app design and development, then, we can probably find that the first used apps were... Continue Reading →
The supplied javaHome seems to be invalid. I cannot find the java executable. Tried location: C:\Program Files\Java\jdk1.8.0_341\bin\java.exe
Issue :- info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag.(node:10284) Warning: Accessing non-existent property 'padLevels' of module exports inside circular dependency(Use node --trace-warnings ... to show where the warning was created)Jetifier found 871 file(s) to forward-jetify. Using 16 workers…info JS server already running.info Installing the app… FAILURE: Build... Continue Reading →
Ansible
Ansible is a community project sponsored by Red Hat, it's an open-source project that helps automate IT tasks. In simple terms, if I want to define Ansible then it would be like Ansible is a simple automation tool which helps us to automate most IT tasks. Why Ansible? / Advantages of Ansible It is free... Continue Reading →
Web Scraping with Python
What is Web Scraping? Today we are going to see, How to do web scraping using Python? Extracting or fetching content/data from a website/websites can be called as Web Scraping. It is an automated, programmatic process by which data can be constantly scraped (extracted) from webpages. We can extract underlying HTML (Hyper Text Markup Language),... Continue Reading →
How To Solve React Native: Unexpected token ‘:’. Expected a ‘)’ or a ‘,’ after a parameter declaration
Update babel.config.js of your project from: module.exports = { presets: ['module:metro-react-native-babel-preset'], }; to: module.exports = { presets: [['module:metro-react-native-babel-preset', { unstable_disableES6Transforms: true }]], }; Run npm start --reset-cache to restart app.