Showing posts with label other. Show all posts
Showing posts with label other. Show all posts
Saturday, August 27, 2016
Alfa Extension Cable vs Other Extension Cable
Alfa Extension Cable vs Other Extension Cable
The USB Active Extension Cable from Alfa Network ensures you get the best performance and maximum data integrity when you transfer information between your computer and devices. It uses active chipset to sustain your data signal, so you can connect a peripheral to your PC from an extra distance. Standard (passive) USB extension cable (showing on left hand side with light blue color) connections can cause significant data loss over distances.
Alfa AUSBC-10M USB Extension Cable

Standard (passive) USB Extension Cable



Standard (passive) USB Extension Cable

Here is the difference.......

Sunday, August 21, 2016
Download videos from Naver TVcast and other Korean streaming video sites
Download videos from Naver TVcast and other Korean streaming video sites
--- UPDATE - MARCH 2016:
Another site that works is Tube Ripper. I just tried it; worked great, no issues. Thanks to reader +Roms Dungeon at Roms Dungeon for the recommendation.
--- UPDATE - NOV 2015:
Another site that works is http://www.videograbber.net I verified that I was able to download from both Naver TVcast and Naver V. They have both an online downloader tool and an actual program you can download/install on your own computer.
--- UPDATE - SEPT 2015:
Many readers have been asking about how to download videos from Naver V. Please see my newer post here.
--- UPDATE - JULY 2015:
Reader Xiao Long recommends another similar tool, ClipConverter.cc.
I tried it, and can verify that it works well. It may also be even even better than what I recommended below, as you can choose the framerate of the video you want to download. For those of you who demand 1080p, try that instead.
Original post follows below.
Naver runs a sort of YouTube competitor called Naver tvcast (??? tv???), and if youve noticed that some of your favorite K-drama shows seem to have been disappearing from YouTube recently, this is likely why.
You also might have noticed that many of the usual video downloader extensions dont work on tvcast. There are some stand-alone apps that apparently can do so, including atresdownloader and Houlo Video Downloader, and the excellent youtube-dl (a nice illustrated guide to using youtube-dl to download Naver TVcast videos is here), but I bet you want something easier and something non-Windows-specific, and that will work on mobile.
Luckily, theres a simple online downloader that will do it for us. Its called "To Get FLV" and works for a variety of Korean streaming video websites. Heres a look at it in action:
Step 1:
Visit http://2getflv.co.kr/2getflv/ and paste in the URL of the video.
For this example Im using a promo clip of a BBC documentary, located at http://tvcast.naver.com/v/338202
Step 2:
Click ?? ("Search") and in a moment a thumbnail of your video will load below the search-box.
To proceed to downloading, click the button there circled in red above, which reads ? ????? ???? ???????. Dont worry too much about what it says. If youve come this far, it likely wont matter to you. (OK, actually it just says that you agree that the video is for personal use only).

Step 3:
Youll arrive at a simple link page like above. Just like it says, right-click on the second link to "Save as..." and youll download the MP4 file. I had to add the .mp4 extension manually when I tried this but otherwise it plays great.And thats it. This convenient tool apparently works not only with tvcast, but can also download videos from a variety of other Korean sites:
- ??? TVCast (Naver tvcast)
- ??? ??? (Naver Sports)
- ?? ??? (Daum TVpot)
- ???? (Afreeca)
- ???? ??? (Afreeca Sports)
- ?? (mgoon)
- ??? TV (Pandora TV)
- ??? ? (Nate Pann)
I tried a few on the list here, all with success. Id suggest two things to remember:
- If the tool doesnt recognize the video page at first, try using the URL from the Share / Embed / Copy URL feature
- The file may download with a weird extension or no extension. Just manually add .mp4 or .flv where appropriate.
=====
This post is from the blog 10? Tips, by Sam Nordberg. See the original there, and follow me on Facebook or Twitter @10wontips.
This post is from the blog 10? Tips, by Sam Nordberg. See the original there, and follow me on Facebook or Twitter @10wontips.
Saturday, August 6, 2016
Displaying your Blogger posts location tag on mobile templates other than Dynamic Views
Displaying your Blogger posts location tag on mobile templates other than Dynamic Views
Vanishing Location Information on Mobile
Im a big fan of tagging my Location on Blogger posts, especially on my travel blog, where I review restaurants, document my trips with tips for other travellers, etc. Blogger adds your location tag to the post in the post footer by default, which is great, but more and more people are browsing blogs on their mobile phones rather than the desktop.

As it stands, it seems if your Blogger blog is using the "Dynamic Views" template, the posts location information will be shown on both the desktop and the mobile view, including the address being a clickable link to a Google Map.
But I recently noticed that this is not the case for any other template. I tested out Bloggers other templates (Simple, Picture Window, Awesome Inc, Watermark, Ethereal, Travel, all of them!) and noticed that the location tag is not included when using these templates on mobile.
Heres a demonstration. Heres a test post I made, location tagged at beautiful Bass Lake. These are screen-shots from my phone. Notice the location info displayed here in "Dynamic Views" layout:

Great, I like that a lot. But what if Im not a fan of Dynamic Views, for one because it takes longer to load?
Heres the same post, with the blog template switched to "Simple":

As you can see, the location information is gone. How can we get it back?
A possible solution?
This can be fixed by adding a short bit of code to your blogs template, telling it to display the location on mobile. However, in my tests, this method only works:- on SOME templates ("Simple" but not "Awesome Inc" for example) and
- seems to only work on blogs that do not use Google+ integration (i.e. still use the old Blogger profile)
Update: I heard from others that this does work on all templates, so give it a try!
Anyway, to try this, edit your blogs template HTML by going to (duh) Template -> Edit HTML.*** First make a back-up of your blogs template, just in case something goes wrong ***
Now, in the HTML editor, you need to find this tag:
<b:includable id=mobile-post var=post>This will contain the code for how your blog is displayed on mobile devices. You may or may not need to click the little arrow on the side to expand this entry.
Now all you have to do is add this bit of code to the spot where you want the Location displayed. For example, I like having mine displayed in the post footer, so I search for this (it was about 50 lines of code down from the mobile-post tag in mine):
<div class=post-footer-line post-footer-line-1>Now then, right below this line, add in the special location-displaying code:
<span class=post-location>And thats it! Now I save the template, and when I refresh my blog post, I see this:
<b:if cond=data:top.showLocation> <b:if cond=data:post.location>
<data:postLocationLabel/> <a expr_href=data:post.location.mapsUrl target=_blank><data:post.location.name/></a> </b:if> </b:if> </span>

The location details are back! Success!
Helpful Notes
If, like me, you are not a coder in any way at all, please take note: your blog HTML template is going to have multiple entries of the kind <div class=post-footer>. I wont even pretend to know what each of them does or why they all exist. All I can tell you is that this will only work if you put it in the section under that <id=mobile-post var=post> tag from above.Also, as I mentioned above, Ive had limited success, depending on the particular blog template. Id love to hear your experiences with this.
Credit
Credit for the majority of this idea goes to George B. Moga whose blog post here gave me the code used in this trick. I appreciate his support in trying to solve this.P.S. This post is location tagged at beautiful Napa Valley, California. If the code works, you will hopefully see this post tagged (if youre reading on mobile) as such.
=====
This post is from the blog 10? Tips, by Sam Nordberg. See the original there, and follow me on Facebook or Twitter @10wontips.
This post is from the blog 10? Tips, by Sam Nordberg. See the original there, and follow me on Facebook or Twitter @10wontips.
Subscribe to:
Posts (Atom)