Close

(02) Software, Yazılım

It is all about software applications and software development.

“Silence is golden” – normal or security problem?

"Silence is golden" – normal or security problem?

When you use a file manager to explore your WordPress site, you may  find some index.php files that surprised you in a directory like /wp-content.  Let’s take a look at that index.php file. <?php //Silence is golden. Developers place an empty index.php in directories like /wp-content to restrict access to your site’s directories and […]

Devamını Oku

MACOS için EMACS kurmak

MACOS için EMACS kurmak

GNU Emacs hafif ve kullanışlı bir editördür. Özellikle az kaynak kaldığında hayat kurtarıcı oluyor. MAC için EMACS ‘ı kurmak basittir. $ brew cask install emacs Ben Flutter için LSP-DART’ ı kurarak EMACS’ ı Flutter için kullanıyorum. LSP-DART için https://emacs-lsp.github.io/lsp-dart/ EMACS ‘ın sitesi https://www.gnu.org/savannah-checkouts/gnu/emacs/emacs.html

Devamını Oku

MACOS Üzerinde PATH Eklemek

MacOS, MacOSX

Öncelikle terminalimizi kontrol ediyoruz.  echo $SHELL Default olarak BASH terminal kullanılıyor. BASH kullanıyorsak $HOME/.bash_profile  ya da  $HOME/.bashrc. dosyasını değiştirmemiz gerekiyor. Z-SHELL terminal kullanılıyorsa $HOME/.zshrc. dosyasını değiştireceğiz. örnek bir içerik şu şekilde olabilir. export PATH=$PATH:”/Users/ozgurozkok/flutter/bin” Değişiklik yapılınca yeni terminal pencerelerinde bu PATH geçerli olacaktır. Yeni terminal penceresi açarak ile doğrulayabilirsiniz. Örneğin […]

Devamını Oku

Machine Learning for Chatbots

Machine Learning for Chatbots

Machine Learning for Chatbots: Definition, Processes, and Use Contexts Machine learning technology is increasingly being used for chatbots. To understand how machine learning is used in the development of chatbots, it is essential to understand the different chatbots and how machine learning technology can make chatbot communication more intelligent and […]

Devamını Oku

HIBERNATE Nedir?

Java, Spring, Hibernate

Hibernate bir ORM kütüphanesidir.  Hibernate ana görev olarak; verinin ilişkisel veri tabanları üzerine (CRUD işlemleri) kaydedilmesi, güncellenmesi, silinmesi ve sorgulanmasını sağlar.  Hibernate ORM kullanılarak, veritabanı işlemleri soyutlanıp bir alt katmanda gerçekleşebilir.  Hibernate kendi “native API” sine ek olarak JPA spesifikasyonuna da bir gerçekleme sağlamaktadır.

Devamını Oku

Exploring AWS Timestream for Time-Series Data Management

Exploring AWS Timestream for Time-Series Data Management

Amazon Timestream is a fast, scalable, serverless time series database service for IoT and operational applications. Timestream makes it easy to store and analyze trillions of events per day up to 1,000 times faster and at as little as 1/10th the cost of relational databases. It saves you time and […]

Devamını Oku

Facebook never wanted to host your app: The real reasons it shut down Parse

Parse Platform

Many years ago, My first android applications were using the Parse Cloud Platform. These applications used in 14 countries for B2B data collection without any interruption. I wanted to share a review of Parse’s shut down the story. Fast Company named Parse one of the top 50 most innovative companies of […]

Devamını Oku

PYCHARM ‘da PIP ve PIPENV Konfigüre etmek

PYCHARM ‘da PIP ve PIPENV Konfigüre etmek

Öncelikle Python yüklü mü diye bakıyoruz 🙂 python —version Pip ‘ı kontrol ediyoruz pip —version Homebrew ile pipenv’ i k”uracağız. brew install pipenv Pycharm’ a giriyoruz. PyCharm > preferences > project > project interpreter  bölümüne geliyoruz Project interpreter combosuna basıyoruz.  SHOW ALL Sonrasında + işaretine basarak PIPENV seçiyoruz.  Kullanılan ortam […]

Devamını Oku

Sigmoid Fonksiyonu Nedir?

Sigmoid Fonksiyonu Nedir?

Sigmoid fonksiyonunu, özellikle öğrenme algoritmalarında iterasyon için kullanıyoruz. Ardışık kullanımda sonucu 1′ e yakınsar. Python örneklerinde bol bol kullanıyoruz. Örnek bir kod aşağıdaki gibi olabilir. def nonlin(x): return 1 / (1 + np.exp(-x))

Devamını Oku