Saifullah Shahen

Results 7 issues of Saifullah Shahen

I am using Gofiber. But I cannot understand how to use Socket.io in Gofiber. Is it possible to use Socket.io with GoFiber?

I am working with GoFiber. I feel comfortable seeing this WebSocket framework. Can I use this in my GoFiber application?

example

After adding TodoList and TodoItem in nuxt project. it shows an error named "TypeError: Class constructor Node cannot be invoked without 'new'" my code: ``` Loading... // import the component...

Hi i am using primevue2 by nuxt V.2. ``` ``` ``` items: [ { label: 'Profile', icon: 'pi pi-user', to: '/user/profile' }, { label: 'Checkout', icon: 'pi pi-shopping-cart', to: '/user/checkout'...

vue2
pending-review

@nuxtjs/vuetify is the popular ui for nuxt. is it comfortable/ when it will comfortable?

DJango 4.1 djangorestframework==3.14.0 ``` models.py class Category(PreModel): name = models.CharField(max_length=255) slug = models.SlugField(blank=True) image = models.ImageField(null=True, blank=True) parent = models.ForeignKey('self', related_name='get_category_children', on_delete=models.CASCADE, null=True, blank=True) def __str__(self): return self.name ``` ```...

We can use ``` PersonPrimaryKeyRelatedField = functools.partial(serializers.PrimaryKeyRelatedField, allow_null=True, allow_empty=True, pk_field=ULIDField(), queryset=ShopCategory.objects.all()) ``` But i want to use SlugRelatedField instant PrimaryKeyRelatedField. But in slugrelatedfield i need to pass slug_field but i...