Skip to main content

Posts

Showing posts from August, 2017

Installing Tensorflow 1.3 on Windows 10 Machine in 3 simple steps

TensorFlow is an open-source software library for machine learning across a range of tasks. It is a system for building and training neural networks to detect and decipher patterns and correlations, analogous to (but not the same as) human learning and reasoning. It is used for both research and production at Google,‍ often replacing its closed-source predecessor, DistBelief. The latest version of TensorFlow is version 1.3. In this tutorial I will show you how to install tensorflow on a Windows 10 Machine. Step 1: Install Python 3.6 Python 3.6 is the latest stable release of python language interpreter. To install python 3.6 first download self executable python installer and install it on your Windows 10 machine. Remember to put the python home directory in the PATH variable. You can download the python 3.6.* from this URL https://www.python.org/downloads/ Step 2: Install Dependency libraries Once you installed python and set the environment path, you can invoke the p

Android Oreo 8.0 Best Features: 5 things to Know

What is Android Oreo? The latest version of Android that’s smarter, faster, and more powerful. Android Oreo gives you many new ways to extend your app and develop more efficiently. Some of the features includes Picture-in-picture   Notification dots  Adaptive icons  Shortcut pinning  Multidisplay support Picture-in-picture   Android 8.0 (API level 26) allows activities to launch in picture-in-picture (PIP) mode. PIP is a special type of multi-window mode mostly used for video playback. PIP mode is already available for Android TV; Android 8.0 makes the feature available on other Android devices. Notification dots   A notification is a message you display to the user outside of your app's normal UI. When you tell the system to issue a notification, it first appears as an icon in the notification area . To see the details of the notification,

Writing a Hello World Android/iOS Native Application in React Native

Assuming that you have installed the React Native as per instruction given in the post - Installing React Native in Ubuntu Linux / Mac OS Step 1: Open the Terminal Press CTRL+T to open the terminal in Linux or Find Terminal by searching it in Mac Step 2: Create a new react native project $react-native init AwesomeProject This will create a new AwesomeProject Folder and copy all necessary files and folders. This will install all the dependencies for your project. Step 3: Type Hello World String Go inside the AwesomeProject folder you will see index.android.js and index.ios.js. If you are developing for Android edit index.android.js or if you are developing for IOS edit index.ios.js. Now open any of them type hello world by replacing the default text in the following way.       <Text>Hello world!</Text> You whole index file should look like this import React, { Component } from 'react'; import { AppRegistry, Text } from 'react-native'; expo

Installing React Native latest Version in Mac OS

Installing package manager Homebrew brew Paste that at a Terminal prompt. /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Installing Xcode IDE Download it using link below or find it on Mac App Store https://developer.apple.com/download/   NOTE: If you have Xcode-beta.app installed along with production version of Xcode.app , make sure you are using production version of xcodebuild tool. You can set it with:   sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer/ Installing Android environment Git git *If you have installed XCode, Git is already installed, otherwise run the following brew install git Latest JDK Android Studio Choose a Custom installation Choose both Performance and Android Virtual Device After installation, choose Configure -> SDK Manager from the Android Studio welcome window. In the SDK Platforms window, choose Show Package Details and under

Installing React Native Latest Version in Ubuntu 16.04 LTS

1) Setup Node.JS Start the terminal and run the following commands to install nodeJS: curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash - sudo apt-get install nodejs If node command is unavailable sudo ln -s /usr/bin/nodejs /usr/bin/node Alternatives NodeJS instalations: curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - sudo apt-get install -y nodejs   or curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash - sudo apt-get install -y nodejs check if you have the current version node -v Run the npm to install the react-native sudo npm install -g react-native-cli 2) Setup Java sudo apt-get install lib32stdc++6 lib32z1 openjdk-7-jdk 3) Setup Android Studio: Android SDK or Android Studio http://developer.android.com/sdk/index.html Android SDK e ENV export ANDROID_HOME=/YOUR/LOCAL/ANDROID/SDK export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools 4) Setup emulator: On the terminal run the command andro