Archives

Showing posts with label Solutions. Show all posts
Showing posts with label Solutions. Show all posts

How to add a 'Back to Top' button on your blog with smooth scrolling (for Blogger)


This isn't something new, I picked this up from here and thought I should make a guide of my own specifically for Blogger users like myself.
Features:
  • 'Back to Top' button that fades into view at the bottom right corner of the page as you scroll down
  • Fades out when you reach the top
  • Smooth scrolling
  • HTML, CSS, JQuery, FontAwesome
Code:
Part 1: CSS

On Blogger >> Dashboard >> Template >> Edit HTML
Go to the CSS section of your blog and insert the code below:

.back-to-top {
    display:none;
    position: fixed;
    bottom: 2em;
    right: 10px;
    text-decoration: none;
    color: rgb(207, 72, 94);
    font-size: 12px;
    padding: 1em;
}

.back-to-top:hover {
    text-decoration:none;
    color: rgba(207, 72, 94, 0.8);
}

If you can't find where to put it, search for this ]]></b:skin> and paste the code above it.

You can edit the color and size of the button by changing the values in red and blue respectively. Unless you want a different hover color, keep the two RGB values the same. The alpha value (0.8) tells how transparent the button becomes when you hover on it.
Part 2: JQuery

Still inside the HTML code, paste the code below inside the <head> portion of your template

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>

If it's already existing, no need to do this.

Part 3: HTML

Still inside the editor, paste the code below directly above the </body> tag.

<a href="#" class="back-to-top">Back to Top</a>
<script>
 jQuery(document).ready(function(){
  var offset = 220;
  var duration = 500;
  jQuery(window).scroll(function(){
   if (jQuery(this).scrollTop() > offset) {
    jQuery('.back-to-top').fadeIn(duration);
   } else {
    jQuery('.back-to-top').fadeOut(duration);
   }
  });

  jQuery('.back-to-top').click(function(event){
   event.preventDefault();
   jQuery('html, body').animate({scrollTop: 0}, duration);
   return false;
  })
 });
</script>

You may replace 'Back to Top' with any icon you want. In my case, I used an icon from FontAwesome and replaced the text in purple with this:

<i aria-hidden='true' class='fa fa-arrow-circle-up' style='font-size:50px'/>

Bonus: FontAwesome

It's basically a set of web fonts featuring scalable vector icons. In short, just a bunch of icons turned into fonts so you don't need to use an image every time you need one. Awesome!

To use FontAwesome, you must first install it like you did with JQuery by adding the line below inside the <head> portion of your template

<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css' rel='stylesheet'/>

 Then choose the icon you want from here and get the corresponding markup in order to display it.
Done!
Save the HTML code of your blog and check to see if it works. :)

[Windows 10] How to remove live tiles from the start menu

A lot of people griped about how drastically the start menu changed on Windows 8 with the introduction of live tiles. Thankfully, Microsoft listened and tried to improve user experience by bringing back the old Windows7-esque start menu on Windows 10, but not without sitting out live tiles completely.

As you may have noticed, the start menu still has live tiles integrated on to it, with two subsections "Play and Explore" and "Life at a Glance". Now if you want to remove those, plus all of the tiles entirely... here's how:

1. Right-click on the tile and select 'Unpin from Start'.
2. Do the same for all the tiles you want removed. It will take time, but that's about the easiest way to do it haha!


3. Re-size your start menu by hovering on the sides and adjusting the width or height. 

And voila! Here's a view of my totally clean and tile-free start menu! :D



Hope this helps! :)

[Tutorial] How to rotate photos in Blogger

Let me tell you, there is no easy way to do this. I was hoping it will come as an update from Blogger but I got tired of waiting. It should be a basic feature when uploading photos, but oh well.

Anyway, here you go:

After uploading a photo and finding that it's rotated at the wrong angle...

1. Open Picasa web albums
You should know that all your photo uploads at blogger are deposited here.

2. Open your blog directory
It should contain all the photos you've uploaded. By default, your folder is named after your blog. If you can't find it, maybe you can "View All". It should be there hehe

3. Find the photo you want to rotate
Since it's a recent photo, it could be all the way down. To make it easier, sort the album by date. How? Click on "Organize", then on the "Sort photos by..." dropdown list, select "date (newest first)". Then click Done.

4. Open the photo and "Edit in Google+"
When you open the photo at Picasa you may find that the rotate left/right icons are disabled. God knows why! What you have to do is click on "Action" and select "Edit in Google+". It will load a new window where, THANK GOD, the rotate buttons are finally enabled!

5. Rotate and go back to blogger :D
It will be saved automatically. Now you can go back to your blog post, select "Insert Image" and look for the photo you've just rotated under the "From this blog" tab. It's probably all the way down, bummer, I don't think there's a sort by feature for this! XD

That should be all! Hope this helps! :D

[Windows] How to open specific folders using the Run dialog

Here's a pretty neat trick I always do whenever I setup my desktop ANYWHERE. Like what I'm doing now since I just got a new PC at the office hehe.

I find it easier to just hit Win + R then type 'Yan' to access my personal folder located at 'My Documents'. Like so:

This


Opens my folder at My Documents:


So how do you do that? 

Simple! Create of shortcut of whatever folder you want at your personal Users directory

Where is that? Key in Win + R >> type '.' (a dot)
Usually it will take you 'C:\Users\<your username>'. If it doesn't, just navigate to where 'C:\Users\<your username>' is.

You know you're at the right place as the directory will contain your usual user folders like My Documents, My Pictures, My Music, etc.

Place your shortcut there! Just like what I did (right click >> new >> shortcut >> add your folder path) :D


The name of the shortcut link will be the name you have to type on the Run dialog. :D

And that's it! :) Anything you put in that directory can be opened directly on the Run dialog. And it's not case sensitive! Try 'My Documents'. :D

Hope this helps! I find this extremely useful as I didn't have to put desktop shortcuts anymore. I do the same for apps, I prefer opening them via run dialog cos it's faster and prevents me from cluttering my desktop or flooding my taskbar with pinned programs! hehe

This entry is for opening specific folders using the run dialog, if you want to open specific applications/programs, i have another tutorial for that here. :)

How to transfer Paypal funds to your BPI Savings Account


Yes! You can actually withdraw your paypal funds to your BPI ATM account! tried it last week and it worked! Here's how...

Prerequisites:

1. a verified Paypal account
2. Paypal funds (of course)
3. a BPI Savings account (yep, that regular ATM account you have, could even be your payroll acct :D)

Procedure:

1. Add your BPI bank account to paypal
- Login to paypal.com
- Hover over "Profile" and click on "Add/Edit Bank Account"
- Click "Add" and fill out the form:

Take note of the following:

  • Name on account: your paypal name and bank account name MUST MATCH otherwise you'll be charged Php 250.00
  • Bank Name: Bank of the Philippine Islands (BPI)
  • Bank Code: 010040018
  • Account Number: the 10-digit number at the back of your ATM card






2. Transfer funds
- Once you have registered your bank account at paypal, you may now request for withdrawal
- Navigate to "Withdraw" and click on "Withdraw funds to your bank account" (take note of the charges)
- Fill out amount to be withdrawn >> then select the bank account you just added earlier >> then click on "Continue"

3. Done!
Following the succeeding steps and you will be notified via email by paypal about your request for withdrawal. it will take 2-4 days for the amount to reflect on your bank account and you will be charged another Php 150.00 by the bank. i withdrew last March 16 and got the money on March 18 nighttime. that's pretty fast you know! hehe

For this transaction i was charged a total of 200 pesos (50 by paypal, and 150 by BPI).



Also, on your account statement it will be listed off as a REMITTANCE.

That's it, hope this helps! 

Have you tried withdrawing your funds to your ATM yet? :)

[FIXED] Have you been getting this sorry message from Google?

For a while, every time I access my Google Analytics and Adsense pages, I get this error page: 

Source: http://www.southbourne.com/blog/wp-content/uploads/2012/06/Google-Block.jpg
It says:

We're sorry... 

 ... but your computer or network has been sending automated queries. To protect our users, we can't process your request right now.

See Google Help for more information.

I searched around did all of the suggested solutions, i scanned for mal/ad/spywares, cleared the cache, cleaned up temp files, etc. i basically cleaned up my browser. BUT NOTHING WORKED...

except for one:

one forum post suggested to disable some page ranking plugins, cos they might be the one causing the automated queries.

in my case, i have Alexa toolbar installed but it was disabled. the only enabled plugin i have is McAfee Site Advisor, so i deleted that. i also deleted Alexa to be sure. in fact, i deleted all of the plugins i'm using at chrome! there's not much anyway haha take note that i deleted them, and not simply disabled them.

then, i restarted the browser and boom! i was finally able to access analytics and adsense! yeyy! :D

let me know if it works for you! :D

alternative earphones for Lenovo mobile

for those looking for alternative earphones for Lenovo mobile, i have great news for you! i've just found out that Nokia earphones are compatible with lenovo... including the mic and the fm component. well, at least for the particular model below...


nokia WH-102 HS-125 stereo headset
this is because they share the same OMTP standard lol i dunno what i'm talking about haha so just refer to the picture below.

credits to EpsilonTheGreat from lenovo mobile forums
anyway! the nokia WH-102 HS-125 costs 500 pesos (original). tried and tested with a Lenovo P700i... and i might say, sound quality is good! even the mic and fm are working fine! i'd say this is much better than the original lenovo earphones haha

the EASIEST way to turn your paypal funds to cash (PH residents only)

nako i'm telling you, you will love this solution specially if you're from the philippines haha
given that you have a verified paypal account already but doesn't want to be bothered by the tedious steps and the loooong wait to get your money at the comfort of your atm account...

i highly recommend, PesoExchanger!!!


it's very simple really, you send your paypal funds to them, and they deposit your funds to your bank account! simple diba?

eto yung service na matagal ko nang hinahanap dahil nag-close na yung EON account ko (inactive haha), tinatamad na ko magopen ng bagong account, magbayad ng 300+ annual fee, 10 pesos withdrawal charge, at maghintay ng halos isang linggo para magcredit yung paypal funds ko sa atm. so i looked around the net kung meron bang tao na nag-ooffer ng ganitong service. and voila! PesoExchanger ranked on the search pages haha

to know more about their services, just go to their website (linked above), or contact them via facebook. mabilis sila magreply and are very professional.

to share my experience ganto yun:



1. thursday morning (may 9) i applied for online verification from their website. this is the first step you need to do in order to request for an exchange. i think they do this mainly to identify you as isang mabuting nilalang na hindi sila lolokohin at legal ang source ng income online. hahaha

2. that morning before lunch, i got scheduled for a verification session on 1:30pm. live pala nila itong ginagawa. what they do is chat with you on facebook, ask you questions, and access your PC via a remote software.

teka wait, ACCESS MY PC?! katakot ba? natakot din ako nung simula bilang alam kong delikado yung remote access. pero you can watch them naman while they surf your PAYPAL account. at pwede mo paring ng gulu-guluhin yung mouse hahaha

teka wiat, THEY WILL OPEN MY PAYPAL ACCOUNT? oo teh. bali ikaw naman-maglologin pero sila yung magb-browse browse. basically jyza (their staff) just ran through my transactions to validate my source of income. and to check if totoo yung pangalan na nasa account ko.

3. after the remote session, she continued to ask me questions about my paypal transactions. although yung iba feeling ko alam naman nya yung sagot kasi nasa details naman nung mga pinagb-bukas nyang page, i thought maybe naninigurado lang din sila. haha

4. after i passed the verification process (which i only need to do once, yeheyy!), i can now proceed to request for an exchange. here you'll tell them na how much you'll send them and the bank account you want your funds sent to. they'll also give you their paypal email address. hehe

5. i gave them my account details and they said na they have to register it first as a 3rd party account. i know this process kaya alam kong legit haha. 1 business day pa ang aabutin so pray pray lang din ako HAHA

6. KINABUKASAN mga 9am ata they told me na ready na yung account ko for transfer so blah blah blah kinakabahan pa ko mag-send ng paypal funds sa kanila.. malay ko ba? madaming beses na kong na-scam eh! anyway, i searched DTI naman and their name appeared so after sending some 3K nagreply naman naman sila agad..

7. after an hour, my money was transferred to my BPI account na!

hooray!

see that? this is much faster that applying for a new EON altogether... and partida, naka-upo ka lang. hahaha tumayo lang ako nung iwi-withdraw ko na.

thank you PesoExchanger for this awesome experience! till our next deal (pagnagka-project ulit ako haha tumal eh)

How to turn off camera shutter sound of Lenovo P700i

Unfortunately, the stock camera in Lenovo P700i doesn't allow you to turn down the shutter sound using the up and down volume buttons, instead it adjusts the call ringer tone and that's hardly what you want when taking pictures right?

Here's the easiest fix i got:

Download Camera ICS+ here or go search somewhere else if you want. It will let you use the volume buttons to adjust the Media Sound (which controls the shutter and also game bg sounds). It's a 3rd party camera but the UI is entirely like the stock ICS camera so i had no problems adjusting. :D

Another option is to root your phone and locate the camera shutter sound file, something like camera_shutter.ogg, then delete or rename it so it doesn't get called in every shot. But of course, rooting the P700i is a painstaking method so i don't really suggest it. This was my first option though, before i realized that the shutter sound is a Media Sound and whenever i play games and lower the volume, it also lowers the shutter sound with it haha. >XD

Problem solved (at least for me) ! Hope it works for you. >:D

If you find this solution helpful, please do comment! :D

on the other hand, still crossing my fingers on a non-root solution for the same problem on the Lenovo A60+ though haha >XD

How to permanently and easily unlock your Samsung GT-E1080F (Network Lock, Sim Lock)

My phone was initially Sun locked and i wanted to insert a Smart Buddy sim on it. i searched around and this is what i found effective:

1. insert wrong sim card to phone. in my case, i inserted a smart buddy sim card on my sun locked phone.
2. turn it on. it will ask for a Network Code (or similiar). choose SOS (for emergency calls) and dial: *2767*3855#
-while typing you will notice that the 3855 part is masked with multiple dashes (i.e. it will appear *2767*----#).
-it will cause your phone to restart.
3. change the network code by dialing: *7465625*638*00000000*00000000# (that's 2 sets of 8 0's for you)
-if it restarts and asks you for a Network Code, key in 00000000 (eight 0's still >:D)
4. then permanently unlock the phone by dialing: #7465625*638*00000000# (still eight)
5. check the phone lock status by dialing:  *#7465625#
- it should display INACTIVE on the item Network Lock

there you go! worked for me! i restarted the phone and re-inserted the sim to see if it really works, and it did! >:D

Comment if it worked for you too! >:D

8/1/2013 UPDATE:

Thank you for all the positive feedback! Glad to be of help :)

Some of you were asking why it doesn't work on your phones and honestly, i couldn't answer specifically because i never ran into any problems when i tried this fix. Anyway, here are my suggestions in case you're stuck somewhere along the tutorial...

1. make sure it's Samsung GT-E1080F Model
there are lots of other models with the SAME LOOK so please make sure that you're working on that specific model, otherwise i cannot guarantee anything.

2. make sure that you dialed the numbers CORRECTLY

3. i cannot verify if this guide is specific only to SUN LOCKED phones, but according to one comment it also worked on a SMART LOCKED phone.

that's all i can suggest. thanks for reading!

8/24/2016 UPDATE:

To those who have successfully unlocked the network but are experiencing SIM LOCK problems, try these. No guarantees though 'cos I just found these codes from a forum and haven't tried them yet.

#0111*0000000# -  removes SIM Lock
or
#7465625*746*00000000# disables SIM lock

How to Openline your Smart Bro ZTE MF100


Here's a tip for all of you out there who want to get their usb broadband sticks openlined:

DO NOT.

If you could afford it, just buy a new stick! A lot of things get compromised when you get your unit openlined and here are just a few (2 actually), but very important things that may happen to your unit that you wouldn't wanna risk:

1. the autorun may get deleted
which brings about 3 consequences:

  • your broadband software will not auto-install or auto-read when you plug it. in short, it will not be plug-n-play anymore.
  • the memory card slot will also lose its functionality since the autorun was removed.
  • your usb stick will not be read in other PCs, unless a version of the broadband software you're using is previously installed.

2. SLOWER CONNECTION SPEED WITH OTHER NETWORKS

i have not proven this yet but upon having my smart bro openlined and trying it with a sun cellular sim, connection hasn't been decent EVER SINCE. and when i say not decent, it's like you only get a good speed for 10 seconds maximum, then it drops to 0 ad infinitum... then the speed bursts for a good 10 seconds again before it plummets down to hell yet again for an infinitely painstaking time.

in short, it's useless for other networks. i know because i've tried the sun sim using sun broadband usb (not openlined) and the connection is good! take note too that i'm using the right network configuration settings for my sun sim.

there you go! don't be like me!

everytime you think of geting your MF100 openlined, DON'T. haha

and i'm freaking serious and furious and anxious to get back to my smartbro plan 999 but am friggin discouraged because the 'product support' person at SM Fairview is freaking hostile. fudge him.

k. gotta post this before the connection dies again.

How to turn off group chat on Facebook

it's annoying when a group you've joined starts beeping peskily because some of its members are engaging in a group chat. if you don't really like chatting with these fellas or if you generally dislike this group chat feature in facebook, here's how to finally roll it off your sleeve:

1. open the group page
2. click on 'Edit Settings' on the top right-side of the page
3. uncheck 'Send me group chat messages'
4. save

there you go. >:)

For Philippine Sellers: DO NOT ENTERTAIN FOREIGN BUYERS

because unless you're selling an item internationally, then you got a scammer on board.

their style is pretty much the same, buyer lives in the US and wants you to ship the item to AFRICA as a gift to his cousin. buyer knows only one mode of payment and 2 couriers: paypal, fedex or DHL respectively. and they won't accept any other options. the story could vary but it's always the same, a foreign buyer who wants your item delivered to another country. and of course, they'll graciously say they'll pay for all the expenses.

i don't know how it works but the first time i got one, i reached a point where the buyer already gave me the name and address of his cousin. i knew shipping would be expensive and i was ready to shell out some bucks for it. GOOD THING, i got another buyer! and guess what, it's another foreign national with the same scheme. this time he lives in the UK and wants my item shipped to Abu Dhabi. i flagged it immediately.

so there, beware. >;)

How to create folder playlists in Samsung Wave 525 using your PC

Apparently, the bada music player doesn't support folder playlist. Even if you have grouped your mp3s in folders, it won't recognize each folder as a playlist (which is just dumb). To create a playlist on your phone, you must select the tracks one by one in the "All Tracks" list. Now if you have hundreds of mp3s, and the playlist you want to create only includes 10 files or so, it's gonna be such a bothersome task to leaf through each of them.

i've gone through google and landed in support forums but most of them advised me to download a music player app or something, which i don't like. hehe

So here's a simple solution in creating playlists using your PC >:)

1. install Samsung Kies from www.samsungmobile.com
we're not gonna use the software here but the necessary drivers to recognize your device on 'my computer' are included in the installation.

2. Launch Samsung Kies and connect your mobile phone to your PC using "Samsung Kies" as the connectivity option, don't select "Mass Storage" as it won't enable you to create playlists.

3. once connected, open 'My Computer' and look for your device, it's named 'Wave525' by default. Open it. OR you can wait for it to autoplay and from there you can open your device.

4. Open Wave525 and select the memory location where you want to copy your mp3 folders. mine has 'Phone' (internal) or 'Card' (external) . I usually use the external memory >:)

5. Open 'Card' then go to 'Sounds', then 'Music'

6. On the 'Music' folder, copy your mp3 folders.

7. Once you've copied them: open each folder >> select all music files >> right-click on any mp3 >> select 'Create Playlist'. Rename your playlist as you wish.

8. A playlist file will be created with a .pla extension. Disconnect your phone by pressing the end key.

9. On your phone, go to the menu and open your music player. select the 'Playlists' tab and there you will see all the playlists you have created from your PC! >:D Then you're done! >:D yehey!

Notes: if you open the playlist using 'My Files', it will say 'unsupported file format' so be sure to open it via the music player. >:)

as far as i have tried, the 'Create Playlist' option only appears when the selected files are ALL MP3's. It doesn't work on other music formats (like mpeg4) so i guess you have to stick to that hehe

I'm using windows xp pro sp2, but i guess it should work on other OSs too and probably other bada phones (though i haven't tried yet). hehe >:)

Comment if it worked! Thanks! >:)

[Windows] How to open specific programs/applications using the Run dialog

If you notice, when you hit Win+R, type 'mspaint', and hit enter... Microsoft Paint loads up! i'm assuming it'll work for majority of us Windows PC users! Try typing 'calc', and the calculator should open up. >:) I find this method easier and faster than having to navigate on my Desktop or searching on the Start Menu,

This tutorial will teach you how to open specific programs or applications using the Run dialog.

Steps:

1. Win+R >> type 'regedit' >> hit enter
this will load the Registry Editor.

2. On the Registry Editor, navigate to: HKEY_LOCAL_MACHINE >> SOFTWARE >> Microsoft >> Windows >> Current Version >> App Paths
the items listed on App Paths are the different shortcut keys you could use to run a certain program using the Run Dialog box. >:)

3. Right click on App Paths >> New >> Key

4. Rename the newly created key. For example, i want to create a shortcut key 'word', for Microsoft Word. I will rename the key with "word.exe". Putting .EXE is important >:)

5. The right window pane will have an item called (Default). Right click on it >> Modify >> enter the program path on "Value Data".

6. The program path is the location of the executable file that will load up the program. If you don't know where to get it, go to the folder Program Files, look for the folder containing your program and copy the location of the program .exe file. >:)

OR

On the Start Menu >> look for the program you want >> right-click >> Properties >> copy the path on the Target field and supply it on the 'Value Data' from the Registry Editor

this is majorly just a note to self in case i forget but i hope it works for you too. >:)

FIXED!!!!

at last! my Creative Zen has been revived! Special thanks to Mino! wahahahaha

as promised:

PROBLEM:
a. 'Firmware Problem' error message on Startup and
b. Player cannot be recognized in ANY PC

SOLUTION:
while others might tell you to download the mp3 player recovery tool from Creative or upgrade the Firmware with the latest version... that won't just work if you're having problem b hand-in-hand with a.

so the first thing you should do is perform a hard format (mino taught me this bwahaha i'm so thankful).

how to:
a hard format is basically a formatting process made on the device itself, without any valid link/connection to a PC.

Turn off your Creative Zen by inserting a thin object on the reset button of your device. I figured this is the only way of shutting down the player in my case because the on/off button on the side won't respond.

then, PRESS AND HOLD the play/pause button while turning on the player (with the normal turn/off switch).

TAKE NOTE that you must press and hold FIRST before turning the device on. and you must still be holding the button while the device is turning on.

doing those correctly will lead you the recovery menu with just the right options you need to save your device. if i remember correctly, the options were:

Format All
Upgrade Firmware
Reboot
Rebuild

select FORMAT ALL. you should be aware that all existing files currently present in your player will be deleted after the process.

select yes then, proceed to Rebuild.

your player must now be working well. :)

hope this helps. :)

how to download streaming videos

:) yey! finally!!! to start this off, i'll define what streaming video is. you watch it on youtube, google video, ifilm, metacafe... blah blah. ok. gets? so those are streaming videos, videos that you can readily watch as it is being delivered to you. the difference of streaming media to non-streaming media is that with non-streaming media, you first have to download the file completely before you can view it. an example of this would be mp3s we download from the net and zipped files. clear?

so yeah, to download streaming videos, or simply put... for you to save your favorite youtube videos on your hard-disk.... do this

1. first and foremost: secure an FLV (flash video) player because the video you're going to translate into downloadable format and download will be saved with a file extension of .flv

>>> you can download a free FLV Player HERE

2. open youtube (or any streaming video site you know) and load your preferred video

3. open http://www.keepvid.com and there you'll see a field where you must type the URL of the page where the video plays. actually, all the other necessary directions can be found on that site. JUST make sure that the video you're planning to download has loaded COMPLETELY on youtube (or any other) before you type in its URL

4. and voila! keepvid will take care of the rest. which means that once you've submitted the URL on the text field, keepvid will generate a DOWNLOAD LINK where you can finally download the video as an .flv file and save it on your harddisk.

waaah. it's very easy... for those who have highspeed internet connection. :\ naaah. i don't have that... for now... but we'll see... hehehe

anyhow. as of late, keepvid is the only site i know who offers such services but i'm sure there are lots of them already, i'm just not well-aware of them. :)

NOTE: sadly, you can only download streaming videos as FLV files. if you want to convert it to mp3 or any other type of media, you have to secure a separate converter for that...

yey! alright. that's it.

questions? clarifications? anything you find incomprehensible or vague? you can ask me on this one if you don't understand it. ^_^;;

THANKS A BUNCH TO KEEPVID and to my dormmate who shared this info to me. :)