I'm very selective with the external scripts allowed on my websites. Ad networks are notorious for running malicious JavaScript on popular sites like NYTimes[1] and Yahoo[2] home pages. Any plans for an API so sites can receive ad content as JSON and display it without ever executing your external JavaScript? I might consider it for future side projects if I could npm install your client library instead of including…
Show HN: Ad Network for Sideprojects
71–80 of 82 posts
Re: Show HN: Ad Network for Sideprojects
#72Re: Show HN: Ad Network for Sideprojects
#73Tiny bit of feedback: I recommend changing the word "blacklist" to "denylist".
Re: Show HN: Ad Network for Sideprojects
#74With several things that can be improved.
Re: Show HN: Ad Network for Sideprojects
#75I'm very selective with the external scripts allowed on my websites. Ad networks are notorious for running malicious JavaScript on popular sites like NYTimes[1] and Yahoo[2] home pages. Any plans for an API so sites can receive ad content as JSON and display it without ever executing your external JavaScript? I might consider it for future side projects if I could npm install your client library instead of including…
It seems like iframes may be a better solution. They provide quite strong isolation of inside to outside communication. I worked in the ad tech industry 5 years ago and everything was iframes.
What do u think of images rendered on the backend?
Re: Show HN: Ad Network for Sideprojects
#76Re: Show HN: Ad Network for Sideprojects
#77Earlier quoted context omitted.
It seems like iframes may be a better solution. They provide quite strong isolation of inside to outside communication. I worked in the ad tech industry 5 years ago and everything was iframes.
Don't they take a toll on cpu & rendering times? What do u think of images rendered on the backend?
Reducing this data collection and turning to simpler methods like images increases fraud, which decreases the amount honest publishers would earn (likely hugely). So it's definitely doable, but tends to not make much economic sense at large scale.
Re: Show HN: Ad Network for Sideprojects
#78Re: Show HN: Ad Network for Sideprojects
#79Creator here. Tiny ads is my attempt to create a cross site ad network for hackers and side projects. It's more an experiment than a serious business venture. The idea is simple. We place a little ad on each others page with a link back to ones side project. It privacy respecting (no user tracking) and will work in the beginning by me judging which project to include into the ad network. I hope to create a positive s…
I can't help but think of web rings on Geocities.
Re: Show HN: Ad Network for Sideprojects
#80Earlier quoted context omitted.
> good luck with scaling, RIP Why? Plenty of options to scale Postgres. What alternatives do you use?
The juice just isn't worth the squeeze. I can't speak for Exuma, but I've built several ad networks and buying tools that needed to handle over as much as a trillion daily events, and that means lots of HTTP event collectors writing events down into a lot of otherwise independent streams that you need to merge-sort together into coherent reporting and deduplicate client retries. In principle, anything with statement-…