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
To run emacs, just type emacs filename where filename is the file you want to edit. On PowerPC desktop or any workstations with X windows, you may want to put the emacs session into background so that you can still use the current xterm window, just type emacs filename & Once you […]
Devamını Oku
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
Ö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: 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 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
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
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
Ö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 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