Posts

Showing posts from 2016

DESIGN A PROCESSOR

Image
                   DESIGN A RISC PROCESSOR I'm trying to give you another side of Computer Architecture. This is limited functional processor.you can create this alogorthamcally.also you can use test bench for testing input & outputs. What is RISC? Actually it is called reduced instruction Set  Computer. Also there are two types architectures. 1.ARM 2.MIPS i'm going to design a processor using VERILOG VHDL in MIPS Architecture. there are 7 milestones you have to achive to create Processor. 1.create 4 bit  bidirectional shift register using verilog.  it is called as an Universal shift register.you can create it using 4 multiplexers(4:1) and 4 D- flip flops.i want to develop your own verilog code for that. if you want more activities from this....please look below page.This is related to milestone 1. // d flip flop module module dFlipFlop(q, qbar, ...
Image
Coming Soon  IBM CLOUDANT !
Image
Create the MongoDB database(NoSQL) you can install mongodb on windows.then you have to open another directory in C:/data/db.  beacause you have to store your data. then go the MongoDB's bin Directory and open command prompt and then type the "mongod" in the terminal.it is the start point of the mongodb server. these are the basic mongodb package components:  you can start mongo client tool by using administrative CMD prompt and then type " mongo " Create the database using commands and input some data: show dbs- displaying the databases use dbname-use the database show collections use collectionnmae db.collectionname.find()- print the data in row db.collectionnmae.find().pretty()-print the data in coloumn  How to Backup and the Restore the database: Open the another cmd prompt(Administor account) and type mongodump.Then it will be creates a folder called dump. If you are deletes the database or collections,then you can ...

MYSQL

Image
Creating the mysql Database: