Wednesday, December 7, 2011

Moved and got back the internet. Then there was this video.



And this video, this one made my day.



Sunday, November 27, 2011

Being timid felt did nice in one way.

Yes, sometimes I feel that people treated me nicer when I was more timid before. Trying to talk more, some people seem to give me grim look, don't understand. Timid then people be nice to you, brave and people don't care about you. That's what I am feeling.


But I there is another view to look at, which is for me to be nice to people, not expecting people to be nice to me.

And there is another view, being nice is not everything, it is only appearance and it is only marketing, like a promise for true value, but in it self no value. What am I shock sediri about here?

Moving house.


Wednesday, November 9, 2011

Create folder loop batch file

This creates a folder within a folder within a folder in a specified number of times. As useless as other files, but it feels easier than learning how to use the for function in command prompt. Just change the lend= at the start to change the number of iterations.

@echo off
set lsta=1
set linc=1
set lend=10
set /a a=%lsta%-1
:loop
set /a a=%a%+1
md %a%
cd %a%
if not %lend%==%a% goto :loop
:end