2015/12/12

How to remove repository in TFS Online ?

1. Navigate to: https://{your_account_name}.visualstudio.com/DefaultCollection/_admin
2. Choose your repository + right click + choose delete

2015/12/10

How to remove Softonic Web Search from computer, chrome, firefox, ie ?

a/ unistall all programs that might install Softonic Web Search on your computer: SafeFinder (I had a problem with deletion of this prog so I had to do point g/)
b/ [optional] I have not noticed any help but I did it: Install and run Yeat Another Cleaner http://www.yac.mx/
c/ Install and run: AdwCleaner - link on this site: http://www.malwareremovalguides.info/remove-sonicsearch-adware-free-virus-removal-guide/
d/ I found that there is a suspected service called Lightzap running on start of my system: C:\ProgramData\\Lightzap\\Lightzap.exe -f "C:\ProgramData\\Lightzap\\Lightzap.dat" -l -a I removed it and its dependant folder.
e/ I reset chrome settings and ie settings with "Delete personal settings" option choosed
f/ restart computer
g/ Recover your last good system settings: Control Panel -> Recovery -> Configure System Restore -> System restore -> choose wright restoring point

2015/09/11

How to compress and decompress directory in Linux ?

1/
Compress and pack directory:

tar -zcvf archive.tar.gz directory/

c (create) - an archive from the files in directory (tar is recursive by default),
z (gzip)  - compress it using the gzip algorithm,
f (file) - store the output as a  named archive.tar.gz,
v(verbosely) list all the files it adds to the archive.

2/
Decompress and unpack the archive into the current director:

tar -zxvf archive.tar.gz

2015/09/01

Polish characters in HTML encoding

Polish characters in HTML encoding:
Ą - Ą
ą - ą
Ć - Ć
ć - ć
Ę - Ę
ę - ę
Ł - Ł
ł - ł
Ń - Ń
ń - ń
Ó - Ó
ó - ó
Ś - Ś
ś - ś
Ż - Ż
ż - ż
Ź - Ź
ź - ź
Source: http://unicode-table.com/

2015/07/24

C# WebBrowser control - document does not contain html input control

Working solution is here: http://stackoverflow.com/a/22262976/991058 Another solutions is to invoke java sript functions from code behind that operates on html elements and return result to code behind.

2015/04/24

How to zip unzip directory in Linux ?

Pack:
tar -zcvf archive.tar.gz directory/

c - create an archive from files in directory (recursive by default)
z - compress above archive with gzip
f - store the output as a file
v - list all the files

Unpack:
tar -zxvf archive.tar.gz

2015/02/24