Author: thebuzz

Name of Innovation

csv-example

Product Title,Price,Rootstock,Height,Description Apple Tree,39 ,M12,36,Good tasting fruit. Apple Tree,39 ,M40,36, ABC Apple Tree,39 ,M12,50, XYZ Apple Tree,39 ,M40,50, DEF Orange Tree,53 ,A67,48,Bad tasting fruit. Orange Tree,53 ,B78,48, GHK Orange Tree,70 ,A67,70, LMN Orange Tree,70 ,B78,70, OPQ


August 10, 2018 0

How to install Anaconda

Please download Anaconda from here – https://www.anaconda.com/download/   2. Confirm if it is working fine or not – https://docs.anaconda.com/anaconda/user-guide/getting-started Launch Anaconda Navigator Click on Spider ( First install and Launch ) Write a basic hello program and confirm if it is working fine or not.      


August 6, 2018 0

Python – Pandas and Numpy

#from numpy import * import numpy as np import time def trad_version():     t1 = time.time()     X = range (10000000)     Y = range (10000000)     Z = []     for i in range(len(X)):         Z.append(X[i] + Y[i])         return time.time() – t1…
Read more


August 3, 2018 0

Cassandra

Start Cassandra – woir@woir-VirtualBox:~/apache-cassandra-3.11.2/bin$ cd /home/woir/apache-cassandra-3.11.2/bin woir@woir-VirtualBox:~/apache-cassandra-3.11.2/bin$ ./cassandra woir@woir-VirtualBox:~/apache-cassandra-3.11.2/bin$ CompilerOracle: dontinline org/apache/cassandra/db/Columns$Serializer.deserializeLargeSubset (Lorg/apache/cassandra/io/util/DataInputPlus;Lorg/apache/cassandra/db/Columns;I)Lorg/apache/cassandra/db/Columns; CompilerOracle: dontinline org/apache/cassandra/db/Columns$Serializer.serializeLargeSubset (Ljava/util/Collection;ILorg/apache/cassandra/db/Columns;ILorg/apache/cassandra/io/util/DataOutputPlus;)V CompilerOracle: dontinline org/apache/cassandra/db/Columns$Serializer.serializeLargeSubsetSize (Ljava/util/Collection;ILorg/apache/cassandra/db/Columns;I)I CompilerOracle: dontinline ………………………………………………….   woir@woir-VirtualBox:~/apache-cassandra-3.11.2/bin$ cd /home/woir/apache-cassandra-3.11.2/bin woir@woir-VirtualBox:~/apache-cassandra-3.11.2/bin$ ./cqlsh Connected to Test Cluster at 127.0.0.1:9042. [cqlsh 5.0.1 | Cassandra 3.11.2 | CQL spec 3.4.4 | Native protocol v4] Use HELP for help. cqlsh> Get…
Read more


July 31, 2018 0

Big Data Virtual Machine and Hadoop Cluster Setup

Dear Colleges/Faculties, Reach out to us at info@woir.in or 9555295300 and get benefit at lower cost with high quality and rich in feature setup. At WOIR Software we work to bridge the gap between Industry and Engineering Colleges. While working with many engineering colleges and doing workshop with them I found there is a need…
Read more


July 31, 2018 0

Python Examples

Python Examples   


July 27, 2018 0

Internship Programs

Dear Students, kindly click on the link below it’s a important news for all the engineering students – http://www.newsworldindia.in/india/3-internships-compulsory-for-engineering-students-from-this-year-mhrd/269530/ Do not worry if you have not yet planned anything for your internship, WOIR Software has brought a golden chance for you.  Get yourself enrolled today by sending email at info@woir.in in for various latest industrial…
Read more


July 9, 2018 0

Big Data Analytics Training & Internship

WOIR Software Announces Internship PLUS training on Big Data Analytics Mentorship under highly experienced IITian Tenure approx. 6 to 8 weeks or more depending on your need, full time/part time ( 11:30 am to 8:30 pm ) Limited seats, small batches for trainings and internships The position/training is based in Hyderabad (Near Hitex City) Training…
Read more


March 21, 2018 0

WOIR is Hiring Interns/Trainees from 3rd Week of March, 2018

WOIR Software is looking for interns/trainees. Hiring will include interview where he/she will be asked to demonstrate the logical thinking and programming skill.It is unpaid position, they would be given a valid certificate from private limited company for the period. Tenure approx. 3 months, full time The position is based in Hyderabad (near Hitex City)…
Read more


March 14, 2018 0

nginx

sudo apt-get install nginx sudo service nginx stop sudo nginx -c $PWD/nginx_keep_alive.conf ######### To run Nginx as a “100% transparent” proxy for Elasticsearch ############### events { worker_connections 1024; } http { server { listen 8080; location / { proxy_pass http://localhost:9200; } } } ######################## Persistent Connection ########################## events { worker_connections 1024; } http { upstream…
Read more


November 23, 2017 0