Natural language processing (NLP) is an exciting branch of artificial intelligence (AI) that allows machines to break down and understand human language. As a data scientist, I often use NLP techniques to interpret text data I’m working with for my analysis. During this tutorial, I plan to walk through text […]
Devamını Oku
Visual Studio Code (vscode) is a very popular, extensible open source coding editor that provides support for multiple programming languages via the Language Server Protocol (LSP). Java support is provided by the Eclipse jdt.ls server, implementing LSP. The combination of vscode and jdt.ls represents a refreshing perspective on the IDE […]
Devamını Oku
Zuul 2.0 is the latest iteration of the gateway application fronting Netflix’s API and underlying microservices. It was borne of a need to handle an ever-growing amount of traffic and a similarly ever-growing number of microservices to the front. We rebuilt Zuul from the ground up, leveraging the Netty framework […]
Devamını Oku
Python is a high-level programming language widely used for web development, scientific computing, data analysis, artificial intelligence, and many other applications. It is known for its simplicity, readability, and ease of use, making it a popular choice for beginners and experienced programmers. Flask is a web framework for Python designed […]
Devamını Oku
17 Ekim 2017 Wyndham Grand Levent Hotel’de “The World Runs on OpenStack”mottosuyla 3.sü gerçekleşen “OpenStack Days Turkey” etkinliği bu yıl da yoğun katılımcıyla gerçekleşti. OpenStack, ilk olarak 2010 yılında Amerikan Ulusal Uzay Ajansı (NASA) tarafından sağlanan hesaplama bileşeni Nova ve bulut servis sağlayıcısı Rackspace tarafından sağlanan depolama bileşeni Swift’in birleşmesi […]
Devamını Oku
REST API has no official standard because it is an architectural style. SOAP API, on the other hand, has an official standard because it is a protocol. REST APIs use multiple standards like HTTP, JSON, URL, and XML, while SOAP APIs are primarily based on HTTP and XML. REST allows more data formats, whereas SOAP only allows XML. Coupled with […]
Devamını Oku
What is Web service? What is API? What is REST API? How REST works Implementation of REST API A web service is a software system that supports interoperable machine-to-machine interaction over a network. It has an interface described in a machine-processable format (specifically WSDL). Other systems interact with the web […]
Devamını Oku
What is Swagger? The goal of Swagger™ aims to define a standard, language-agnostic interface to REST APIs that allows humans and computers to discover and understand the service’s capabilities without access to source code, documentation, or through network traffic inspection. When properly defined via Swagger, a consumer can understand and […]
Devamını Oku
Kubernetes (K8s) is an open-source container orchestration system for automating containerized applications’ deployment, scaling, and management. Google designed it. It is now maintained by the Cloud Native Computing Foundation (CNCF). Kubernetes provides a platform-agnostic way to manage containerized workloads and services, making running and scaling applications in various environments easier. […]
Devamını Oku
Apache Kafka is an open-source stream-processing software platform developed by the Apache Software Foundation, written in Scala and Java. The project aims to provide a unified, high-throughput, low-latency platform for real-time data feeds. It is horizontally scalable, fault-tolerant, and speedy. The core concepts of Kafka are: Some limitations of Kafka […]
Devamını Oku