The most viewed posts

About Me

Contact Me

Myanmar font and keyboard for Windows

Registry Reviver

IT Support & Endpoint Management

Digital Platforms & Web Solutions

How to clean up Windows Computer

Driver Booster

CCleaner

About Desktop Icons in Windows Computer

The most viewed items

Dell Inspiron 5559

SONY Playstation Portable

HP ProBook 430

Laptop RAM

External Hard Disk

Laptop

Desktop Hard Disk

Please login to start chat

ZilaStar ICT Dec 17 2019, 12:43:46

How to install VPN Add-ons in Mozilla Browser
Category : Knowledge About Browsers

We can install VPN Add-ons in Mozilla Browser if you don't want to install any VPN software in your computer because of different kinds of reasons. I've made a video to explain about it.

ZilaStar ICT Dec 17 2019, 11:29:03

Using Free Public DNS
Category : Internet Knowledge

When we should use free public DNS ? Sometimes, we can't enter some websites although we can enter some websites. That may be because of DNS error of your ISP if the website is not down and your network administrator does not set any rule to block the websites. At that time, we should use free public DNS. The followings are some of free public DNS:


1. Google                                      8.8.8.8, 8.8.4.4

 

2. Norton ConnectSafe                  199.85.126.10, 199.85.127.10

 

3. SafeDNS                                 195.46.39.39, 195.46.39.40

 

4. Verisign                                   64.6.64.6, 64.6.65.6

 

5. GreenTeam                              81.216.119.11, 209.88.198.133

 

6. DNS.Watch                              84.200.69.80, 84.200.70.40

 

7. Comodo Secure DNS              8.26.56.26, 8.20.247.20

 

How to manually set up free public DNS in windows computer

...read more
ZilaStar ICT Dec 16 2019, 11:54:07

Virtual Private Network (VPN)
Category : Internet Knowledge

I want to explain about VPN because some of my friends are confusing about VPN.

VPN is used to get secured network connection through Internet. The big companies also use VPN to get secured network connection in connecting offices, industries, etc., from different locations through the Internet. (for example, most of the banks use VPN).

Generally, there are two types of VPN.(More than two if detailed)

1. Side-to-Side VPN.

2. Remote Access VPN.

...read more
ZilaStar ICT Dec 15 2019, 14:17:54

Server Operating Systems
Category : Computer Knowledge

What is Server?

Server is a computer that stores data and share with its clients. There are so many server operating systems such as Ubuntu, Redhat, CentOS, Fedora, Windows, etc,. In Windows Server, there are so many versions:

1. Windows Server 2003

2. Windows Server 2008

3. Windows Server 2012

4. Windows Server 2016

5. Windows Server 2019

Windows Server provides so many features such as DNS, DHCP, Active Directory (AD), File Sharing, Internet Information Service (IIS), Server Clustering, etc,.

...read more
ZilaStar ICT Dec 14 2019, 21:21:53

Start creating basic xml file
Category : XML Tutorials


<people>
<person>
<name>Thet Naing Win</name>
<dob>20.03.1987</dob>
<address>Yangon</address>
</person>

<person>
<name>Su Su</name>
<dob>01.10.1990</dob>
<address>Mandalay</address>
</person>

<person>
<name>Nu Nu</name>
<dob>02.02.1980</dob>
<address>Yangon</address>
</person>
</people>

...read more
ZilaStar ICT Dec 13 2019, 10:40:10

Start embedding css in html
Category : HTML Tutorials


<!DOCTYPE html>
<html>
<head>
<title>TNW (Web Service & ICT Solutions)</title>
<style>
p{
color: red;
font-weight: bold;
}
</style>
</head>
<body>
<p>Page 1</p>
<p>Page 2</p>
</body>
</html>


Write the above codes and save it as test.html in somewhere. Try to open that file by double clicking and you will find it working.

...read more
ZilaStar ICT Dec 13 2019, 10:31:53

HTML Development Environments
Category : HTML Tutorials

HTML development can be done in notepad that comes along with Windows, text editors, IDE Software and WYSIWYG (What You See Is What You Get).

ZilaStar ICT Dec 13 2019, 09:39:03

What is HTML
Category : HTML Tutorials

HTML is Hypertext Markup Language. It is a standard markup language. It describes the structure of the web page and defines the contents. It is a language should be firstly learned for those who start to learn web programming.

ZilaStar ICT Dec 12 2019, 11:19:54

JavaScript Constant
Category : JavaScript Tutorials

Example 1

<html>
<head>
<title>JS Constant</title>
</head>
<body>
<p id = "demo"></p>
<script>
const x = (x, y) => x * y;
document.getElementById("demo").innerHTML = x(8, 8);
</script>
</body>
</html>



Example 2

<html>
<head>
<title>JS Constant</title>
</head>
<body>
<p id = "demo"></p>
<script>
const x = (x, y, z) => (x + y + z);
document.getElementById("demo").innerHTML = x (4, 5, 6);
</script>
</body>
</html>

...read more
ZilaStar ICT Dec 11 2019, 11:00:06

JavaScript Variable Naming
Category : JavaScript Tutorials

/*
//the first character is letter
var myName = "I am Thet Naing Win.";
document.write(myName);

//the first character is underscore
var _myAge = "I am 35 now.";
document.write(_myAge);

//the first character is number. this is not valid naming.
var 1_myAge = "I am 35 now.";
document.write(1_myAge);

var myName1 = "I am Thet Naing Win.";
var myAge1 = "I am 35 now.";
document.write(myName1);
document.write(myAge1);


//we can not use punctuation marks
var myName, = "I am Thet Naing Win.";
document.write(myName,);

var _myAge = "I am 35 now.";
document.write(_myAge);

//proper variable name
var myNmae = "I am Thet Naing Win.";
document.write(myNmae);

//we can use very long variable name. but this is improper variable name
//so we should care in variable naming
var iamthetnaing = "I am Thet Naing Win.";
document.write(iamthetnaing);

var while = "I am Thet Naing Win.";
document.write(while); */

...read more
ZilaStar ICT Dec 10 2019, 12:50:48

JavaScript Variables
Category : JavaScript Tutorials

/*var a = "I am Thet Naing Win.";
let b = "I am from Myanmar.";
const c = "I currently stay in Yangon.";

document.write(a);
document.write(b);
document.write(c);

const a = "I am Thet Naing Win.";
const a = "Who are you?";
document.write(a);
*/

var tnwGlobal = "I am TNW Global."; // global variable

function tnwOne(){
var tnwLocal = "I am TNW Local."; //local variable
document.getElementById("global").innerHTML = tnwGlobal;
document.getElementById("local").innerHTML = tnwLocal;
}

function tnwTwo(){
document.getElementById("global").innerHTML = tnwGlobal;
document.getElementById("local").innerHTML = tnwLocal; //local variable declared in tnwOne
}

...read more
ZilaStar ICT Dec 09 2019, 12:35:22

Basic JavaScript Objects
Category : JavaScript Tutorials

/*var person = {
firstname : "Thet",
lastname : "Naing"
};

function tnwFun(){
document.getElementById("demo").innerHTML = person.lastname;
}*/

var person = {
firstname : "Thet",
lastname : "Naing",
fullname : function(){
return person.firstname+ " " +person.lastname;
}
}

function tnwFun(){
document.getElementById("demo").innerHTML = person.fullname();
}

...read more
Page : 13 of 30
To Contact
🙏 About Me
📜Terms and Conditions