jtuchel
jtuchel
Hi, I would like to know if there are any plans to overhaul the tutorial series taken from here https://github.com/sschmid/Entitas-CSharp#video-tutorials--unity-unite-talks Things might have changed (or not) but I'm missing a...
I'm using multiple external systems like dependabot, semantic-release-bot etc. and all of them come up with long commit messages. They violate the commit message rules by default so I should...
# Feature request **Package versions you currently use:** devexteme version: 21.2.5 devextreme-vue version: 21.2.5 **Description:** The `DxList` component provides a `noDataText` prop but no slot. It would be nice to...
# Bug Report **Package versions:** devexteme version: 21.2.5 devextreme-vue version: 21.2.5 **Steps to reproduce:** Based on https://js.devexpress.com/Documentation/Guide/Vue_Components/Add_DevExtreme_to_a_Vue_Application/#Install_DevExtreme - Create a new app  - Install the dependencies `npm install devextreme...
**Is your feature request related to a problem? Please describe.** There is no problem, it's just a nice to have feature **Describe the solution you'd like** _Based on the requirements...
## Description Based on the docs https://github.com/gin-gonic/gin#model-binding-and-validation I tried to use `context.BindJSON` instead of `c.ShouldBindJSON`. Unfortunately only `c.ShouldBindJSON` responds with the error message. ## How to reproduce ```go package main...
I created a new go project with the following workflow to play around ```yml name: Release on push on main branch on: push: branches: - 'main' jobs: release-on-push-on-main-branch: runs-on: ubuntu-latest...
I tried to setup a "download" button that should appear in the menu bar ```ts const downloadButton: MenuButtonItem = { onClick: saveDocumentToDisk, // icon: {}, // download icon text: "Save...
Related to #202 The "getting started" section explains how to implement a handler. And the samples show how to work with the library in larger projects. But I wasn't able...
Given this sample code ```go package main import ( "net/http" "github.com/go-chi/chi/v5" "github.com/go-chi/chi/v5/middleware" ) func main() { http.ListenAndServe(":3000", GetRouter()) } func GetRouter() *chi.Mux { apiRouter := chi.NewRouter() apiRouter.Route("/foo-group", func(fooGroupRouter chi.Router) {...