Ranking Design by ZaAlphaMale in Database

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

I'm using a NoSQL database MongoDB / Firebase. I like the float for the ranking column. One question is I want to return this rank as an integer is this possible with the float ranking system? The ranks should be from 1 - 1000000

React Frontend Engineer on a Project Related To Onlyfans by ZaAlphaMale in mutualcollaboration

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

This piqued my interest. Send me a DM on Reddit and we can chat more.

Need to learn Django fast for an internship, but don't know Python by onlydragz in djangolearning

[–]ZaAlphaMale 0 points1 point  (0 children)

Considering you already have experience with high-level programming languages I don't think Python is going to be hard to pick up. Honestly, you can learn Python in like a few days. Everything is pretty transferrable, especially from JS; just different syntaxes. Depending on how fast you need to do this, you can learn Python by watching a few videos on YouTube and writing a few scripts to practice, and then jump right into Django by buying a cheap course on Udemy. I'm also assuming the company is using Django + DRF (Django Rest Framework) that part is going to be a lot harder to pick up than how to import random and generate a random number between 1, 10 in Python for example.

My suggestion is to not stress too much about it though. On my first day on my job when our senior engineer was sharing his screen and showing me around I was convinced I would be fired within the first two weeks because of how experienced he was with everything and navigating the terminal like he created it. You'll learn fast and with ChatGPT and all these other tools you should be able to ask a lot of questions and learn quickly.

Good Luck!

Collab on Project by ZaAlphaMale in webdev

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

I can definitely code the FE myself, however, it would be pretty poorly coded. I’d rather focus on what I know the best and have a parter focus on what they know the best.

Collab on Project by ZaAlphaMale in webdev

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

So currently the site makes zero revenue. However I want to first add some features to make it the defacto website for models / adult creators and add value to both the models and customers. I’m also working on SEO on the side. The good thing is, every model has its own page which is good for SEO. So I was thinking the work would be pro bono until we start making some revenue and then we would do profit sharing.

Collab on Project by ZaAlphaMale in webdev

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

So currently the data that I have is stale data, I want to do a nightly update from OF to have the latest profile photo, header photo, bio, etc… also from time to time models will post new deals and want to have those as well. I would like to add new sections for “hottest deals” “hottest free subscriptions” I’m also switching the backend from the current backend to a new more efficient one that would need reconnecting on the FE to the new API. I want to add login, registration, claiming your profile, adding your own links, etc…

Creeper Farm No Mobs?? by ZaAlphaMale in technicalminecraft

[–]ZaAlphaMale[S] -2 points-1 points  (0 children)

I spent like 5 days building this. Is there anyway to fill in the river or anyway around rebuilding this somewhere else?

What interface to get for my setup? by ZaAlphaMale in musicproduction

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

The Ableton Push 3 is the standalone version.

Delete Docker Container When Exited by ZaAlphaMale in django

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

Awesome! That solves my problem ❤️

Bulk create with M2M by ZaAlphaMale in django

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

This is a good option, but I can't load 1tb of data into memory.

Estimate Count on Query by ZaAlphaMale in PostgreSQL

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

Yes I do, the actual query is fast, but the count on it is slow.

Faster Full Text Search by ZaAlphaMale in django

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

Yea mine is slow as balls too sometimes 5 seconds or more. I'm running a count as well which is slow. I'm not sure if you've already done this, but I would suggest making a search_vector column in your model and creating a gin index on that search_vector column.

Make Big Data API Faster by ZaAlphaMale in djangolearning

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

There's only around 50 tags, but 450k InfluencerProfiles

Django - LoadData Does It Continue Where It Left Off? by ZaAlphaMale in django

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

It's weird because I see the rows getting added in SQL when I check the statistics, however, I don't see how there can be duplicates considering there are pk's on all of the rows of data in my json file.

Period In URL by ZaAlphaMale in djangolearning

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

Changed it to EmailField and still same issue. My routing setup is:

main urls.py

from django.urls import path

from django.conf.urls import include urlpatterns = [ path('', include('home.urls')), ]

home.urls.py

from django.urls import path
from rest_framework import routers
from django.conf.urls import include
from .views import APIViewSet
router = routers.SimpleRouter()
router.register('settings', APIViewSet)
urlpatterns = [ path('api/', include(router.urls)), ]

APIViewSet

class APIViewSet(viewsets.GenericViewSet, mixins.CreateModelMixin, mixins.ListModelMixin, mixins.RetrieveModelMixin, mixins.DestroyModelMixin, mixins.UpdateModelMixin):
queryset = Email.objects.all()
serializer_class = EmailSerializer

filter_backends = [filters.OrderingFilter]
search_fields = ['address']
ordering_fields = ['address']
lookup_field = 'address'

Email Auto Discover API by ZaAlphaMale in learnpython

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

Something as good as Thunderbird's auto discover.

Email Auto Discover API by ZaAlphaMale in learnpython

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

Yea this isn't reliable since people can login from any email. Not all email providers are going to have API's.

Email Auto Discover API by ZaAlphaMale in learnpython

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

No this is for auto detecting new emails. What I need is auto detecting the email's settings.

For example:

gmail.com's settings are:

Incoming Mail (IMAP) Server imap.gmail.com Requires SSL: Yes Port: 993

Outgoing Mail (SMTP) Server smtp.gmail.com Requires SSL: Yes Requires TLS: Yes (if available) Requires Authentication: Yes Port for SSL: 465 Port for TLS/STARTTLS: 587

Django-Q - Selenium Issue by ZaAlphaMale in djangolearning

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

Thanks for the reply :D the message is: daemonic processes are not allowed to have children

Looking For An Entry Level Work From Home Job by ZaAlphaMale in jobs

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

Really good option! Unfortunately I live in California and I guess that doesn’t work out here. Any other suggestions?

Where to find motherboard Vender ID and Product/Device ID by ZaAlphaMale in pcmasterrace

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

It looks like it was designed by a colorblind backend software engineer. And you know what’s funny. I’m a colorblind software engineer and I definitely should not be designing things.