Ahmad Khayyat

Results 10 comments of Ahmad Khayyat

Thanks for your interest and willingness to contribute, @peterdesmet. A curious question: would simply specially handling the `index` slug solve your problem? So, whenever the slug is `index`, the slug...

``` python # pipe.py import errno try: for i in range(1000000): print(i) except IOError as e: if e.errno == errno.EPIPE: pass ``` Then, I can press `q` in less with...

Terraform seems to be able to create an identity domain (https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/identity_domain), but I can't find a way to create a user in any domain other than the default domain: there...

> Hi, you should probably pass the actual S3 bucket name instead of ``? I am. `` is just a placeholder in this issue description.

I managed to get social login working using knox tokens (no sessions) with the help of [django-rest-social-auth](https://github.com/st4lk/django-rest-social-auth): ```py3 urlpatterns = [ path( "login//", djoser.social.views.ProviderAuthView.as_view(http_method_names=["get"]), name="begin", ), path( "complete//", rest_social_auth.views.SocialKnoxOnlyAuthView.as_view(http_method_names=["post"]), name="complete",...

I got *disconnecting* social accounts to work by looking at how [django-rest-social-auth](https://github.com/st4lk/django-rest-social-auth) did the authentication, and ended up with the following working implementation: ```py3 # urls.py urlpatterns = [ ......

So I managed to get social authentication to work with knox tokens without session authentication **and without [django-rest-social-auth](https://github.com/st4lk/django-rest-social-auth)** as follows: ```py3 # urls.py ... path("complete//", views.CompleteView.as_view(), name="complete"), ... ``` ```py3...

Right. That makes sense when the email is changed. But a user may be updated without changing their email. In fact, in my case, email is the username. So, changing...

I would suggest one of two things: 1. Remove the sending-email behavior altogether from the user update action, since the activation email wording does not really describe the change anyway,...

https://entkit.com/ ![entkit](https://github.com/entkit/entkit/assets/574774/10a01008-1d1a-4728-a750-c4bafe419594)