var popupWin = null;
function openPopup() {
var url = "popup.htm";
popupWin = open( "", "popupWin", "width=500,height=400" );
if( !popupWin || popupWin.closed || !popupWin.doSomething ) {
popupWin = window.open( url, "popupWin", "width=500,height=400" );
} else {
popupWin.focus();
}
}
function doSomething() {
openPopup();
popupWin.doSomething();
}
Thursday, July 23, 2009
test code highlighter
Monday, March 23, 2009
Blog moved!!!
This is the new address: http://limborey.wordpress.com/
The main reason i move to wordpress because wordpress provide some functionality that i need for the blog (such as programmer's code).
Borey
Monday, February 9, 2009
Overloading method in javascript
as you can see in the code, i only create one function, however i can call in different ways. This is how dynamic Javascript is. Really Really dynamic!!!!
Friday, February 6, 2009
Delicious
What is Delicious?
Delicious is a social bookmarking service that allows users to tag, save, manage and share web pages from a centralized source. With emphasis on the power of the community, Delicious greatly improves how people discover, remember and share on the Internet.Things you can do with Delicious
Bookmark any site on the Internet, and get to it from anywhere
Instead of having different bookmarks on every computer, Delicious makes it easy to have a single set of bookmarks kept in sync between all of your computers. Even if you're not on a computer you own, you can still get to your bookmarks on the Delicious website.
Share your bookmarks, and get bookmarks in return
If your friends use Delicious, you can send them interesting bookmarks that they can check out the next time they log in. Of course, they can do the same for you. As you explore the site and find interesting users, you can use our Subscriptions and Network features to keep track of the Delicious tags and users you find most interesting.
Discover the most useful and interesting bookmarks on the web
See what's hot with Delicious users by checking out our popular tags. By looking at popular bookmarks for a tag, you'll be able to discover the most interesting bookmarks on the topics you're most interested in. Browse bookmarks on just about anything from the best programming tips to the most popular travel sites, all in an easy to read format.
source: http://delicious.com
Friday, January 16, 2009
more about c#
Comparing to other programming language i have studied before like java or C++, i found that code in C# is easier to implement than in java or C++. I'm not so sure about the database yet, since i haven't really touch on LINQ in C#.
Friday, January 9, 2009
Learning new Language
Also i have read on NHibernate. It's a framework that help to connect to SQL Database, which i need to use to develop my project.
Sunday, January 4, 2009
Welcom to my blog
Well, first of all, just wanna talk about what will this blog all about. I will update all contents which are related to technology (mostly will be related to IT field) and things which are useful to our daily life. I'll try to make this blog updated most of the time.
Thanks