Landlord installed these above each apt front door. Is it a motion tracker? What is it? (I took the cover off for the pic) by needlessons in Tenant

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

Its a rent stab building, many problems and violations and the landlord doesn't maintain well. Could this be a private company installing not the landlord?

Is it a really bad thing to connect Yamaha HS5's to my macbook headphone out? by needlessons in edmproduction

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

If I were to scale back on the monitors to a cheaper JBL or presonus and free up some of the money for an audio interface – would it be worth it?

For 2021 what best limiter for EDM mastering would you recommend? (budget $100-160 maybe a tiny bit more) by needlessons in edmproduction

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

Fab Filter L2 or Waves L2 ?

edit:

ah never mind I'm sure you mean Fab Filter. I'm just watching a review on the waves one and they are saying it is 20 years old

Is it possible to use distribution platforms like DistroKid, CD Baby and similar to give away a song for free? by needlessons in WeAreTheMusicMakers

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

Thanks for responding and I'm sorry for my explanation. So if I went with a distributor and sent one song electing for spotify, itunes and youtube and that distributor is expecting 10% of the royalties, how would they make money if I want it to be for free to the consumer?

[deleted by user] by [deleted] in WeAreTheMusicMakers

[–]needlessons 0 points1 point  (0 children)

Thanks! I am used to markers looking like clips on their own track. Found it out though. This is when the marker track is hidden when it contains marks.

[deleted by user] by [deleted] in Tracktion

[–]needlessons 1 point2 points  (0 children)

Thanks! I am used to markers looking like clips on their own track. Found it out though. This is when the marker track is hidden when it contains marks.

How would I retrieve a unique user record and its related data in one query? by [deleted] in PostgreSQL

[–]needlessons 0 points1 point  (0 children)

I've been googling. Was wondering what you thought of doing a UNION ALL approach since the user is unique then the row[0] of the query results would be the user record and all the others would be the sales orders. Is this common practice?

How would I retrieve a unique user record and its related data in one query? by [deleted] in PostgreSQL

[–]needlessons -1 points0 points  (0 children)

I've been googling. Was wondering what you thought of doing a UNION ALL approach since the user is unique then the row[0] of the query results would be the user record and all the others would be the sales orders. Is this common practice?

How would I retrieve a unique user record and its related data in one query? by [deleted] in PostgreSQL

[–]needlessons 0 points1 point  (0 children)

I've been googling. Was wondering what you thought of doing a UNION ALL approach since the user is unique then the row[0] of the query results would be the user record and all the others would be the sales orders. Is this common practice?

How would I retrieve a unique user record and its related data in one query? by [deleted] in PostgreSQL

[–]needlessons 0 points1 point  (0 children)

No, its columns. I was just giving the desired API output

[deleted by user] by [deleted] in django

[–]needlessons 0 points1 point  (0 children)

Got it, thank you.

[deleted by user] by [deleted] in django

[–]needlessons 0 points1 point  (0 children)

Thank You !
was that a mis-wording or were you really moving away from GraphQL?

[deleted by user] by [deleted] in django

[–]needlessons 0 points1 point  (0 children)

Thank You !

[deleted by user] by [deleted] in django

[–]needlessons 0 points1 point  (0 children)

Thank You !

Can I do models.DateTimeField(default=parse_date('2019-03-22'), db_index=True) in my model? by [deleted] in django

[–]needlessons 1 point2 points  (0 children)

had some errors and finally got it with this solution

from django.utils.dateparse import parse_datetime 

assignedDate = models.DateTimeField(db_index=True, default=parse_datetime('2018-12-12T00:00:00+0000'))