Close

Sample Covid-19 Application

Flutter

Nice clean COVID-19 app UI by using Flutter We design two pages on the home page you gonna see all statistics like how many totals affected, total recovery, total death at the bottom how you can prevent them with a hotline number if you fall sick, and face any COVID-19 symptoms just make a call. […]

Devamını Oku

Bye-bye Python. Hello Julia!

Bye-bye Python. Hello Julia!

Don’t get me wrong. A rock-solid community of computer scientists, data scientists, and AI specialists still backs python’s popularity. But if you’ve ever been at a dinner table with these people, you also know how much they rant about the weaknesses of Python. From being slow to requiring excessive testing to producing runtime errors despite […]

Devamını Oku

DevOps Stack

DevOps Stack

I am sharing a sample and full DevOps Stack by Simon Reymann Our whole DevOps stack consists of the following tools: The main reason we have chosen Kubernetes over Docker Swarm is related to the following artifacts: for the original post and comments please visit https://stackshare.io/zimoony/decisions/104069607668616391 and my StackShare profile is https://stackshare.io/ozgurozkok

Devamını Oku

How to Set up a Cloud Kitchen Virtual Restaurant

How to Set up a Cloud Kitchen Virtual Restaurant

Ghost kitchens: keep a keen eye on emerging trends and I predict that soon all our delivery food is going to be made in virtual restaurants utilizing cloud kitchens And when the times change, new business opportunities arise. Oh, how I love new business opportunities! So get ahead of the curve and check out today’s […]

Devamını Oku

Virtual Machine ve Docker Container Sistemlerinin Tanıtımı

Virtual Machine vs Docker Containers

Virtual Machine (Sanal Makine) kendi bilgisayarımızda başka bilgisayarları sanal olarak çalıştırmamıza olanak sağlayan bir yazılımdır.   Yazılımcılar için sanal makineler yaşamı kolaylaştırıcı araçlardandır.  Kişisel olarak bir MacBook kullanıyorum.  Bilgisayarıma kurulu windows ve linux sanal makineleri sayesinde bu işletim sistemlerini de sorunsuz kullanabiliyorum.  Bu yazıda VM teknolojisini derinlemesine incelemeyeceğim.  Sanallaştırma işi hypervisor adı verilen bir teknoloji […]

Devamını Oku

Temel Git Komutları

Git, Github

Git kullanımını adım adım Git Derslerimizde anlatıyoruz. Derslerin yanında temel komutları burada da listelemek istedim.  git config ‘git config’; kullanıcı adı, mail, dosya formatları gibi genel ayarların yapılmasını sağlar.  git config –global user.name “kullanıcı.adınız” git config –global user.email kullaniciEPostaniz git init Bu komut, bulunduğunuz dizini bir Git dizini haline getirir. Git dizinlerine Repository adı verilir.  Git dizini altında .git […]

Devamını Oku

GIT CONFLICTS ve Çakışmaların Çözümü (4)

GIT CONFLICTS ve Çakışmaların Çözümü (4)

GİT kullanımında branch kullanımı ve farklı branch larda bulunan geliştirmelerin birleştirilmesini gördük.  Günlük hayatta aynı branch üzerinde aynı dosyanın değiştirilmesi sık olmasa dahi karşılacağınız bir durumdur.   Bununla ilgili bir örnek dizisi yapalım.  Bu konunun adı CONFLICTS olarak geçmektedir.   öncelikle durumu kontrol edelim.  ozgur-MacBook-Pro:gitsample ozgurozkok$ git status On branch master nothing to commit, working […]

Devamını Oku