الوسم: django

  • فتح صندوق لوحة مفاتيح ميكانيكية

    فتح صندوق لوحة مفاتيح ميكانيكية

    السلام عليكم, فيديو قصير حول فتح صندوق لوحة مفاتيح ميكانيكية من Nuphy Studio.

  • تجربتي مع سوبابيس (منافس فايربيس) – Supabase

    تجربتي مع سوبابيس (منافس فايربيس) – Supabase

    السلام عليكم, اثناء عملي على احدى المنتجات احتجنا لخدمة توفر علينا الجهد والتكلفة في بناء باك ايند متخصص للمنتج, حيث احتجنا خدمة قواعد بيانات سريعة ورخيصة ويمكن التطوير عليها بشكل سريع جدا وتدعم اغلب المنصات التي تعمل عليها الخدمة الا وهي الويب ومنصتي الموبايل لكل من الاندرويد وIOS, وايضا تدعم الدفع من دول كالعراق ولذلك…

  • Get real id of item in Django and GraphQL

    Get real id of item in Django and GraphQL

    Hello, When you use graphql in django using graphen and when you utilize the relay and nodes, the query result of any item while have base64 representation of the id, You can fix that easily by subclassing from “relay.Node” and then just use the new class in the interface like in the code below: https://gist.github.com/ahmedalttai/6951af94d056a6b2966eccf7f9b0e6c2…

  • Using Django DateField with Apollo GraphQl in Android

    Using Django DateField with Apollo GraphQl in Android

    https://hashnode.com/post/using-django-datefield-with-apollo-graphql-in-android-ckrizgvo80p0ints19z0af9y8

  • Allow remote connection to PostgreSQL

    Hello, you can connect remotely to PostgreSQL either from remote cmd of from pgAdmin by making two simple steps: 1- As a super user, open /etc/postgresql/10/main/pg_hba.conf 2- Scroll down to the line that describes local socket connections. It may look like this: and add the following: 3- In the same directory, open postgresql.conf. Under the section on Connection Settings, add…

  • Auto complete foreignKey in Django

    Auto complete foreignKey in Django

    Hello, If you want to add autocomplete field or autocomplete search field in Django forms its pretty easy, there are a lot of existing packages that can help you with that, the one that we gonna use is: django-ajax-selects. Installation Activate your development environment and type the following command: pip install django-ajax-selects Usage After installing…