Wednesday, October 31, 2007

Hướng dẫn mã CSS cho mash (sưu tầm)

customize_mash.gif


Nếu bạn muốn thêm css cho mình thì chọn mục show advance CSS
[sourcecode language='php']

Changing the main background and text



This can be done in the body section:
body {
font-family:verdana,sans-serif; //this will change the font of the text
background-image:url('http://mymashstuff.com/mash_backgrounds/brown/color_brown_39.jpg'); //the address of the picture you want to use. if no picture is needed you can remove the line
background-repeat:repeat; //if you don't use a pattern that should be repeated change it to background-repeat: no;
background-color:none; //change "none" to any HEX color if you do not use picture
background-position:top left; //the place where the background picture should start from
color:#cccccc; //The color of the text
}

Changing the modules' properties



The modules have a main CSS class "mod" and a few subclasses "x1", "x1a", "x2" and "x2a".
The main class:
.mod {
background-color:none; //change "none" to any HEX color if you do not use picture
background-image:url('http://mymashstuff.com/mash_backgrounds/brown/color_brown_39.jpg'); //the address of the picture you want to use. if no picture is needed you can remove the line
border-style:solid; //also possible to be one of { none | dotted | dashed | solid | double | groove | ridge | inset | outset }
border-width:2px; //the width of the border in pixels
border-color:#3C6A90; //and the color of the border
}

The x1 subclass:
.mod .x1 {
background-color: #fafdff;
opacity: 0.6; //Sets the grade of transparency of the modules
filter:alpha(opacity=60); //same as above for different browser
display: block; //The display property sets how/if an element is displayed. read more
}

Changing the color of the text in the modules:
.mod-content {
color:#5c879c;
}
Modules' titles:
.hd { color:#004f83; //Color of the titles' text
font-family:arial,sans-serif; //titles' font
font-size:20px; //size of the font
}

Changing nickname properties:



#ypf-coreid .user-card .user-info .user-name h1 span.nickname {
color:#004f83; //Color of the nickname's text
}

Changing your picture's frame:



#ypf-coreid .user-card .user-images {
background-image:url('http://mymashstuff.com/mash_css/polaroid.png')
}
Click here to get a template for the polaroid image.

Changing your age, gender, location fonts:



#ypf-coreid .user-card .user-info span.age, span.gender, span.locality { //The classes used for age, gender, location
color:#ffffff; //Color of the text
}
You can apply more CSS coes to all of the sections above to change the look of your Mash Profile. More about CSS you can learn HERE at w3schools.com.
[/sourcecode]

Hướng dẫn mã CSS cho mash (sưu tầm)

customize_mash.gif


Nếu bạn muốn thêm css cho mình thì chọn mục show advance CSS
[sourcecode language='php']

Changing the main background and text



This can be done in the body section:
body {
font-family:verdana,sans-serif; //this will change the font of the text
background-image:url('http://mymashstuff.com/mash_backgrounds/brown/color_brown_39.jpg'); //the address of the picture you want to use. if no picture is needed you can remove the line
background-repeat:repeat; //if you don't use a pattern that should be repeated change it to background-repeat: no;
background-color:none; //change "none" to any HEX color if you do not use picture
background-position:top left; //the place where the background picture should start from
color:#cccccc; //The color of the text
}

Changing the modules' properties



The modules have a main CSS class "mod" and a few subclasses "x1", "x1a", "x2" and "x2a".
The main class:
.mod {
background-color:none; //change "none" to any HEX color if you do not use picture
background-image:url('http://mymashstuff.com/mash_backgrounds/brown/color_brown_39.jpg'); //the address of the picture you want to use. if no picture is needed you can remove the line
border-style:solid; //also possible to be one of { none | dotted | dashed | solid | double | groove | ridge | inset | outset }
border-width:2px; //the width of the border in pixels
border-color:#3C6A90; //and the color of the border
}

The x1 subclass:
.mod .x1 {
background-color: #fafdff;
opacity: 0.6; //Sets the grade of transparency of the modules
filter:alpha(opacity=60); //same as above for different browser
display: block; //The display property sets how/if an element is displayed. read more
}

Changing the color of the text in the modules:
.mod-content {
color:#5c879c;
}
Modules' titles:
.hd { color:#004f83; //Color of the titles' text
font-family:arial,sans-serif; //titles' font
font-size:20px; //size of the font
}

Changing nickname properties:



#ypf-coreid .user-card .user-info .user-name h1 span.nickname {
color:#004f83; //Color of the nickname's text
}

Changing your picture's frame:



#ypf-coreid .user-card .user-images {
background-image:url('http://mymashstuff.com/mash_css/polaroid.png')
}
Click here to get a template for the polaroid image.

Changing your age, gender, location fonts:



#ypf-coreid .user-card .user-info span.age, span.gender, span.locality { //The classes used for age, gender, location
color:#ffffff; //Color of the text
}
You can apply more CSS coes to all of the sections above to change the look of your Mash Profile. More about CSS you can learn HERE at w3schools.com.
[/sourcecode]

Css hay cho mash (1)


temp1.jpg


Bạn chọn phần advance css, sau đó dán code ở dưới vào và chọn apply nhé

[sourcecode language='php']
body {
font-family:verdana,sans-serif;
background:url(http://haian82.files.wordpress.com/2007/10/bg_1.gif) repeat !important;
}

.mod {
border:3px solid #fafdff !important;
}

.mod .x1 {
background:#fafdff !important;
opacity:0.6;
filter:alpha(opacity=60);
display:block !important;
}

.hd {
color:#004f83;
font-family:arial,sans-serif;
font-size:20px;
}

a:link,
a:visited {
color:#004f83;
}

.mod-content {
color:#5c879c;
}

#ypf-coreid .user-card .user-info .user-name h1 span.nickname {
color:#004f83;
}

ul.about div.hover, .inline-replace.hover {
background-color: #fff;
}[/sourcecode]

Css hay cho mash (1)


temp1.jpg


Bạn chọn phần advance css, sau đó dán code ở dưới vào và chọn apply nhé

[sourcecode language='php']
body {
font-family:verdana,sans-serif;
background:url(http://haian82.files.wordpress.com/2007/10/bg_1.gif) repeat !important;
}

.mod {
border:3px solid #fafdff !important;
}

.mod .x1 {
background:#fafdff !important;
opacity:0.6;
filter:alpha(opacity=60);
display:block !important;
}

.hd {
color:#004f83;
font-family:arial,sans-serif;
font-size:20px;
}

a:link,
a:visited {
color:#004f83;
}

.mod-content {
color:#5c879c;
}

#ypf-coreid .user-card .user-info .user-name h1 span.nickname {
color:#004f83;
}

ul.about div.hover, .inline-replace.hover {
background-color: #fff;
}[/sourcecode]

Thursday, October 25, 2007

Tặng invite Yahoo Mash cho các bác ( phần 3)

Phần 3 đã hết, mời các bác sang phần 5


Invite Yahoo Mash -> leave your email here , I’ll invite you soon


Invite Yahoo! Mash

Invite YM! Mash

Bác nào cần thì comment ở đây địa chỉ email

em sẽ invite cho nhé

Các bác chú ý: để lại địa chỉ email


Các bác không ghi lại địa chỉ cho em thì em biết invite ai bây giờ

Tặng invite Yahoo Mash cho các bác ( phần 3)

Phần 3 đã hết, mời các bác sang phần 5


Invite Yahoo Mash -> leave your email here , I’ll invite you soon


Invite Yahoo! Mash

Invite YM! Mash

Bác nào cần thì comment ở đây địa chỉ email

em sẽ invite cho nhé

Các bác chú ý: để lại địa chỉ email


Các bác không ghi lại địa chỉ cho em thì em biết invite ai bây giờ

Wednesday, October 24, 2007

Clip mới nhất của bé

Bé gõ bàn phím: Bé gõ máy tÃnh

Bé lẫy: bé lẫy

Bé nhảy theo nhạc: Bé nhảy theo nhạc

(Bâm vào hình để xem Clip)

Clip mới nhất của bé

Bé gõ bàn phím: Bé gõ máy tÃnh

Bé lẫy: bé lẫy

Bé nhảy theo nhạc: Bé nhảy theo nhạc

(Bâm vào hình để xem Clip)

Tặng invite Yahoo Mash cho các bác ( phần 2)

 


Invite Yahoo Mash -> leave your email here , I’ll invite you soon


Invite Yahoo! Mash

Invite YM! Mash

Bác nào cần thì comment ở đây địa chỉ email

em sẽ invite cho nhé

Các bác chú ý: để lại địa chỉ email


Các bác không ghi lại địa chỉ cho em thì em biết invite ai bây giờ


Hết phần 2, mời các bác sang phần 5

Tặng invite Yahoo Mash cho các bác ( phần 2)

 


Invite Yahoo Mash -> leave your email here , I’ll invite you soon


Invite Yahoo! Mash

Invite YM! Mash

Bác nào cần thì comment ở đây địa chỉ email

em sẽ invite cho nhé

Các bác chú ý: để lại địa chỉ email


Các bác không ghi lại địa chỉ cho em thì em biết invite ai bây giờ


Hết phần 2, mời các bác sang phần 5

Tuesday, October 23, 2007

postfix - mailbox size limit and message size limit

postfix is my MTA of choice. I use it for my mailserver because its simplicity , security and sendmail-compatible (the widely used smtp in the world but not as secure). It is also extensible by plugging other servers for various purposes (antispam, antivirus,database etc).

I had one problem with file attachment larger than 10MB. Users couldn't send it although I have setup squirrelmail (SM) to be able to attach files summed up more than 20MB and I had modified php settings as per here. The problem was not in SM setting. It was postfix. By default, attachment size that can be sent by postfix is 10MB ~ 10240000 byte. How did I know it? I looked in log file (for my system it is in /var/log/mail/errors. For other system, the file to look is /var/log/maillog). The line looked like this:

Feb 26 16:30:53 webmail postfix/sendmail[30775]: fatal: me@mymailserver.org(74): Message file too big

Solution

Open /etc/postfix/main.cf with a text editor of choice and find message_size_limit directive and change accordingly. If it is not there, add the directive like this:



message_size_limit = 20480000

This sets limit to 20MB. reload or restart postfix when you're done:

service postfix reload

or

service postfix restart

There's also mailbox_size_limit directive. You need to change this if SM can not open mailbox sized more than 10 MB.

reference :
http://www.tek-tips.com/viewthread.cfm?qid=1073614&page=1

postfix - mailbox size limit and message size limit

postfix is my MTA of choice. I use it for my mailserver because its simplicity , security and sendmail-compatible (the widely used smtp in the world but not as secure). It is also extensible by plugging other servers for various purposes (antispam, antivirus,database etc).

I had one problem with file attachment larger than 10MB. Users couldn't send it although I have setup squirrelmail (SM) to be able to attach files summed up more than 20MB and I had modified php settings as per here. The problem was not in SM setting. It was postfix. By default, attachment size that can be sent by postfix is 10MB ~ 10240000 byte. How did I know it? I looked in log file (for my system it is in /var/log/mail/errors. For other system, the file to look is /var/log/maillog). The line looked like this:

Feb 26 16:30:53 webmail postfix/sendmail[30775]: fatal: me@mymailserver.org(74): Message file too big

Solution

Open /etc/postfix/main.cf with a text editor of choice and find message_size_limit directive and change accordingly. If it is not there, add the directive like this:



message_size_limit = 20480000

This sets limit to 20MB. reload or restart postfix when you're done:

service postfix reload

or

service postfix restart

There's also mailbox_size_limit directive. You need to change this if SM can not open mailbox sized more than 10 MB.

reference :
http://www.tek-tips.com/viewthread.cfm?qid=1073614&page=1

Thursday, October 18, 2007

Tặng invite Yahoo Mash cho các bác

Invite Yahoo Mash -> leave your email here , I'll invite you soon

Invite Yahoo! Mash

Invite YM! Mash

Bác nào cần thì comment ở đây địa chỉ email

em sẽ invite cho nhé

Các bác chú ý: để lại địa chỉ email


Các bác không ghi lại địa chỉ cho em thì em biết invite ai bây giờ


Phần 1 đã hết, mời các bác sang phần 5

Tặng invite Yahoo Mash cho các bác

Invite Yahoo Mash -> leave your email here , I'll invite you soon

Invite Yahoo! Mash

Invite YM! Mash

Bác nào cần thì comment ở đây địa chỉ email

em sẽ invite cho nhé

Các bác chú ý: để lại địa chỉ email


Các bác không ghi lại địa chỉ cho em thì em biết invite ai bây giờ


Phần 1 đã hết, mời các bác sang phần 5

Virus phát tán theo link vàng anh

Trong một loạt các link em nhận được từ các bác gửi cho thì link dưới là link có chứa virus.

Không biết bác nào hào hiệp gửi link phim vàng anh nhưng lại khuyến mãi thêm một con virus keylogger

http://www.buonoichaomi.com/vanganh/  (đừng bác nào click vào nhé, em không chịu trách nhiệm đâu)

Em dám chắc rất nhiều máy bị con virus này nhưng không biết vì nó hoạt động rất âm thầm, chỉ khi nào các bác bị mất một tài khoản nào đó như yahoo, ... thì các bác mới biết hoặc cũng chả biết bị mất mật khẩu vì đâu nữa.

Bác nào lỡ click vào link trên rồi thì nên quét virus máy tính và đổi mật khẩu các tài khoản trên mạng đi.

Virus phát tán theo link vàng anh

Trong một loạt các link em nhận được từ các bác gửi cho thì link dưới là link có chứa virus.

Không biết bác nào hào hiệp gửi link phim vàng anh nhưng lại khuyến mãi thêm một con virus keylogger

http://www.buonoichaomi.com/vanganh/  (đừng bác nào click vào nhé, em không chịu trách nhiệm đâu)

Em dám chắc rất nhiều máy bị con virus này nhưng không biết vì nó hoạt động rất âm thầm, chỉ khi nào các bác bị mất một tài khoản nào đó như yahoo, ... thì các bác mới biết hoặc cũng chả biết bị mất mật khẩu vì đâu nữa.

Bác nào lỡ click vào link trên rồi thì nên quét virus máy tính và đổi mật khẩu các tài khoản trên mạng đi.

Ai hưởng lợi từ vụ thuỳ linh - vàng anh ?

- Báo chí được tăng hits nè

- Blog tăng views nè

- Lợi nhất là mấy nhà cung cấp dịch vụ ADSL, các bác tải phim, xem online ầm ầm. Lưu lượng cứ gọi là tăng vùn vụt luôn. Mà lưu lượng tăng kéo theo tiền nộp cuối tháng của khách hàng cũng tăng, các bác ấy lãi nhất.

Vậy còn ai thiệt nhỉ, không nói ra chắc mọi người cũng biết, nhiều hơn 1 chủ thể, he he

Ai hưởng lợi từ vụ thuỳ linh - vàng anh ?

- Báo chí được tăng hits nè

- Blog tăng views nè

- Lợi nhất là mấy nhà cung cấp dịch vụ ADSL, các bác tải phim, xem online ầm ầm. Lưu lượng cứ gọi là tăng vùn vụt luôn. Mà lưu lượng tăng kéo theo tiền nộp cuối tháng của khách hàng cũng tăng, các bác ấy lãi nhất.

Vậy còn ai thiệt nhỉ, không nói ra chắc mọi người cũng biết, nhiều hơn 1 chủ thể, he he

Monday, October 15, 2007

Tôi là tôi

[youtube=http://youtube.com/watch?v=YceTaKhApbo]

Yeeeeee......Rồi cơn mưa chiều nay sẽ đưa bóng tôi khuất xa dần.Và giọt mưa rơi nhẹ rơi như ngàn giọt nước mắt đắng cay.Tình yêu xưa giờ đây chỉ nghe xót xa trái tim này, và vì sao tôi lại đi để lại sau lưng bao nhiêu nhớ thương.
Vì tình yêu em nào hay biết trong mỗi trái tim chỉ cần một người.Suốt cuộc đời này lời em nói mãi mãi tôi không bao giờ tha thứ.Tại ngày xưa đừng bao giờ em hứa sẽ yêu trọn đời để giờ đây em đâu cần hối tiếc khi đã yêu.
Ngày xưa khi gặp nhau tiếng yêu thiết tha đã trao lời, dù cho không còn yêu cũng đừng nên oán trách nhau .Tại sao em lại gieo đắng cay với câu nói vô tình,và tôi luôn là tôi chớ mong đổi thay tôi làm gì.

RAP: kubo........Ôi ngày xưa khi em nói yêu tôi,em rất ngây thơ em chỉ mong sao ta mãi mãi bên nhau.Tâm hồn tôi luôn khao khát yêu em thao thức bao đêm mơ xây đắp tương lai.Theo thời gian cuộc sống xa hoa đưa bóng dáng tôi xa trái tim em.Khi giờ đây bao câu nói chua cay đem đến cho tôi bao nổi xót xa

Tôi là tôi

[youtube=http://youtube.com/watch?v=YceTaKhApbo]

Yeeeeee......Rồi cơn mưa chiều nay sẽ đưa bóng tôi khuất xa dần.Và giọt mưa rơi nhẹ rơi như ngàn giọt nước mắt đắng cay.Tình yêu xưa giờ đây chỉ nghe xót xa trái tim này, và vì sao tôi lại đi để lại sau lưng bao nhiêu nhớ thương.
Vì tình yêu em nào hay biết trong mỗi trái tim chỉ cần một người.Suốt cuộc đời này lời em nói mãi mãi tôi không bao giờ tha thứ.Tại ngày xưa đừng bao giờ em hứa sẽ yêu trọn đời để giờ đây em đâu cần hối tiếc khi đã yêu.
Ngày xưa khi gặp nhau tiếng yêu thiết tha đã trao lời, dù cho không còn yêu cũng đừng nên oán trách nhau .Tại sao em lại gieo đắng cay với câu nói vô tình,và tôi luôn là tôi chớ mong đổi thay tôi làm gì.

RAP: kubo........Ôi ngày xưa khi em nói yêu tôi,em rất ngây thơ em chỉ mong sao ta mãi mãi bên nhau.Tâm hồn tôi luôn khao khát yêu em thao thức bao đêm mơ xây đắp tương lai.Theo thời gian cuộc sống xa hoa đưa bóng dáng tôi xa trái tim em.Khi giờ đây bao câu nói chua cay đem đến cho tôi bao nổi xót xa

Phần mềm giúp quản lý trẻ em sử dụng máy tính

Ngày nay với sự bùng nổ của Internet, việc mỗi gia đình có máy tính nối mạng là rất phổ biến. Một chiếc máy tính sẽ rất hữu ích để học hành, tra cứu thông tin từ internet, giải trí,... Các bậc phụ huynh cần phải làm gì để quản lý việc sử dụng máy tính của con cái?


Chúng tôi xin giới thiệu với quý vị một vài phần mềm hữu ích để có thể quản lý, giám sát việc sự dụng máy tính và truy cập Internet của con cái.

Phần mềm giúp quản lý trẻ em sử dụng máy tính

Ngày nay với sự bùng nổ của Internet, việc mỗi gia đình có máy tính nối mạng là rất phổ biến. Một chiếc máy tính sẽ rất hữu ích để học hành, tra cứu thông tin từ internet, giải trí,... Các bậc phụ huynh cần phải làm gì để quản lý việc sử dụng máy tính của con cái?


Chúng tôi xin giới thiệu với quý vị một vài phần mềm hữu ích để có thể quản lý, giám sát việc sự dụng máy tính và truy cập Internet của con cái.

Site .gov bị hack trên zone-h

http://hcmc-udcompetition.gov.vn/gov_hack.htm

http://www.ips.gov.vn/cx.htm

http://sieuthidanang.gov.vn/gov_hack.htm

Site .gov bị hack trên zone-h

http://hcmc-udcompetition.gov.vn/gov_hack.htm

http://www.ips.gov.vn/cx.htm

http://sieuthidanang.gov.vn/gov_hack.htm

Tuesday, October 2, 2007

Plugin gõ tiếng việt cho FireFox

Với plugin này, bạn không cần phải bật bộ gõ tiếng việt lên nữa. Thật tiện lợi phải không

https://addons.mozilla.org/firefox/2947/

Plugin gõ tiếng việt cho FireFox

Với plugin này, bạn không cần phải bật bộ gõ tiếng việt lên nữa. Thật tiện lợi phải không

https://addons.mozilla.org/firefox/2947/