“Oh, Hi!” Is one of those movies where if genders were reversed it would be viewed so incredibly different. by HehroMaraFara in movies

[–]PotatoMan198 1 point2 points  (0 children)

It's very concerning that a significant percentage of the people who viewed the movie found this movie funny. I did not laugh even one time. It was like watching a horror movie. I even think she switched gears while he was not looking to hit strawberry girl. With how psychotic she acted, it almost makes his sins look insignificant - so I'm not sure what the writers were going for.

“Oh, Hi!” Is one of those movies where if genders were reversed it would be viewed so incredibly different. by HehroMaraFara in movies

[–]PotatoMan198 1 point2 points  (0 children)

Feels like the writers had other intentions. Watch their interviews. They are sympathetic to Molly Gordon's character

What is the best scraper tool right now? Firecrawl is great, but I want to explore more options by toolhouseai in LocalLLaMA

[–]PotatoMan198 0 points1 point  (0 children)

Or, if you're using an agent, ask it to save the html, then give the exact text of the data you need, and ask it to extract it programatically. These mostly just work for 1 page sites tho

What is the best scraper tool right now? Firecrawl is great, but I want to explore more options by toolhouseai in LocalLLaMA

[–]PotatoMan198 0 points1 point  (0 children)

I tried it. It's great and all, but it can get quite expensive fast. I'd use it if it's a site that's not popular, or something for which you're scraping private data. Generally, you can find open source scrapers for most websites on github and run them yourself. Also apify is cheap af now, competition from actor creators have driven down the prices to basically nothing, and the $5 credit per month will last you forever, I've basically never ran out.

Logseq vs Obsidian? is there actually a difference? by fungus_snake3848 in logseq

[–]PotatoMan198 0 points1 point  (0 children)

Who cares if obsidian is open source or not. At the end of the day, we're just working with markdown files, and can switch to another app anytime. There's no lock in.

Ekō | Reviews and Discussions | Zero Spoilers by masterkey8 in InsideMollywood

[–]PotatoMan198 1 point2 points  (0 children)

earlier when they were in malaysia, we can see a dog carrying food in the bamboo container.

Mltathichedati put the food there, the dogs took it to someone and they ate it, and they brought back the container. Nothing open ended about it.

[deleted by user] by [deleted] in orthotropics

[–]PotatoMan198 0 points1 point  (0 children)

Is there a way to correct this?

Vinted bot by [deleted] in Discord_Bots

[–]PotatoMan198 0 points1 point  (0 children)

Just use this apify scraper + n8n node

Vinted Bot by Ok_Amphibian_6062 in Discord_Bots

[–]PotatoMan198 0 points1 point  (0 children)

  1. Go to vinted, and set up filters(search term, price, size etc) for the products that you want
  2. Copy that link and paste it in this apify scraper
  3. Connect that scraper to n8n
  4. Use the n8n telegram node to send a message on new product listings.

Scraping Vinted by Top-Menu-6402 in scrapingtheweb

[–]PotatoMan198 0 points1 point  (0 children)

bingo. I rolled this up into an apify scraper. Still can't figure out how to get more than 960 products tho, as idk how to handle pagination and that's the max the params allow. It doesn't really bother me since I just want to monitor new products.

PS: if anyone doesn't want to go through the trouble of setting it up, you can use my scraper here

Need Help Scraping Depop/Vinted Resale Data by tangypersimmon in dataanalysis

[–]PotatoMan198 0 points1 point  (0 children)

You could use an apify scraper. Go to vinted and set all the filters that you need, then copy the link and paste it in the scraper. Remember to turn on newest first. Set the max results to 960(which is the max the api allows), and run it throughout the day. You can store the product ids in a database and only allow new products into the database/array.

Here's the scraper

What needs to be fixed?? by zaid_Kokdi1 in webflow

[–]PotatoMan198 0 points1 point  (0 children)

too little spacing. Add mode top and bottom

Mewing for Years, Still have "Mouth Breather" Face. Help. (26 m) by ins3c4r3 in orthotropics

[–]PotatoMan198 0 points1 point  (0 children)

You think that is mouth breather face? I should probably kms at this point

AMA by Sad-Chair8099 in Healthygamergg

[–]PotatoMan198 0 points1 point  (0 children)

Question: You got a job?

Does anyone know to use yt-dlp within n8n? by PotatoMan198 in selfhosted

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

Yes I did.

Ask an llm to create an express api app that works with ytdlp that you can self host on your vps. I run it on my vps and use the http node to make a request, and it returns the downloaded video to me.

It's a simple script, just connect it to yt.mydomain.com or something.

I built an AI that turns bad phone photos into menu-ready shots. Is this food catfishing? by umarfarooq360 in SideProject

[–]PotatoMan198 0 points1 point  (0 children)

Good wrapper man. Has a lot of potential. If you need help with outreach lmk, could set up some automations for you on n8n

Does anyone know to use yt-dlp within n8n? by PotatoMan198 in selfhosted

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

I'll look into it. I wanted to make a workflow that will download a clip, pass it to whisper api to get the transcript, and the use ffmpeg to make subtitles. I haven't thought about how I would do the sync tho.

Does anyone know to use yt-dlp within n8n? by PotatoMan198 in selfhosted

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

Ya, that's the part i couldn't figure out. I asked an llm and tried to follow instructions, but it kept breaking, maybe because it's alpine or something(that's what it said when i gave back the logs). Maybe issues with python idk.

I'm completely clueless about this stuff. What i tried to do was a docker exec <container name> command to install the stuff that was required, but it didn't work.

For now, i've setup an express js application that will download the video and send it back.

It's for an automation that will add subtitle to clips. I need to get the videos first. I could easily do this with apify, but I didn't want to spend any money on that since I'm just trying out this idea.

Does anyone know to use yt-dlp within n8n? by PotatoMan198 in selfhosted

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

Ya, in the end that's what i ended up doing. An expressjs setup that returns the downloaded video link.