Tinker

12 posts
Build a Simple CRUD API Using FastAPI (Python)
members

Build a Simple CRUD API Using FastAPI (Python)

Here is how to create a basic CRUD (Create, Read, Update, Delete) API using FastAPI with in-memory storage (no database required for now). Main targetCreate a simple app with FastAPI to manage a list
Tinker
GraphQL vs REST API: What’s their difference?
members

GraphQL vs REST API: What’s their difference?

APIs are the backbone of modern web and mobile applications, enabling communication between frontend and backend systems. Two major approaches to building APIs are REST (Representational State Transfe
Tinker
Astro: Build Performance-Focused Static Websites with Islands Architecture
members

Astro: Build Performance-Focused Static Websites with Islands Architecture

Astro is a modern web framework that flips this paradigm by focusing on performance-first static site generation, enhanced with Island Architecture. It lets you build fast websites using your favorite
Tinker
Sample DDD structure in C#.NET
members

Sample DDD structure in C#.NET

Domain-Driven Design (DDD) is an approach to software development that emphasizes the importance of understanding the business domain and incorporating that understanding into the software design. DDD
Tinker
Spring Boot and Spring MVC
members

Spring Boot and Spring MVC

Spring FrameworkSpring is an open-source framework developed based on the Java platform, designed to simplify the building and development of enterprise Java applications. It provides a comprehensive
Tinker
Sample VueJS Frontend and C# Backend to Heroku
members

Sample VueJS Frontend and C# Backend to Heroku

VueJS FrontEnd Let's create a basic Vue.js app using the Vue CLI. If you haven't installed the Vue CLI, you can do so by running the following commands (choose one) npm install -g @vue/cli # yarn g
Tinker
Differences between VueJS 2 and VueJS 3
members

Differences between VueJS 2 and VueJS 3

Vue.js 3 introduced several significant improvements and changes compared to Vue.js 2. Here are some key differences: Composition API: Vue.js 2: Relies on Options API where data, methods, computed pro
Tinker
Unit test React JS with Jest - Step by Step
members

Unit test React JS with Jest - Step by Step

Unit testing in React with Jest is a common practice to ensure the reliability and correctness of your components. Jest is a JavaScript testing framework that works seamlessly with React applications.
Tinker
Useful tips when developing Ruby apps
members

Useful tips when developing Ruby apps

Hi everyone, bellow are some advises for developers developing Ruby / Rails apps for newbie. Avoid too much logic in controllers From my view, Ruby is mainly focus on MVC, and one common mistake that
Tinker
New major features in Vue 3
members

New major features in Vue 3

Vue 3.0.0 was officially released as a major release. It introduced many new features such as: Composition APITeleportFragmentsComponent Option EmissioncreateRenderer API from @vue/runtime-coreSFC Com
Tinker