Time to Move

Hi Everybody, I have been blogging using different id. Mainly to keep things simple. I started knowing of not knowing, without knowing what to do with it. Now that I have some idea what I want it to be, that curiosity has led me to create Curious People Blog. https://thecuriouspeopleblog.wordpress.com/ Hope you like it. thanks, […]

Advertisement

I am going Home

Sitting in front of office desk today, I realize that is has been 92 days since I wrote a post. I was thinking I will participate in the daily prompt but many times the word that comes up does not give a clue to my dumb brain.  Today I have decided I will break the […]

Harvardx ContractsX 2016

What is a contract? co ordination. free men and women. Communication, Agreement, Understanding, and Trust Communication, Agreement, Understanding, and Trust how do you bring about co ordination. through communication agreement understanding trust ladder of trust planning is co ordination with time commitment and promise Dead Weight loss in economics is a scenario of loss of […]

JAVA Beginners part 18

Client and Server Model – how to establish connection to the server – how to send messages to the server – how to receive messages from the server Socket chatSocket = new Socket(&… Source: JAVA Beginners part 18

JAVA Beginners part 18

Client and Server Model – how to establish connection to the server – how to send messages to the server – how to receive messages from the server Socket chatSocket = new Socket(“196.164.1.103”,5000); 196.164.1.103 address of the sever 5000 is the port number server / TCP port numbers ftp/20 telnet/23 smtp/25 time/37 https/443 pop3/110 http/80 […]

JAVA Beginners part 17

How to save data in a Java program. a) use serialization if the programs that use the saved data are Java b) write a plain text file Steps to save an object through serialization. FileOutputStream filestream = new FileOutputStream(“mygame.ser”); this will create a file ObjectOutputStream os = new ObjectOutputStream(filestream); this lets you to create objects, […]