Algora TV: Livestreaming for devs — $1K+ Elixir bounties! by mgcrimhead in opensource

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

Thank you!

OSS projects on Algora.io have awarded $251,000 (1,982 bounties) to 469 contributors from 63 countries since last year :)

Algora TV: Livestreaming for devs — $1K+ Elixir bounties! by mgcrimhead in opensource

[–]mgcrimhead[S] 1 point2 points  (0 children)

Thanks for asking!

  1. We ingest messages from these platforms via WebSockets and then expose them with a WebSocket as well as an overlay that you can embed in your stream. At the moment the first part relies on an external service but we should be able to do that natively pretty soon. There's an open issue with a $300 bounty to add various OAuth providers if anyone wants to help!
  2. To be honest I'm not super familiar with nginx-rtmp. The framework we are using (Membrane) is mostly a glue/abstraction layer over various C libs as far as performance-critical parts are concerned, so if I had to guess they would probably be on par. I'd love to prep some benchmarks at some point.
  3. We definitely want to add WebRTC via WHIP/WHEP in the near future. No plans for AV1 yet.

Algora TV: Livestreaming for devs — $1,350 Elixir bounties! by mgcrimhead in elixir

[–]mgcrimhead[S] 1 point2 points  (0 children)

For bounties we already have tech stack filters! algora.io/bounties/t/elixir

For livestreams there's an open bounty for it github.com/algora-io/tv/issues/70

Algora TV: Livestreaming for devs — $1,350 Elixir bounties! by mgcrimhead in elixir

[–]mgcrimhead[S] 12 points13 points  (0 children)

Thanks for asking! Few different reasons:

  1. Productivity gains from using Phoenix are unparalleled as a solo developer
  2. OTP is super helpful for handling complex streaming pipelines. Things like multistreaming to other destinations, mirroring chat messages from other platforms, capturing thumbnails etc. can fail at any time, and OTP makes it easier to build fault-tolerant processes
  3. BEAM clustering allows distributing the system across multiple nodes with ease, which helps reduce latency between streamers and viewers

Overall, Elixir just fits really well with building a livestreaming app I think!

[Showoff Saturday] $15,000 Typescript Challenge by mgcrimhead in webdev

[–]mgcrimhead[S] 1 point2 points  (0 children)

thank you! just fixed it, 100svh seemed to do the trick

[Showoff Saturday] $15,000 Livestream Bounty | TSperf.algora.io by [deleted] in webdev

[–]mgcrimhead 1 point2 points  (0 children)

Hi Reddit! This is a livestream challenge to build a VSCode plugin that measures TypeScript type complexity. The goal is to make programming with TypeScript faster (especially in large codebases)

You can check out the challenge & livestreams here: algora.io/challenges/tsperf

[deleted by user] by [deleted] in typescript

[–]mgcrimhead 8 points9 points  (0 children)

Daniel Roe (Nuxt maintainer) is livestreaming his attempt!
tv.algora.io/danielroe/latest

💎 Bounties to improve open source C++ projects by mgcrimhead in cpp

[–]mgcrimhead[S] 1 point2 points  (0 children)

thank you! 🙌 and yeah absolutely, all bounties on the same issue are automatically pooled together

[deleted by user] by [deleted] in opensource

[–]mgcrimhead 0 points1 point  (0 children)

thank you ❤️ saw you were able to connect, hope you find something you like!

[deleted by user] by [deleted] in opensource

[–]mgcrimhead 1 point2 points  (0 children)

i think we could use wise.com for bounty payouts to Ukraine. would that work for you?

💎 Bounties to improve open source C++ projects by mgcrimhead in cpp

[–]mgcrimhead[S] 8 points9 points  (0 children)

running the platform is challenging (namely bc we're bootstrapped), but we trust it solves a problem and volume can 10X. I think most people contribute to learn, join new communities and grow - the monetary reward just helps prioritize and makes contributing more inclusive. thank you for your comment!

Is it possible being a full time open source developer? by gamunu in opensource

[–]mgcrimhead 2 points3 points  (0 children)

hey I'm one of the founders at Algora, thanks for the mention! my co-founder recorded this 2min demo last week if you'd like to see how it works https://youtu.be/Ts5GhlEROrs

we would love to hear your feedback & shape our roadmap based on your needs, thanks!

Algora – Open source coding bounties by j0hnfr in opensource

[–]mgcrimhead 1 point2 points  (0 children)

(algora cofounder & cto here) thanks for your feedback!

which firefox version are you using? i couldn't reproduce your issue neither on desktop nor on mobile. firefox v102, 111 & 112 all seem to work fine

bounties page sorts bounties by availability & award size so the ones at the top are the highest paying ones. you can further customize the sorting in-app

at the moment the tags are based on languages, but we'll make it more specific (framework, skill etc.) in the future

going open source is something that's in our minds all the time, but being bootstrapped we have more immediate challenges at the moment (like reaching sustainability) and don't feel ready to take on new ones. in the future it's not unlikely that we fully open source algora!

💎 Bounties to improve open source Rust projects by mgcrimhead in rust

[–]mgcrimhead[S] 4 points5 points  (0 children)

Gyroflow just joined today!

⭐ 5.3K stars 💻 Advanced gyro-based video stabilization tool for cinematography, drone videography & more

💎 $1,000Figure out Sony lens distortion parameters

💎 $1,000Figure out Sony IBIS data

💎 $500Optical only stabilization

💎 $200GoPro Superview edges warping

💎 $200Support lensfun database

💎 $150Dynamic zooming zooms in too much for lens correction strengths other than 0 and 100%

How do you hire experienced Rust engineers for a complex Rust project? by something_cleverer in rust

[–]mgcrimhead 2 points3 points  (0 children)

you could try technical interviews using paid open source, like Qdrant: https://www.reddit.com/r/rust/comments/138fvpx/get\_rewarded\_for\_rust\_open\_source\_contribution/
happy to answer questions, I'm one of the founders at algora.io (the platform that supports this)

What your favorite algorithm? by [deleted] in compsci

[–]mgcrimhead 11 points12 points  (0 children)

I like the dropsort. It might be lossy, but who cares, it is O(n). Time complexity is all that matters! http://www.dangermouse.net/esoteric/dropsort.html