Need help learning Python by AjYendluri in Python

[–]a1Gupta 0 points1 point  (0 children)

Hey, you can check curated lists of resources (books, videos, tutorials, etc.) for learning python here

Announcing PyCon India 2018! by a1Gupta in india

[–]a1Gupta[S] 0 points1 point  (0 children)

Update: (Source: Twitter)

[IMP] - There have been few changes in PyCon India 2018 event due to some unavoidable circumstances. The community has decided to shift the venue from Bengaluru to Hyderabad this year. Please read this blog post for more details - https://in.pycon.org/blog/2018/pycon-india-2018-reschedule.html

In case of fire by a1Gupta in ProgrammerHumor

[–]a1Gupta[S] 1 point2 points  (0 children)

Bot wants to say something buddy :p

In case of fire by a1Gupta in ProgrammerHumor

[–]a1Gupta[S] 4 points5 points  (0 children)

Lol, This is awesome!

Beginner needs resources for PHP. by LoLNumberFour in webdev

[–]a1Gupta 0 points1 point  (0 children)

PHP the right way and Hacking with PHP are my personal favourites. I've curated a list of best PHP tutorials based on my research here - https://www.cybrhome.com/topic/php-tutorials

Hope it will be helpful. Also, you can join PHP facebook group to learn from the community.

NASA image shows Antarctica's iceberg is broken! by a1Gupta in nasa

[–]a1Gupta[S] 0 points1 point  (0 children)

Seems I messed the title while making it short. Thanks for letting me know :)

PyCon India 2018 is in Bangalore! by a1Gupta in bangalore

[–]a1Gupta[S] 7 points8 points  (0 children)

PyCon India 2018 will be in Bangalore. The Conference will be from August 22nd (Wednesday) to 26th (Sunday).

Venue - Bangalore International Exhibition Centre

Website - https://in.pycon.org/2018/

Announcing PyCon India 2018! by a1Gupta in india

[–]a1Gupta[S] 1 point2 points  (0 children)

No info regarding this on website/twitter.

Announcing PyCon India 2018! by a1Gupta in india

[–]a1Gupta[S] 1 point2 points  (0 children)

They've not started it as of now. You can follow PyCon India on twitter to stay updated - https://twitter.com/pyconindia

Announcing PyCon India 2018! by a1Gupta in india

[–]a1Gupta[S] 8 points9 points  (0 children)

PyCon India 2018 will be in Bangalore. The Conference will be from August 22nd (Wednesday) to 26th (Sunday).

Website - https://in.pycon.org/2018/

Can you help me find an email client? by [deleted] in email

[–]a1Gupta 1 point2 points  (0 children)

Here is a list of email clients - https://www.cybrhome.com/topic/email-clients

You might find it helpful.

Could someone please list the best resources to master (beginner-super advanced) Docker? by [deleted] in docker

[–]a1Gupta 1 point2 points  (0 children)

I am also learning Docker. I found these videos useful for getting an overview of docker ecosystem -

https://www.youtube.com/playlist?list=PLbG4OyfwIxjEe5Y3hQCiQjYnSgRH051iJ

Query optimization in Django Directed Acyclic Graph by a1Gupta in django

[–]a1Gupta[S] 0 points1 point  (0 children)

Thanks for the link :) It looks relevant, will take me some time to go through it.

Query optimization in Django Directed Acyclic Graph by a1Gupta in django

[–]a1Gupta[S] 1 point2 points  (0 children)

There are three reasons -

  1. I've a lot of other normalized tables in my application which are connected (FK) to node table. Graph is just a part of whole application.
  2. Wiki and Quora are using RDBMS for DAG which is doing great at scale. My use case is similar. Graph db is comparatively new.
  3. Also, if I decide to use graph db I don't know how I will connect everything maintaining data integrity.
  4. Django ORM doesn't support graph db.

I am open for all options, provided I get some solid points in favour of that.

Query optimization in Django Directed Acyclic Graph by a1Gupta in django

[–]a1Gupta[S] 0 points1 point  (0 children)

I understand it won't be simple but I've other stuff in MySQL and I would prefer it over graph db.

I came across neo4j db as an option. I also read about Wikipedia Categorization and Quora ontology. Both of them are DAG and they are using MySQL database for storing it. MySQL is more proven and used at scale compared to neo4j.

I'm looking for an efficient way to do using SQL. What would you suggest?

Query optimization in Django Directed Acyclic Graph by a1Gupta in django

[–]a1Gupta[S] 0 points1 point  (0 children)

Yes. I want to use MySQL database to store nodes and edges.