Michael Pacheco

Results 18 issues of Michael Pacheco

Personally I found the smart pointer topic hardest than others to absorb. I think if I had more exercises, I would understand the concepts quickly. It would be nice if...

I'm using typescript and I need to change `this.$auth.user` to correct type. It's default typed as `Record | null` from `@nuxtjs/auth-next/dist/index.d.ts`. How can I overwrite this type definition? I tried...

enhancement

### 🚀 Feature request Implement a `calledTimesWith` matcher to match how many times a function was called with a given argument (or set of arguments). ### Motivation Today it is...

I'm sorry if I'm wrongly using this method I'm trying to define a utility QuerySet like: ```py from mongoengine import QuerySet class CommonQuerySet(QuerySet): def update_by_id_or_raise(self, document_id, fields: dict): updated_document =...

When are you planning to release the current main branch with support to Jinja2 v3.x.x?

I'm trying to access my axios plugin from the store but the intellisense is not showing the plugin instances. It worked for my vue components. I followed these articles https://axios.nuxtjs.org/extend...

I tried to define an action like this ```ts @Action async performRequest(r: () => Promise): Promise { let response: any | null = null try { this.setLoading(true) response = await...

I got myself losing tons of hours trying to track a bug in my app to discover that `nuxt-property-decorator` does not accept a getter named "loading". ```vue {{ loading }}...

I'm trying to access data in my store inside my component, but the getter is being called before the `created()` method lifecycle hook and this is causing the problem `TypeError:...

In this example you have used a cluster with one single VM. Is there a way to use NFS with more than one VM? Because after some search I have...