Amanbolat

Results 14 comments of Amanbolat

I think there is no need to use semaphores for that. When we need max concurrency set it is better to fail fast and create back pressure, rather than have...

I have encountered the same problem. There is my solution: ```go val := jsoniter.Get(b, "some_field") err := val.LastError() if err != nil { return fmt.Errorf("failed to unmarshal, %s", err) }...

I had the same problem, so I found a plugin that solves the problem. [lukasgeiter/mkdocs-awesome-pages-plugin](https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin) After installing the plugin I added the `.pages` file inside the `docs` folder with content:...

If you use `aos` in vuepress project you should put in Layout.vue(or any other layout file), not in enhanceApp.js. ``` mounted() { setTimeout(() => { Aos.init({ duration: 1000 }) },...

@twsouthwick Hi there. I've wanted to open new issue here but it might be not appropriate, so let me ask my question here. Is there any approach to get `depth`,...

@go-jet Wouldn't it be better to expose all the internal APIs? If I understand it correctly, doing so would enable the users of this library to write their own implementations...

The same issue happens to me on my MacBook with M2 Pro chip. Rancher Desktop Version : 1.11.1 Mac version : 13.5

@deepmap-marcinr Hi, Would it be an option to introduce an extended property such as `x-go-non-pointer` to make a filed with this tag presented as non-pointer in go code?

Hi @go-jet. Let's say I generated a code for the table `users`: ```go type usersTable struct { postgres.Table //Columns ID postgres.ColumnString Name postgres.ColumnString AllColumns postgres.ColumnList MutableColumns postgres.ColumnList //Indexes UserNameKeyIndex postgres.Index...

In my opinion, `go-jet` is mainly a tool for building SQL queries, and migration should not be seen as one of its features.