While going through some of my old notes and bookmarks, I dug up this image definition of what terrorism is.
Unfortunately I didn’t note  where I got it from and who is the author.  If you have any idea, please let me know and I’ll give credit.
The other day I watched “The Way Back” – a movie, allegedly inspired by real events, about a group of people who escaped a Soviet Gulag camp in Siberia back 1940s and walked their way to India.  I’ve heard nothing of this film until a friend recommended it – no trailer, no nothing.  When I read the brief plot description at IMDb, I got slightly worried that it would turn into one of those anti-Soviet propaganda movies.  My wife shared the worries and even decided not to watch the film with me.
She turned out to be right. Â While there is plenty of breathtaking scenery shown in the film, and there is plenty of good acting, the propaganda makes it totally unwatchable. Â The film basically pictures the Soviet Union as one huge prison, where the government is after every single person, be he innocent or not, old or young, male or female, Russian or not. Â One doesn’t even have to know history to understand that that is a huge exaggeration.
Don’t get me wrong, I’m not complaining because the film pictured Russians (or Soviets) in such a bad light. Â It has nothing to do with whether they were Russians or not. Â Even if they weren’t of my own nationality I’d be complaining. Â I’m not even too sensitive to propaganda in the movies – Hollywood uses it all the time to praise the United States. Â The problem is that in this movie, propaganda is the primary objective. Â Everything else comes second. Â And it’s really a pity. Â Level down the propaganda and you’d have an excellent film on your hands.
As it is, I’d give it a 2 out of 5. Â It’s difficult to watch and it leaves a dirty aftertaste.
I’m using Vim text editor for more than decade now. Â And I still can’t say I really know Vim. Â I’m used to it and my fingers remember the commands. Â And for those commands that I don’t remember, I’ve found some way of working around and got used to it too. Â Today I came across not one, but two tips that I’m adding to my arsenal of Vim tricks.
Usually I only need to select the block once. Â I then process it and never get back to it. Â But sometimes, I need to select the same section of the text a few moments later. Â Until today I was simply switching to visual selection and marking the block again. Â Not too much of a problem, but it would be nice to have a shortcut for re-selecting the previous selection. Â Of course, there is such a shortcut in Vim. Â I just didn’t know it. Â Simply type ‘gv‘ (without quotes) while in normal mode and your last visual selection will be selected again.
There is no limit to number of lines copied between files, if all files are being edited in the same instance of Vim. Â However if you copy a large selection from one file, then quit Vim, then open another file, and paste, you’ll probably see that only the first 50 lines or so were copied and the rest was lost. Â Again this is not such a frequent scenario for me, and when it was happening I was simply opening both files in the same instance of Vim and copy all that I needed. Â It turns out, I don’t really have to do that.
Vim uses ~/.viminfo file (default location) to remember things like command history, file marks, and registers between Vim instances. Â There is a way to configure what and how much of what is going into this file. Â If you are annoyed by any limits, you can easily raise them or totally remove them. Â Have a look at “:help ‘viminfo’” manual page to see what is possible. Â Adding “set viminfo=’100,<1000,s100” to ~/.vimrc file solved my problem.
P.S.: my messy Vim configuration files are available from GitHub, in case you wanted to take a pick at what else I have there.
Here is one solid piece of advice I can give you after spending way too much time tweaking Gnome 3 in the last few days: read this Gnome 3 tutorial. Don’t just scroll through it. Read every single word of it. It will save you a lot of time and hair pulling. I promise.