Posts

Story - මේ මගේ පුතා

                                                            Story - මේ මගේ පුතා අපි දෙන්නගේ කසාදේ වුනේ අහම්බෙන්, එයා මට ආදරේ වුනාට මට එයා ගැන පොඩි හැඟීමක්වත් තිබුණේ නෑ.. ඒත් මම නිසා එයා අම්මා කෙනෙක් වෙන්න යන කරුමෙට අන්තිමට මට එයාව බඳින්න වුනා... එයා මාත් එක්ක පොරුවට නගිද්දි, එයාගේ බඩට මාස තුනයි. මේ මගේ ලෙයින් ඉපදෙන මගේම ළමයා වුනත් මගේ හිතේ තිබුනේ තරහක් විතරයි. ඇයි මගේ ජීවිතේ මගේ වැරදි නිසාම නාස්ති කරගත්තේ කියන සිතුවිල්ල මගේ හිතෙන් කවදාවත් නැති වුනේ නැහැ... කසාදෙන් පස්සේ එයයි මමයි එක ඇඳකවත් නිදා ගත්තේ නැහැ. එයා ජීවත් වුනේ හම්බවෙන්න ඉන්න බබාගේ ලෝකේ, මම හිටියේ මගේම ලෝකෙක.. ලෝකෙට පෙන්නවත් අපි දෙන්නගේ පවුල් ජීවිතයක් තිබුණේ නැහැ. කොහොමෙන් කොහොම හරි දවසින් දවස බබා ලැබෙන දිනත් කිට්ටු වුනා. ...

Build the Maven Project Easy

Image
                                  Build the Maven Project (Without the IDE) step 1  :   download the Maven using below link--->                          http://maven.apache.org/download.cgi Then ,             set the Environment varaibles. Ensure  JAVA_HOME  environment variable is set and points to your JDK installation. Add the  bin  directory of the created directory  apache-maven-3.5.0  to the  PATH  environment variable. Check to verify , type in CLI  ----->>>>   mvn  -v . step 2  : To build a Maven project via the command line, run the  mvn  command from the command line. The command should be executed in the directory which contains the relevant pom file. You need to provide the...

Unit Testing(Srilanka)

Image
                      UNIT TESTING This is basic of unit testing.i will do that using the Eclipse(JAVAEE).Hope you guys are understand it.

Servlet Annotation JAVAEE

Image
After Long Time Guys😊😊😊😊😛😛😛 Today we will focus on a Servlet Annotation. Click the vedio below.

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 ...