this post was submitted on 11 Aug 2025
193 points (99.0% liked)

Programming

22660 readers
152 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 
  • In a separate memo, Microsoft CoreAI head Jay Parikh outlined a new structure that will see GitHub leadership reporting to several Microsoft executives.
  • Microsoft developer division head Julia Liuson will oversee GitHub's revenue, engineering and support.
  • GitHub chief product offer Mario Rodriguez will report to Microsoft AI platform VP Asha Sharma.
you are viewing a single comment's thread
view the rest of the comments
[–] 7EP6vuI@feddit.org 1 points 1 month ago (1 children)

what is the use case for cloudflare?

is it still self hosting if you use an external service like that?

[–] flandish@lemmy.world 4 points 1 month ago (1 children)

cloudflare is not self hosting. it is however a simple place to have a page / worker on a free plan that watches a github repo and on changes does a pull and does a ci step like an install of a vue3 app. it then serves the app on a domain. so I can spin up a test vue3+ts app and know I can share it with the public. so like a personal homepage or something simple.

knowing a bad actor won’t be thinking “flandish self hosts if I can break into site’s IP I can assume he also self hosts good stuff”

at the worst a bad actor will ddos a free plan page on cloudflare which can handle it.

[–] 7EP6vuI@feddit.org 2 points 1 month ago

thanks for the detailed answer!