Skip to content

Dan Barber: How I fell in love with a fish

Categories: Favorite TED talks.


Clay Shirky: Why SOPA is a bad idea

Categories: Favorite TED talks.


IMDb rank your movies!

Categories: IT.

IMDb ranking is very helpful when you are searching for a good movie. IMDb ranking is made by IMDb users, who can vote for each movie on scale 0 – 10 points. Sure, everybody can have different opinion on the quality of the movie and IMDb ranking can differ from yours. However, this is the average of global opinion which can influence you while choosing the good movie.

I have many movies stored at my external hard disk and I was curious, how they are rated by people around the world and which I can delete without any doubts.

Therefore, I created little .NET application which can do all this magic. Application IMDb rank your movies! can search for all movies in specified folder and assign theirs IMDb ranking.

IMDb_rank_your_movies! logo

  1. Click on ‘Choose folder with movies’ button and choose the folder. Application will automatically scan for all movies with extensions .avi, .mp4, .wmv and .mpg in selected folder and its subfolders
  2. You can also manually add movie names or edit existing list by double clicking on movie name
  3. Click on ‘Rank the movies’ button and that’s it! Wait for your results. If some results are not found, try to edit the movie name and start the ranking again.OPTIONAL: If you find any movie no more interesting for you, click on red cross in right most column. It will delete the movie from hard disk (move to recycle bin)
Enjoy ;)

Download IMDb rank your movies! application

 

IMDb_rank_your_movies! screenshot

Version Changelist:

1.2 (25.01.2012)
- Added ability to remove movies from the disk

1. 1 (23.01.2012)
- Minor stability fixes

1.0 (22.01.2012)
- First stable version


Pranav Mistry: The thrilling potential of SixthSense technology

Categories: Favorite TED talks.


Ken Robinson: Schools kill creativity

Categories: Favorite TED talks.


How to repeat the Youtube video automatically

Categories: How to's.

Many people are using Youtube just for listening to the music without watching the video. I am doing this too sometimes :) Instead of using any online music streaming sites as grooveshark.comspotify.com or last.fm, I watch the video and then keep it playing in the background while doing something else.

Me and many of Youtube users miss ‘Automatic song repeat ‘ button. Therefore, every time the video is finished, we have to click ‘Repeat again‘ button.

It’s annoying, so I found two simple solutions for this:

1. Edit video URL

Change video URL according to next example:

Original:  http://www.youtube.com/watch?v=uirFYDaMhYU
Updated: http://www.youtube.com/v/uirFYDaMhYU&loop=1

There are two changes:
- instead of  ‘watch?v=‘ write ‘v/‘ . Do not modify video ID at the end
- add ‘&loop=1‘ at the end of URl

2. Create repeating playlist

This can be easier for someone, because you are just clicking here.

- Add video to the new playlist (there is ‘Add to’ button under the video)
- New playlist panel will appear at the bottom of the page
- Click ‘Play‘ to play created playlist (there is only this one song)
- Click ‘Turn auto-play on’ to repeat video automatically


How to create own thumbnail for Facebook share button

Categories: WEB development.

Recently, I added cool Facebook share/like/recommend button to my new web project. At first, everything went well. I followed official tutorial from Facebook developers page and the result was as expected:

I pressed Recommend button, then visit my Facebook profile and there was selected probably the worst image thumbnail from my page! WHAT !?? Facebook magic?

I started to check this issue with our friend, Google Search, where I found many tutorials about how to edit Facebook share post. It’s easy and we will get to it later in this post. However, the Facebook is using cache for all pages that are shared. So when you change Facebook share settings, it will be in effect many hours or day later (after Facebook cache will be flushed).

Therefore, I wrote down this simple tutorial about how to change Facebook share settings with immediate changes:

  1. Customize and add Facebook Share html code to your web page by using official Facebook developers tutorial.
    Example:
  2. <iframe
     src="http://www.facebook.com/plugins/like.php?app_id=1234567891011&amp;href=http%3A%2F%2Fwww.website.eu&amp;send=false&amp;layout=standard&amp;width=330&amp;show_faces=true&amp;action=recommend&amp;colorscheme=light&amp;font&amp;height=80"
     scrolling="no"
     frameborder="0"
     style="border:none; overflow:hidden; width:330px; height:80px;"
     allowTransparency="true">
    </iframe>
    
  3. As per another documentation on the Facebook developer site, edit your html header with Facebook meta tags. Here you will specify, what will be displayed in the Facebook share post
    Example:
  4. <head>
     <meta property="og:title" content="Displayed title" />
     <meta property="og:description" content="Summary description" />
     <meta property="og:url" content="url_of_the_page[if you want use other than default]" />
     <meta property="og:image" content="url_to_thumbnail_image" />
     ...
    </head>
    

  5. When you try to share you web page now, you will see no changes in Facebook share post. This is caused by mentioned Facebook cache hell.
    Go to Facebook URL Linter (Facebook URL Lintner), enter your web page URL and click debug. The facebook cache will be flushed and renewed. Now, you will see all information of your web page from Facebook’s view.
  6. Try to click Facebook Share button now. Vuala, the magic happened correctly now.

Tip: Use official Facebook WordPress plug-in:  http://wordpress.org/extend/plugins/facebook-share-new/


Tim Harford: Trial, error and the God complex

Categories: Favorite TED talks.