Onur Özgür ÖZKAN

Php, Ruby, Kebab, Git Geek

WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

The solution is

1
ssh-keygen -f "/home/user_name/.ssh/known_hosts" -R xx.xx.xx.xx

Don’t forget to change these variables at bash command. user_name is your linux user name. xx.xx.xx.xx is your remote server IP.

Best Regards

Text and String at Ruby

First of all, remember that everything are object at ruby.

1
2
3
4
puts "Hello, world!".class

# Output
# String

Develop a Simple Installer for Kebab Project on PHP CLI - II

Last post, i introduced Kebab Project Installer on PHP CLI. First of all i want to say that i changed some codes because i was writing the code when i was writing the post in the same time. This morning i coded review and improve the codes. First of all i want to say that you can improve the codes, you can add new repository from git. But these codes are for trial not for products. If you want to use them at products, please first test them. We will start a project for Kebab Installer. You can find more codes and examples there.

Git Tagging

Most VCS has the ability to ‘tag’ specific points in history. Generally people use this to mark release point (‘v0.1.0.dev1). I try to show you some tagging command here.