Blog
Mostly work topics
-
Adding Resharper Code Quality Analysis to TFS/VSTS
To improve code qulaity of your project is't good to check every build with some analyzing tool such as Resharper Code Quality Analysis. Install Resharper Code Quality Analysis Now you have to…December 6, 2017 -
Allow ssh password authentication
1. Connect to the server and check ssh properties: sudo nano /etc/ssh/sshd_config # Change to no to disable tunnelled clear text passwords PasswordAuthentication yes PasswordAuthentication should be set to yes. 2. Now…December 5, 2017 -
Create admin user in ubuntu linux
1. Login as super user: sudo su 2. Run the following command: adduser username Don't forget to replace username with the name of user that you want to create. 3. Add the user to…December 5, 2017 -
Reset password and give admin rights to redmine account
First of all run mysql: mysql --user=root --password=your_password You can find your connection parameters in {your redmine folder}/htdocs/config/database If credentials are correct you will see hello message from MySql console: Now you…November 10, 2017 -
How to generate and copy SSH key in Mac OS
Generate SSH key First of all, open terminal window. I personally use iTerm2. To generate SSH keys , enter the following command in the Terminal window: ssh-keygen -t rsa You will need…July 10, 2017 -
Compare Azure virtual machine pricing across different regions
Sometimes it doesn't matter where to place virtual machine, so you just need to find the best price. I prefer to use Microsoft Azure for my projects, so I can place VM…June 21, 2017 -
Migrate from tfs to git
First of all download git-tfs from there: http://git-tfs.com Right click on My Computer -> Properties -> Advanced system settings -> Environment variables -> System variables -> Path Add ;C:\TfsMigration\GitTfs-0.25.1 to the end of…May 18, 2017 -
Highlight overdue issues in redmine
To higlight overdue issues in redmine, add following styles to your application.css file: tr.issue.overdue td.id a, tr.issue.overdue td.subject a, .issue.overdue td.due-date { color: #f00; } tr.private td.subject a:before { content: ''; display:…May 15, 2017 -
Cron task for handling email in redmine
Go to redmine folder and copy use_redmine file: cp use_redmine proceed_mail Edit new document: nano ./proceed_mail Replace text with following (put your variables): #!/bin/bash . /opt/redmine-3.3.2-2/scripts/setenv.sh rake -f /opt/redmine-3.3.2-2/apps/redmine/htdocs/Rakefile redmine:email:receive_imap RAILS_ENV="production" host=mail_server…April 17, 2017 -
Add event log source in Windows
Run powershell as Administrator and run following command: New-EventLog -Source "TestApi" -LogName "Application"March 29, 2017
Loading posts...