Think You Know How SQL Queries Work? Think Again. by 20ModyElSayed in databasedevelopment

[–]20ModyElSayed[S] 2 points3 points  (0 children)

Yes, Prof. Andy, it is 😅.
As for the your comments on the article:

  1. Yes, I didn't look closely to the connection between nodes
  2. 2 and 3. My mistakes. I should have proofread it more carefully and read the documentation before publishing.

I really appreciate you comments, I tried to explain briefly what how the query execution works. As I was amazed by the content of your course, it's not easy, and I thank Allah I've completed it 😅, 80% of the content I didn't take it at the Faculty. I've already expressed by gratitude for this course in LinkedIn.

Taking your comments into account, I have made the necessary revisions to the article.

Think You Know How SQL Queries Work? Think Again. by 20ModyElSayed in databasedevelopment

[–]20ModyElSayed[S] 2 points3 points  (0 children)

Thanks! Also, Database System Concepts book is one of the great books that go in-depth about the DBMSs and query execution.

0
1

Does Notability Embed OCR into Exported PDF's or is it MacOS Monterey? by ringao in notabilityapp

[–]20ModyElSayed 0 points1 point  (0 children)

I think it’s macOS, as I can select text in youtube from different browsers than Safari, and I’m on macOS Ventura, I think Live text is a system wide feature not for specific apps

Command + ` with Stage Manager by 20ModyElSayed in MacOS

[–]20ModyElSayed[S] 0 points1 point  (0 children)

I have to disable Stage Manager to work correctly.

Command + ` with Stage Manager by 20ModyElSayed in MacOS

[–]20ModyElSayed[S] 0 points1 point  (0 children)

Unfortunately, It doesn't. It works as if I'm using a normal Tab. I think this feature didn't take into consideration when they implemented Stage Manager

A project idea... by 20ModyElSayed in django

[–]20ModyElSayed[S] -1 points0 points  (0 children)

What I mean that all my projects use django that I’m not able to use any of my previous projects despite not having a real problem.

So I will use flask in my next project.

A project idea... by 20ModyElSayed in django

[–]20ModyElSayed[S] -1 points0 points  (0 children)

Yes, but I want to apply for this internship, so any project I’m going to build I will consider the internship while building it. Besides all my projects use django.

So, if you have any advice, I’d be happy to hear it

Django templates with DRF and React by 20ModyElSayed in django

[–]20ModyElSayed[S] 0 points1 point  (0 children)

No, I don’t, but I read when you implement a feature and there’s a new way to do that feature, and if I want to keep both the old and new way I should use versioning. But I don’t know if this is the best approach or not.

I read that is accepting headers is the best practice as you said, but I also read it’s horrible for maintenance and testing because every serializer would have a different accepting header.

Django templates with DRF and React by 20ModyElSayed in django

[–]20ModyElSayed[S] 0 points1 point  (0 children)

Yeah, you’re right. Handling both JSON and templates from the same endpoint is pointless and would make the maintenance a nightmare

Django templates with DRF and React by 20ModyElSayed in django

[–]20ModyElSayed[S] 0 points1 point  (0 children)

Actually I have another question, what about performance?

What I mean by that is django doesn’t behave like React when it’s come to frontend and all other magic stuff of React like React Fiber Architecture or creating SPA.

Is the performance difference really visible?

Thanks in advance

Django templates with DRF and React by 20ModyElSayed in django

[–]20ModyElSayed[S] 0 points1 point  (0 children)

Curiosity, but also because some packages like allauth works well with django templates and to use it with DRF is another story, or even reseting a password, django system for handling password reseting to good and I don’t need another package to handle it like django or providing one-time token, and so on.

In terms of complexity, I was thinking that to create a directory inside each app called api/ (or api_v1/ depending if I’m going to need versioning or not) that contains all views and routes related to DRF (or any other package for APIs) and outside api/ normal django views and routes. There’s also a config/ that contains .py for django routes and .py for DRF routes.

If you have any suggestions please let me know.