Showing posts with label how to. Show all posts
Showing posts with label how to. Show all posts

Monday, 13 July 2015

Download Video from NicoNicoDouga : Tut

Req:
1. NND account(optional)
2. Video url (eg:http://www.nicovideo.jp/watch/sm24643818)
3. Use one of these online converter;
   a. http://www.vid-dl.net/🌟recommended!
   b. http://niconico.online-downloader.com/
   c. http://video.online-convert.com/convert-to-mp4
4. Use a plugin/software;
   a. https://addons.mozilla.org/en-US/firefox/addon/nicofox/
   b. http://jdownloader.org/
   c. http://houlo.com/houlo-video-downloader

Using Vid-DL [go to vid-dl]
1. Copy and paste the video url in 動画URL
2. Enter or Click リンク解析
3. Click on the orange button to download the video

Using Niconico Online-Downloader
1. Copy and paste the video url in space provided
2. Enter or Click Go
3. Scroll down and Click on the orange button to download the video
 **Other format conversion only available for member

Using Online Converter
1. Copy and paste the video url in space provided
2. Click on Convert file
3. Wait for the conversion to complete (download will be prompted automatically)

Thursday, 3 July 2014

Download Video from Youku : Tut

Although youku provide their own download app(I think), but you feel not really up to download it, this is how to download a video from youku.com

What you need:
1. the video URL
2. flvcd online converter [go to flvcd]
3. IDM (optional)


Step 1:
Open the video and copy the URL

Step 2:
Go to http://www.flvcd.com/

Step 3:
Paste the URL onto the provided box and click GO

Step 4:
If you try to download a long duration video the video will be cut into parts. Download all links provided. If you have IDM right click the link and click Download with IDM



Wednesday, 2 July 2014

Different Background for Multiple Monitor : Tut

If you have Multiple monitor and wants different background for each monitor this is how to do it. This can be applied in Windows 7 and Windows 8.

Step 1:
Right click your desktop and go to Personalize

Step 2:
Click on Desktop Background

Step 3:
Change the Picture Position to Span

Step 4:
Right click the image of your choice and set it for monitor 1

Step 5:
Right click another image of your choice and set it for monitor 2

Step 6:
Save your setting! and Tada!


Wednesday, 25 June 2014

Show/Hide Images or Text : Tut

This How To is posted for the sake of keeping updates.....

Example:
or Click Here


What we will use is:

  • CSS
  • JavaScript
  • Div tag


How to make an image or text hidden.
1. Put this in your css
.hidden { display: none; }
.unhidden { display: block; }

OR if you dont know where your css is paste it anywhere like this

<style>
.hidden { display: none; }
.unhidden { display: block; }
</style>

2. Make you text/image hidden
<div id="hide01" class="hidden">
Put your Hidden Text or Images Here
</div>

How to display the hidden text/images
1. Paste this script somewhere into your webpages
<script type="text/javascript">
  function unhide(divID) {
    var item = document.getElementById(divID);
    if (item) {
      item.className=(item.className=='hidden')?'unhidden':'hidden';
    }
  }
</script>

2. Make a link to toggle hidden text/images
<a href="javascript:unhide('hide01');">Click Here</a>
OR you can also use images as the link
<a href='javascript:unhide('hide01');' title='Chat Box'><img src='http://4.bp.blogspot.com/-34YAu1fx'/></a>

That's it!

This is how the code would look like in a single page;
<head>
<style>
.hidden { display: none; }
.unhidden { display: block; }

</style>
</head>
<body>
<a href="javascript:unhide('hide01');">Click This</a>
<div id="hide01" class="hidden">
Put your Hidden Text or Images Here
</div>

<script type="text/javascript">
  function unhide(divID) {
    var item = document.getElementById(divID);
    if (item) {
      item.className=(item.className=='hidden')?'unhidden':'hidden';
    }
  }
</script>

</body>