Posted on September 10, 2020, by Maria Kudryavtseva The new TeamCity update is ready. In version 2020.1.4, we focused on fixing bugs and improving TeamCity’s performance and usability. See the complete list of 40+ resolved issues in our release notes. As with any bugfix update, 2020.1.4 shares the data format with other 2020.1.x releases, […]
Devamını Oku
Bilgi Teknolojileri ve İletişim Kurumu’ nun kripto paralar hakkında ki değerli raporunu paylaşıyorum.
Devamını Oku
Dolbear’s law states the relationship between the air temperature and the rate at which crickets chirp. It was formulated by Amos Dolbear and published in 1897 in an article called “The Cricket as a Thermometer”.Dolbear’s observations on the relation between chirp rate and temperature were preceded by an 1881 report by Margarette W. Brooks, although this paper went unnoticed […]
Devamını Oku
Softmax fonksiyonu çoklu sınıflandırma problemleri için kullanılır. Verilen her bir girdinin bir sınıfa ait olma olasılığını gösteren [0,1] arası çıktılar üretmektedir. Python implemantasyonu aşağıdaki gibi olabilir. #softmax functiondef softmax(X): expo = np.exp(X) expo_sum = np.sum(np.exp(X)) return expo/expo_sum
Devamını Oku
A sample shopping app with nine pages. source code is on the https://github.com/kaushikchandru/ironshop
Devamını Oku
In this tutorial, I will show you how to make this simple but pretty, Amazon Clone App UI, Of course, we are not going to build a full app with a backend service, payment method and all those things. we will only focus on the UI. we will see how […]
Devamını Oku
I found two helpful articles on Medium. Do you need simple layout samples for Flutter?I present to you my set of Flutter layout code snippets. I will keep it short, sweet, and simple with loads of visual examples.Still, it is work in progress — the catalogue of samples will grow. […]
Devamını Oku
Welcome to our comprehensive list of Docker best practices exemplified under Node.js. Note that every bullet has a link to detailed information and code examples. The entire list can be found in our repository Node.js Best Practices. It covers the basics but goes all the way to strategic decisions like how […]
Devamını Oku
JAVA ‘da int ve Integer Arasındaki Farklar Nedir? JAVA Integer sayıları saklamak için iki yöntem sağlar. İnt ya da Integer aynı büyüklükteki sayıları saklar. İnt kullanımı Basit olarak 32 bit ilk hafıza bloğunda integer değişlenleri saklar. İnt değişkenleri doğrudan işlemlerde kullanabiliriz. İnt ‘i basit casting işlemleri ile kullanabilirsiniz. Integer Kullanımı […]
Devamını Oku
Türkiye Karekod İlke ve Kuralları Hakkında Basın Duyurusu Türkiye Cumhuriyet Merkez Bankası (TCMB), ülkemiz ödemeler altyapısının yenilikçi iş yapış yöntemlerini destekleyecek çalışmalar kapsamında Türkiye’nin kendi ulusal karekod standartlarını oluşturmuştur. “TR Karekod” olarak isimlendirilen ulusal karekod ilke ve kuralları ile ülkemizde perakende ödemelerde karekod kullanımının artması, ödemelerin daha kolay, verimli ve […]
Devamını Oku