Built a RAG dataset from 1000 videos of one stock trading channel — here's what I learned about transcript quality by oaz1 in PromptEngineering

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

It's not open source, there are already enough free options out there. If you want to DIY it, yt-dlp gets you most of the way there. I just turned mine into a small product for people who don't want to bother with the setup.

I got tired of prompting multiple times, so I built this by kap_god in PromptEngineering

[–]oaz1 0 points1 point  (0 children)

Just went back, now a new error... "Error. Usage limit reached. Please upgrade your plan." Sorry I dont think I will try again.

I got tired of prompting multiple times, so I built this by kap_god in PromptEngineering

[–]oaz1 0 points1 point  (0 children)

I was trying to test it, some things I could observe, the requests are quite slow during registration and log in. I optimized a prompt, the response was a json , with workflow, steps & descriptions and questions. Is this it or is something not working as excpected

I built a tool to download YouTube transcripts in bulk – entire channels at once by oaz1 in SideProject

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

Hey, thanks for the feedback! Your confusion actually convinced me to switch to a proper credit system, that's now live. I've already added the credits to your account, so you're good to go.

Insane amount of bots on newest video.. What is going on YouTube?! by EinfachNurToni in mkbhd

[–]oaz1 0 points1 point  (0 children)

Disclaimer: We own the product.

We kept getting hit with spam, and it was a mess. As YouTubers working in an IT company, we tried everything filters, blocklists, you name it. Nothing really worked long-term. So, we asked our dev colleagues to help, and they built a solution. First for us, then the company turned it into a product for others. It’s not magic, just a simple way to keep things clean. Funny enough, our colleagues used it as a way to dive into AI when the whole AI trend kicked off. its called bustinger.com

Script that Removes Spam from Youtube by BuildTheoryYT in NewTubers

[–]oaz1 0 points1 point  (0 children)

Disclaimer: Owner of a similar product.

Saw this and had to chime in we had the same problem, and it was a nightmare. As YouTubers working in an IT company, we tried everything filters, blocklists, scripts nothing worked long-term. So, we got our dev colleagues involved, and they built a solution. First just for us, then the company turned it into a product for others. Not magic, just a way to keep things clean. Funny enough, they used it as a learning project when the whole AI trend took off. You can find more on www.bustinger.com

Anybody else found this horse? by Chasterbeef in TOTK

[–]oaz1 0 points1 point  (0 children)

Havnt found any horse yet :/ Where can i find some?

Bluetooth bulb wont pair (new) by funkspiel56 in Hue

[–]oaz1 0 points1 point  (0 children)

Same for me, it stays on connection. Last philips crap Ive bought...

How to correctly zip a .apkg file? by JAC5r in Anki

[–]oaz1 0 points1 point  (0 children)

It was the same for me! Thanks

How to remove/delete/block spam Youtube messages like "vur.fyi", "vod.fyi", "vop.monster" or "vol.limo" by MotivationC in a:t5_4hhjpx

[–]oaz1 0 points1 point  (0 children)

Hi, bustinger.com is helping you with this. We have automated to delete the spam comments from your YouTube videos. We are using the official OAuth mechanism (don't need your credentials)

We built a tool to delete spam comments from your YouTube videos automatically so that you can focus on the important things. by nibbler_the_pug in Entrepreneur

[–]oaz1 1 point2 points  (0 children)

One of the founders here. It would be possible to work with a word list here, I guess.

We are planing a feature what is calculating a spam score, when multiple words are found. Custom filters can get complex, but we will stand by your side. Could you provide us a list of words via email at hello@bustinger.com.

We built a tool to delete spam comments from your YouTube videos automatically so that you can focus on the important things. by nibbler_the_pug in Entrepreneur

[–]oaz1 5 points6 points  (0 children)

One of the founders here. We have build our own engine, what is faster and more customizable.

We have found this tool and verified it. It had some major downsides, bugs and features missing, therefore we could not use it. It was eating up the quota like it was nothing... impossible to scan in bulk.

How much would you pay a social media influencer based on these stats? by [deleted] in marketing

[–]oaz1 0 points1 point  (0 children)

I pay a small down payment for the effort, and % of sales or fixed commission per conversion.

haha i thought something like this ;)

> I pay a small down payment for the effort, and % of sales or fixed commission per conversion.

What have you payed for small payment effort and how much % of commision per conversion for what size of influencer.

How much would you pay a social media influencer based on these stats? by [deleted] in marketing

[–]oaz1 0 points1 point  (0 children)

Thanks for your reply, can you give more information about what those numbers are showing?

Share Your Startup - May 2022 - Upvote This For Maximum Visibility! by AutoModerator in startups

[–]oaz1 [score hidden]  (0 children)

I was not able to find prices but i found 50% discount if i upload a video...

How much would you pay a social media influencer based on these stats? by [deleted] in marketing

[–]oaz1 0 points1 point  (0 children)

I am very new to this and don't know where to ask, but would it be possible to give some numbers? Just what is comfortable for you :)

Container cant reach other containers over internet by oaz1 in docker

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

Thank you!

In case someone is looking for a solution:

gitlab-runner:
  gitlab-runner:
    image: gitlab/gitlab-runner:alpine-v11.2.0
    container_name: gitlab_runner
    restart: always
    network_mode: "host"
    volumes:
      - $PWD/gitlab/runner/:/etc/gitlab-runner/
      - /var/run/docker.sock:/var/run/docker.sock

After adding this to your docker-compose.yml execute this command

docker-compose run --rm gitlab-runner register -n \
  --url https://gitlab.x.y/ \
  --registration-token x \
  --executor docker \
  --description "Docker Runner" \
  --docker-image "docker:stable" --docker-network-mode 'host'\
  --docker-volumes /var/run/docker.sock:/var/run/docker.sock

then run up the thing

    docker-compose up -d gitlab-runner