Rank Tracker SEO tool review – part of SEO PowerSuite

Rank Tracker SEO tool review - part of SEO PowerSuite

In the current blog post, I’ll review Rank Tracker software from SEO PowerSuite, a company which provides all-in-one SEO software & SEO tools. I will also look at the other 3 components of SEO Power Suite.

SEO PowerSuite covers every aspect of an SEO campaign. It has software from rankings to on-page to backlinks.

Citește mai departe

BSPlayer subtitles

BSPlayer subtitles

Let’s say you download a movie from the Internet, and in that folder, you have two files: filename.avi and filename.srt. Let’s say for download you’ve used a program which doesn’t allow you to rename files. If you download another subtitle from the Internet, whenever you play the movie, the filename.srt has priority. How to automatically open the subtitle, without deleting the original subtitle, and without copying the movie in a new location? Simple – rename you new .srt file into filename.sub. BSPlayer will give that new subtitle a higher priority, even if the format of the file is .srt.

Cynism

Cynism

When I was in the UK, I thought about a long-read thought of someone else on a Yahoo! Group: Romanians are more cynical than Westerners, in general. Is this good? It depends. If you take a cynical person and put it in an environment where everybody else is positive and warm, from that person’s perspective, things are fine. But for the society? Might be, might be not. What if all society is made from cynical persons? I think things are not, in this case, good for anybody. How about a situation in which all persons are positive? I think it will do good. It’s a prisoner’s dilemma at its best. PS: Adrian Stanciu once said that in Sweden the half-socialist State and its measures work because in there everybody works for the good of the society, as a whole. No cynism, instead goodwill and trust in all.  

Best solution for saving the planet

Best solution for saving the planet

Consume less. Despite the fact that there are solutions for consuming less », the best solution is not consuming in the first place. If you go to Rome, it’s best to be as Eco / Nature-Friendly as you can, by choosing the best travel option for the environment, and so on. But had you skipped the trip altogether, you probably would have been more Eco-friendly.

How to enter the sea, when it’s a bit cold, and you’re a bit hot from the Sun?

How to enter the sea, when it's a bit cold, and you're a bit hot from the Sun?

Imagine this: you go to the seaside, you’re a bit hot from the Sun, while the water is a bit cold. How to enter? After some practice, I found out that the best solution for this is to first enter the water quickly, close to the shore, lower yourself into the water so that you are fully wet, and go outside. Stay in the sun & wind for a while, and you’ll feel very cold. Stay like this for a minute or two. Go back to the sea. Now you will not feel the sea as cold as before.  

How to take photos at an event? Some tips

How to take photos at an event? Some tips

A few tips on taking photos at an event: Use the camera / smartphone from a high position. Try to raise your arms in the sky and photograph the audience like this. The most important take – the one which shows the number of participants plus the speaker. Another important shot is with zoom on the speaker, a close one. I use ex-Google’s Picasa for editing the photos. For promotional purposes, the most important task is tagging persons in the photos. When you add description to an album, add the link to your web site, so people can get easily from the photo to your web site. On Facebook, tag the location. People want speed – do live photos and a quick follow-up. It’s not much help if you put the photos 3 weeks later from the event. It’s fine to use live a wifi card, or photos from the smartphone.

Using Command Prompt’s „dir” command to display the contents of a folder

Using Command Prompt's "dir" command to display the contents of a folder

Let’s say you have a folder with files, and you want to save the full list of files in a text file. The solution is to open Command Prompt (Win + R, cmd, enter), and type this: dir /s /O:GNE >output.txt This will result in the full contents of „Olivian Breda” folder being listed in the file „output.txt”, which is created if it doesn’t exist, and overwritten in case it already exists. Do you want just the current folder, not the subfolders? Just remove „/s”. dir /O:GNE >output.txt Do you want the listing to be displayed on the screen, as opposed to in a file? Remove „>output.txt”. dir /s /O:GNE Cheers!