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 […]
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, […]
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
Temiz Kod (Clean Code) sanal sınıf eğitimi. Eğitmen: Akin Kaldiroglu
Devamını Oku
This repo includes many samples and tutorials https://github.com/Solido/awesome-flutter
Devamını Oku