Monday, August 15, 2011

Beginner techies guide to Internet World – part I

I thought what to write this Freshly created eMagazine and I decided it’s better to write something from the beginning.Now I have more than 5 year experience in internet world.Still I’m unable to learn all.But little.But I think these days our young generation are carelessly use this world because lack of knowledge of its true value.I think following steps will help at some level if you are a beginner

Internet Browsers
This is the software need to browse in the WWW (world wide web) or internet.there are plenty of internet browsing softwares.Windows default one is Internet explorer and in imagemost of linux OS’s, Firefox is default SW.But I like Google Chrome since it has quick search functionality(we can search from address bar), large web page area,collection of themes & plugins, there are many tools to support web developers and it’s softer than others.But it has some disadvatages too.It crashes than others.need more processing power when we open many tabs.Some microsoft products don’t work with other browsers so we need internet explorer in that stage.Firefox is best browser according to http://internet-browser-review.toptenreviews.com/

Search Engines
The very beginning thing.Most of newbies to internet are doing this mistake.they type web address in search engines.Because most of the browsers home page is set to a search engine.Search engine are sites that help to find web pages in internet.You have to do is just type what you need to find in search engines search text box.

Google.com is most famous one.And it has many functionalities such as image,video  real time searching etc.. Googling is a term to search something from google.com. this.Other famous search engines like Yahoo.com and  msn.com provide directory services, news and many other things.Since we need specific information rather than some other news so I prefer google.com than others.
source:http://en.wikipedia.org/wiki/Web_search_engine

Email accounts
There are many email providers but to me gmail.com is best one .Because to use most of google products such as google doc, google plus,google map need gmail accounts.
imageAnd also it has chatting facilities,filtering and many features.If you are a beginner it’s better to start your email with gmail.com .But there are many email providers. ex:yahoo.com,live.com, and newest one phoenix mail that provides facility to connect many email accounts to one.I strictly believe using too many email account isn’t good.It will waste your time.


Social Networking sites
I don’t think you need to guide to social networking sites.But if you are not aware about them.Just try facebook and google plus.These are the sites where most of people networking.These are facilitate Chatting,photo and video sharing,status updates,personal information sharing things. Although there are many benefits most people ruin that plus points by addict to those sites in most of times.

image
Social networks mean Facebook and google plus.Is that all.No.As you can see in the image there are many social networking sites that help us to build better social network.I have done my seminar presentation on Social Network Analysis you can get more information about Social Networks from that presentation here is the link. http://bit.ly/ne8kHS I think that’s enough for this post.I hope to post about twitter,blogs and some other useful techy stuffs in next post.Please comment and give your opinion about this post.It will be a really encouragement to raise new writer.
Thank you for reading this.Until next post cheers….!!!

By Rasika Bandara

Monday, July 4, 2011

Hope C# examples will help me

As I post previously Now I’m reading a book called C# 4 and .NET 4.But the thing is Without examples it’s boring so I decided to do it with this one.I heard this is a very useful book.

 image

Hope I can get some big support for my future developments.

C# Modifiers

image

image

Source: Professional C# 4 and .NET4 Wrox Programmer to Programme

Sunday, July 3, 2011

.Net Architecture

image

  • IL-Intermediate Language
  • CTS-Common Type System
  • CLS-Common Language Specification
  • JIT-Just In Time Compiler
  • GC-Garbage Collector

Started C# from the beginning

Although I have some knowledge and experience with C# I’m trying to organize my knowledge so I’m starting to read Professional C# 4 and .Net 4

image

This book was recommended by one of the software Architect.I must thank him for his help in many cases.

Friday, July 1, 2011

Bus journey time map from kandy to colombo

Morning Trip Afternoon Trip

5.50 Start-kandy
6.08 kadugannawa
6.16 hingula
6.20 mawanella
6.33 karadupana
6.38 kegalle
6.45 ambanpitiya
6.50 galigamuwa
6.56 nelumdeniya
7.02 tholangamuwa
7.05 warakapola
7.15 danovita
15min break
7.39 pasyala
7.44 nittambuwa
8.08 miriswatta
8.15 belummahara
8.21 imbulgoda
8.35 kadawatha
8.42 kiribathgoda
8.46 kelaniya
8.54 peliyagoda
9.15 colombo-Destination

11.15 start-Colombo
11.25 dematagoda 09
11.40 kelaniya
11.50 kelaniya dalugama
11.54 kiribathgoda
12.00 kadawatha
12.17 imbulgoda
12.22 belummahara
12.25 miriswatta
12.28 yakkala
12.38 kalagedihena
12.42 thihariya
1.17 warakapola
1.30 nelumdeniya
1.50 kegalla
2.08 molagoda
2.15 mawanella
2.27 hingula
2.35 kadugannawa
2.45 pilimatalawa
2.55 peradeniya
3.10 Kandy-Destination

with CTB bus
there was tea break
with private bus
it was late mostly because of traffic at the moment

Monday, June 27, 2011

Just Finished Learning PHP,MySQL & JavaScript eBooks

Although I have good experience of PHP, MySQL & JavaScript I learn many things from this book such as JavaScript Frameworks.I just read this book and I recommend this book for beginner web developers to read.  image

Some popular JavaScript frameworks


ASP.NET Ajax Framework http://asp.net/ajax
Clean Ajax Framework http://sourceforge.net/projects/clean-ajax
Dojo Toolkit http://dojotoolkit.org
jQuery http://jquery.com
MochiKit http://mochikit.com
MooTools http://mootools.net
OpenJS http://openjs.com
Prototype http://prototypejs.org
Rialto http://rialto.improve-technologies.com/wiki
script.aculo.us http://script.aculo.us
393Framework Web address
Spry Framework http://labs.adobe.com/technologies/spry
YUI http://developer.yahoo.com/yui

Sunday, June 26, 2011

Close one form from another

I wanted to open Form2 from Form1 and close Form1.I try this many times but it fails my code is this.

var F2=new Form2();
F2.show();
this.close();



I searched lot.but I could find any error of the code but Form1 doesn’t closed.Finally I found the answer.It’s my main program.

Application.Run(new Form1());

So I couldn’t close Form1.


But I found anther way to close previous one

 var f=new Form2();
 f.Show();
 this.Dispose(false);


It works for me.

Saturday, June 25, 2011

Visual Studio Short Cut

For comment source code at visual studio or MSSQL sever management studio can use Ctrl+k,Ctrl+c when press Ctrl+k it waiting for another key stroke then press Ctrl+c

For Uncomment use Ctrl+k,Ctrl+u

Ctrl+k,Ctrl+D for format code but this isn’t work in MSSQL Server Management Studio

Friday, June 24, 2011

Trying to start TSQL

TSQL what is this actually I think its kind of a SQL stored procedure.But I know surely correct.Will see.I have Beginning T-SQL 2008 with me.T-SQL here I come…..

image

If you are interested stay tune with me……

Why We Use Facebook ????

Most of People using facebook because to get connected with their friends. some of them fb use for find a life partner.Many users of FB are like to update what friends are doing and what’s going on.Sometimes it’s like a newspaper.most of fresh news comes immediately.Even faster than online radio news.Photo and video sharing is famous in FB commune.Because it has commenting and like facilities.And also wishing for bday new year etc. fb is easiest way.We don’t need to spend single penny for this.

But when we considering Techies use fb for some more proper way.They don’t use fb all the time.but little.if they need to find a friend but his mobile and other connecting media isn’t working then fb is very useful.And also collect team or commune this is very useful.And create a event.

Although it’s very useful social network when we addict to that waste your time and you can’t even think time is passing you.So Be careful.

Monday, May 30, 2011

Facebook…

There were many books

but we don’t addict to those hooks

now we got our main crook

its my facebook