Posts

Showing posts from 2017

Update to latest version of Node.js in mac

Image
If you are using node.js and what to update your framework to a newer stable version follow the steps below 1. Open the terminal Open Terminal Terminal Window 2. Check the node version Click here to see how to check the node version 3. Type the following command sudo npm cache clean -f  (force) clear you npm cache clearing npm cache 4. Type the password if prompted as we are using sudo command Password Prompt 5. After that you will get like this below It indicates the cache has been cleared 5.  sudo npm install -g n  install "n" (this might take a while) Checking for new version. You may use the command suggested or follow the procedure to update to the newest stable version 6.  sudo n stable  upgrade to lastest version  7. Check for the node version Thats all to update into the new version of the Node.js in mac. If any help or suggestion comment your opinion below. Thank you.

Checking the node.js version in MAC

Image
After installing Node.js to your PC all you need to do to check weather it is installed correctly or its version follow the steps below 1. Open the termainal Search for terminal and open Terminal Window 2. Type the following command  command :   node -v In the command Node specifies node.js and -v means version which intern the os returns the current installed version of node.js Command : node -v 3.  Thats it will return the version of the node.js In my case it was v6.11.0 Node Version : v6.11.0 Comment if you need any help in node.js will help you out if any. Feel free to ask any thing.

Types of Computers - Basic Computers

Image
Broadly saying computer is classified into four types. 1. Super Computer 2. Main Frame Computer 3. Mini Computer 4. Micro Computer Types of computer - Basic Computers Uses of these computers in real world are listed below Super Computer: Super computers are used for satellite signal receiving and weather reports. Super Computer Main Frame Computers: Main frame computers are used in Air Lines,Air Ways etc., Main Frame Computer Mini Computers: These computers are like for single users usage Mini Computer Micro Computers: Mostly called as Personal computers Micro Computer

History of HTML - Learn HTML

Image
HTML History Creator of HTML - Berners - LEE Basic History of HTML

Tutorial Contents - Learn HTML

Image
Welcome to the tutorial of HTML. Learn In depth content for a better web development. Skip the Introductory topics if you have strong foundation. Content: 1. What is HTML? 2. History

What is HTML - Learn HTML (Basic Introduction to tutorial)

Image
HTML stands for Hyper Text Markup Language which is the most widely used language for web development. It is a standard markup for creating web pages.

Is Subtraction of string possible?

Image
For Making it simple why cant we take a subtraction operation for string Here is the proof. I have taken two stings say String1 and stirng2. I have added it gave a result which result in glue of two strings two gether(Concatenation). But if I apply the subtraction operation the result I got is NaN which clearly says that Subtraction operation should only perform on Numbers as you already know that NaN stands for Not a Number.

Why Semicolons are needed for every line of JavaScript?

Image
All statements in JavaScript must end with a semi-colon, to indicate that this is where the statement ends. If you don't include these, you can get unexpected results. This ends with the strange behaviour of your code.

Why to Keep the <script> tag always at bottom?

Image
The reason we've put the <script> element near the bottom of the HTML file is that HTML is loaded by the browser in the order it appears in the file. If the JavaScript is loaded first and it is supposed to affect the HTML below it, it might not work, as the JavaScript would be loaded before the HTML it is supposed to work on. Therefore, putting JavaScript near the bottom of the HTML page is often the best strategy.

Launch Your Favorite Website from the Command Line

Image
Now I want to showcase how to Open any website from the command prompt. Prerequisites to do the following is a Windows system and an Edge browser. Go to start menu and type "Run" or press the shortcuts key for RUN(Win + R). Now type the following command  Microsoft-edge:<websiteurl> Here is a sample example Type : Microsoft-edge:https://greekydev.blogspot.com It will open the Greeky DeveloperJi website in Microsoft Edge Browser. Try it out and comment your opinion.

Program to find the largest of three numbers - C Language

Learn by Programming. The following programs are one of the ways to find the largest of three numbers. Please comment your views about the program. We will improvise it for future use.   Method 1: #include <stdio.h> int main(){ int a, b, c; printf("Enter a,b,c: "); scanf("%d %d %d", &a, &b, &c); if (a > b && a > c) { printf("a is Greater than b and c"); } else if (b > a && b > c) { printf("b is Greater than a and c"); } else if (c > a && c > b) { printf("c is Greater than a and b"); } else { printf("all are equal or any two values are equal"); } return 0; } Method 2: #include <stdio.h> #include <conio.h> int main() { int a, b, c; printf("Enter first number "); scanf("%d",&a); printf("\nEnter second numb

Link Breakage Report

We are extremely sorry For the Link Breakage. As we are using some 3rd Party URL navigation for Security and Monitoring Purpose. Please Lets have a quick check the following 1. If you are using any AdBlocker software please do disable it. 2. It may be from our end to. So Please revert back a mail regarding this at vsvvssrao@gmail.com (click on it to mail now)[click and start typing your message] In the mail please do clearly mention the blog post which you unable to open. In other case do comment below we will look and fix as early as possible. Regards, V.S

An FPGA Based Efficient Hardware Software Co design Architecture for ANN. Part 1(Abstraction)

Dear Reader, I want to share my B.Tech Project Experience step by step via Series of Blog Posts. Our B.Tech Final Year Project is on Artificial Neural Networks(ANN). So If you want are going to work on any project/work related to the ANN please do comment any of your doubts or clarifications. This post is just any introduction to the project via the abstraction. Project Title : An FPGA Based Efficient Hardware Software Co-Design Architecture for Artificial Neural Networks. In this Title you may wonder what does FPGA means. If you want to know details about FPGA I will write a blog post about it, But do comment your opinion for that. But for now FPGA stands for simply Field Programmable Gate Array(FPGA). This Project went for around 10-12 months with 6 hours a week and we are 5 member group. Here is the abstraction for the project below. ----------------------------------------- ******Abstraction************ ----------------------------------------- Artificial neu