Win 7

Posted September 19th, 2009 in blog by admin

I am using Windows 7,now. It’s nice OS for me. It may be upgrade form Windows Vista. I think, Vista relesed before finished. Win 7 fixed many Vista problem. Boot loading speed is awesome and it’s not memory eater when I’m using Aero Effect. I am updating Kaspersky 2010 (Beta) and then open itune and using Aero Effect, that have 1 GB. Wow!! Vista stand by state is using 1.5 GB and Win 7 is better than Vista. We can’t use kaspersky before 2010 and we need to latest version software for Win 7.

New Feature

1. Snipping Tool

It’s a screen caputre software like fscaputre. It’s a nice tool and free. We can capture the part what we like.

2. Sticky Note

It’s like Note Gadget in Vista but win 7 sticky note is better than that. We can use one or more notes.

3.Windows 7 Task bar

It’s just show icons and combine all in one icon. I like this because I open many windows and always task bar is full. In Win 7, I can open manys windows and it’s just place in one icon. Another news is we can drag a icon and place in task bar. It’s like a short cut and I can open a program from task bar shortcut.

4.Windows

Let drag a Window to the top. You will see glass show for maximize. You can drag to left or right , you will see half glass. After you release the windows, windows will replace the glass. I mean, drag to the top and release that. It’s will be maximize.

5. XPS View

This feature include in Windows Vista but we need to open XPS file in IE. In Win 7, XPS view include a program and you can open it without IE. If you are MCP (microsoft certificate professional), you need to XPS for certificate file.

6. Windows Powershell

I like powershell because I can use Linux command in there.

 

7.Libraries

I like this feature. In Vista, we can have only one folder for Document, Music, Video. Not like Vista in Win 7, we can add one or more folder to music , video. We can make new libraries and also many folder includes in thre.

Changing Desing

1.Wordpad

Wordpad can do like office 2003. It’s using ribbon tool bar like office 2007.

2.Calculator

WOw… calculator include convector function. Eg,.We can convert cm to inches easily.

3.Paint

mspaint also include ribbon bar. New and nice GUI.

 

4.Desktop Gadget

Win 7 don’t have sidebar. We can move gadget to any place of desktop. However, it don’t have widget layer like mac or gnome (linux).

5.Windows Media Center

I don’t like WMC in Vista. In Win 7, WMC design have changed.

Repair Grub After Installed Win 7

Posted September 16th, 2009 in blog by admin

I have a problem after installed Win 7. I can’t reapir grub with orignially way. I think, something wrong in Win 7 boot loader. Win 7 boot loader is not same as Win Vista. However, I could find it in Ubuntu Forum.

$ sudo grub
grub > find /boot/grub/stage1

You will see hdX,Y. X and Y are number.

grub > root (hdX,Y)
grub > setup (hd0)
grub > quit

 

Cheer!!!!

 

Ornagai Dictionary with Jquery + JSON

Posted September 14th, 2009 in blog by admin

Today, I am making ornagai dictionary with jquery. I was thinking about at 7:00 at English Tuition. At 12:00 pm, I was staring the code for that. It was complete in a half hour. However, it’s using 20 KB JSON file. So, I thought it, “Can I do complete dictionary in one JSON file ? ” I export the JSON from mysql database. It had 4 MB. And then run in my code. Oop!!! My firefox had been hung. I restart my firefox and changing my code. I will show just 9 results and try again it. It was ok but too long to wait. So, I decided to make index the JSON. I made a.json to z.json and then search again. Amazing… I said “Awesome!!!” It’s so fast and unbelievable searching. I love jquery and JSON. I finished that project just in 2 hours. You can download JqueryDict in there. I am thinking about Myanmar to the English dictionary with JqueryDict but it should make many indexs for ka to arh. So, I will do when I have a free time.

 

Cheer!!!

Input text with CSS

Posted September 12th, 2009 in blog by admin

We don’t need javascript for input box hover,focus style. We can use with CSS.It’s more easy and useful than javascript.

input[type=text]
{
/* CSS Code Here */
}

type=text mean for input type=text only. You can alos use foucs and hover for that.

input[type=text]:focus
{
/* CSS Code Here */
}

input[type=text]:hover
{
/* CSS Code Here */
}

Full Sample is following

[sourcecode lang="html"]
<html>
<head>
<title>Input box Demo</title>
<style>
input[type=text]
{
background-color:#EFCEAD;
}

input[type=text]:focus
{
background-color:#ADCEEF;
color:#333;
}

input[type=text]:hover
{
background-color:#CEADEF;
color:#fff;
}

</style>
</head>
<body>
<form>
<input type=”text” name=”sample”>
<input type=”text” name=”sample”>
<input type=”text” name=”sample”>
<input type=”text” name=”sample”>
<input type=”submit” value=”submit”>
</form>
</body>
</html>
[/sourcecode]

Demo Here

ASP.NET & Myanmar

Posted September 6th, 2009 in blog by admin

I don’t like ASP.NET because of web.config. Developer can’t do ask his like. Developer must know about .NET Framework and web.config. What the f@@k !!! .NET is design for Customer not for developer. I need to learn about web.config :( Howev…er,PHP , Python , Ruby are design for Developer Happy. if you’re clearly understand about web.config, sometime “Server Error in ‘/’ Application. Runtime Error ..@##@#”. Most of the myanmar web developer don’t config in web.config. But XSS can’t test ASP.NET,may be web.config cover it. Most of the Myanmar Developer using ASP.NET and they don’t have a knowledge in XSS and also SQL Injection. So, most the their websites alway occur Run Time Error. Server Error because they don’t check about XSS. They don’t use Server.HtmlEncode in their website.

data=Server.HtmlEncode(“<html>”)//&lt;html&gt;

Page 1 of 212