I use Amazon as a cloud service in my new Java/Kotlin projects. I couldn’t easily find a complete list of AWS modules. I was able to create this shortlist as a result of the reviews. Compute EC2 Virtual Private Servers Lightsail Amazon’s hosting provider (VPS, DNS, storage) Lambda Functions you can run tasks in […]
Devamını Oku
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, so you can upgrade/downgrade TeamCity […]
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 until after Dolbear’s publication. Dolbear […]
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 to create a scroll view, […]
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. I will focus more on […]
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 much and where to limit […]
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ı Integer 32 bitlik integer değişkenleri […]
Devamını Oku