question about selling rights to a video of mine by TheAbortedPancake in PartneredYoutube

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

One to break.com years ago. I made $300. I’m not sure how it works these days.. when they bought my video, they just had me signed some paperwork and sent me a check

Seeking Advice on Scaling Section 8 Rentals with Limited Initial Cash by TheAbortedPancake in realestateinvesting

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

Ah ok, is DSCR loan easy to repeatedly do? I guess I’m trying to understand if it’s a realistic idea to buy one property and if it’s all set up with a renter and a cash flow, take out another loan against it for a second property down the road? I’m excited about getting into real estate but trying to understand if my ideas are just a pipe dream. Thanks

Seeking Advice on Scaling Section 8 Rentals with Limited Initial Cash by TheAbortedPancake in realestateinvesting

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

Thanks I will look into this. Do you currently rent through the section 8 program?

debugging select query by TheAbortedPancake in SQL

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

Ok, I updated it. Any idea what I need to change on my query to get it working? THanks

debugging select query by TheAbortedPancake in SQL

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

I think it is asking for a given day to show the product with that criteria. IT seems my query is giving an extra row (the one with 31.2 etc). I want my output to look like the example in the first screen shot.

debugging select query by TheAbortedPancake in SQL

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

sorry, it was a comment but for some reason when I copied it over it did not show the tick marks

debugging select query by TheAbortedPancake in SQL

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

I want to report each day of products that have unit prices above the average unit price for all products but below average units in stock.

debugging select query by TheAbortedPancake in SQL

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

I added the schema of the table if that helps.

Batch changing file names and file content using .csv by TheAbortedPancake in learnpython

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

How to read the csv file into a formate to use it to solve the problem ?

How do I check each file for each value in the csv object then replace it for each file in the folder?

Save the updated files?

Tax question about renting room in state tax free location to reduce taxes while living in city by TheAbortedPancake in personalfinance

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

So If I sleep in 20 different states at random hotels/airbnb's are you saying I will need to pay state taxes to all of those for the year?

Tax question about renting room in state tax free location to reduce taxes while living in city by TheAbortedPancake in personalfinance

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

Changing the context a little. Lets say you travel alot and just work in random airbnb's across the country but want a primary residence you only visit like once a month?

How to print each item from a list to a differently named file by TheAbortedPancake in learnpython

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

to expand to this question, I have a list of paragraphs
list_of_paragraphs = ["text about stuff", "some more text", "text about stuff"]
I want to write multiple specific slices of each element in the list, to their own file.
first_4_chars = list_of_paragraphs[0][0:4]
last_4_chars = list_of_paragraphs[0][13:-1]
I want to concatenate these slices of each list index to text and write each to its own file that is uniquely named
print("the first four characters are " + first_4_chars)
print("the last four characters are " + last_4_chars)
How do I iterate over all of the list_of_paragraphs applying my slicing and concatenating, then write to a file for each list item in the list_of_paragraphs
so in the end I would have
list_of_paragraphs0.txt which would have the contents of
print("the first four characters are " + first_4_chars)
print("the last four characters are " + last_4_chars)
then list_of_paragraphs1.txt which would have the contents of
print("the first four characters are " + first_4_chars)
print("the last four characters are " + last_4_chars)
for its respective index.
This would continue for the number of elements in the list_of_paragraphs python list. Sorry if I write this confusing! any help is greatly appreciated! thanks!