Ana içeriğe atla

Kayıtlar

Ağustos, 2016 tarihine ait yayınlar gösteriliyor

Entrepreneurship

Entrepreneurship is really hard life style evertime, but all the successful people lived this life to make it real their dream. While I am on my facebook timeline , I catched the nice video about entrepreneurship, then I wanted to share on my blog. Before share this video I want to share some of thing at my life experience. What is the entrepreneurship and why we need it ?  Entrepreneurship is a choice to live our life like a ordinary people or extraordinary people. What Ordinary People Do? :  Some of them have aim about their carrier and work to much for their personal developments and get success on bussiness life.Of course, It take some of time with collage,university,master degree programs and work experience.After that start to live their life as standart working day 8 hours then go home, sometimes have some of hobies as everyone but thats it. Others does not have any aim to get their life better, these people try to find some job to continue their life, these people d

TOBB Dünyaya Açılmak İsteyen Firmalara Destek için SOFT_AWAY Projesini Başlattı!

TOBB, dünyaya açılmak isteyen yazılım firmalarına destek olmak için amaçlı TOBB Türkiye Yazılım Meclisi ile birlikte SOFT_AWAY projesini başlattı. Proje kapsamında desteklenecek yazılım firmalarının dünyaya açılmak için gereksinim duydukları, danışmanlık ve yurtdışnda faliyet göstermek için harcayacakları para için %75'i Ekonomi Bakanlığınca karşılanacak. Eğer bilişim sektöründe ürününüze güveniyor ve küresel bir oyuncu olmak istiyorsanız SOFT_AWAY projesine başvurabilirsiniz. Bu kapsamda her projeniz için ayrı bir başvuru yapabilirsiniz.Başvuru formunda projenizin yeterince kapsamlı detaylarının bulunması diğer projeler arasında değerlendirilirken ciddi anlamda etkili olacaktır. Başvuru için : soft_away@tobb.org.tr adresine mail gönderebilirsiniz. Son başvuru tarihi : 31 Ekim 2016

Git Bash, commit, push and pull operations

Git is very populer version control system in various application for project teams.There are some application to manage git in visual applications such as tortoies git, etc. But usually people prefer to use git bash console screen to manage git operations, its very fastest way to use git. While you working on git ; Git Commit operation : 1.get the differences between server and local repositorie with following command. $ git status 2.With the following command line we can commit all the code showed at git status command. $ git commit -a -m " update reason text " 3.With the following command line we can send to server all the changes with our commit text. $ git push First time to commit our code :  sometimes when we run commit code, it can says that I don't know who you are please set configuration with your informations.If we get this message, we can easly use following line git config --global user.email " yourmail@domain.com " Git pull op