home.social

#githubpages — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #githubpages, aggregated by home.social.

  1. I finally got around to setting a #domain for my #bridgy account over on #bluesky. I'm just using my #githubpages as I can't be bothered to buy a domain name for it 🦋

  2. I finally got around to setting a #domain for my #bridgy account over on #bluesky. I'm just using my #githubpages as I can't be bothered to buy a domain name for it 🦋

  3. In this instalment of Programming By Stealth, @bart walks through how he used the tools he taught in “Programmed by Stealth” to migrate the Let’s Talk website from WordPress to GitHub Pages. Most things worked well, but there were still some surprises.

    pbs.bartificer.net/tidbit18

    #GitHubPages #Jekyll #ProgrammingByStealth

  4. Ah, the cutting-edge #innovation of decentralized social networking—now with a ✨sparkling✨ new paint job called "static sites". 🚀 Just fork, enable, and pretend you're not just slapping lipstick on an HTML pig. 🤡 Who needs dynamic interaction when you can have the excitement of watching paint dry on GitHub Pages instead? 🎨
    satproto.org/ #decentralizedsocialnetworking #static #sites #GitHubPages #webdevelopment #humor #HackerNews #ngated

  5. Ah, the cutting-edge #innovation of decentralized social networking—now with a ✨sparkling✨ new paint job called "static sites". 🚀 Just fork, enable, and pretend you're not just slapping lipstick on an HTML pig. 🤡 Who needs dynamic interaction when you can have the excitement of watching paint dry on GitHub Pages instead? 🎨
    satproto.org/ #decentralizedsocialnetworking #static #sites #GitHubPages #webdevelopment #humor #HackerNews #ngated

  6. Switching GitHub Pages deployment from Classic to Actions-based deployment

    GitHub has introduced another method to deploy your GitHub Pages website from the classic method to the modern deployment method from your GitHub Actions workflow. This avoids having to select a dedicated branch (usually called gh-pages) from your repository, which is separate from all your branches, including the main one.

    This removes a huge overhead in having to maintain a separate branch dedicated for GitHub Pages files, which are static files that contain HTML, CSS, JS, and other website-related files. Instead, you can deploy your website straight from one branch and one workflow.

    As part of our public apology for the API docs not being updated to take new design into account, we have first followed the steps that changed how the deployment works:

    1. Go to a repository and navigate to Settings > Pages
    2. In the Build and deployment section, and click on the combo box
    3. If it says Deploy from a branch, click on GitHub Actions

    After that, we have edited the API documentation workflow so that it uses a more modern approach to deploying the docs site. The edits went like this for Textify (reference):

    1. We have added read permission to the contents, and write permission to both the ID token and the GitHub Pages deployment.
     permissions:    contents: read    pages: write    id-token: write 
    1. We have added an environment, called github-pages, and set the deployment URL to the pages URL fetched from the deployment step.
        environment:
          name: github-pages
          url: ${{ steps.deployment.outputs.page_url }}
    1. We have replaced the peaceiris/actions-gh-pages@v3 action with the actions/upload-pages-artifact@v3 action.
    2. We have specified the path to the output that DocFX generated in the build step.
          - name: Saving changes to gh-pages
            uses: actions/upload-pages-artifact@v3
            with:
              path: 'docs'
    1. We have added a new step, whose ID is deployment, that uses actions/deploy-pages@v4.
          - id: deployment
            uses: actions/deploy-pages@v4

    After that, a commit that edited the workflow file was made, and the workflow has been run according to the rule that was set (to use the latest codebase found in the main branch):

     on:    push:      branches:        - main    pull_request:      branches:        - main 

    As soon as this workflow ran, the Generate API Documentation workflow has run, and all steps went green! You can see the deployment logs below (after building the documentation):

     Run actions/deploy-pages@v4    with:      token: ***      timeout: 600000      error_count: 10      reporting_interval: 5000      artifact_name: github-pages      preview: false    env:      DOTNET_ROOT: /usr/share/dotnet  Fetching artifact metadata for "github-pages" in this workflow run  Found 1 artifact(s)  Creating Pages deployment with payload:  {  	"artifact_id": 5799820482,  	"pages_build_version": "b7cdd6b433d112ca575333cbfee3e92eb91ea304",  	"oidc_token": "***"  }  Created deployment for b7cdd6b433d112ca575333cbfee3e92eb91ea304, ID: b7cdd6b433d112ca575333cbfee3e92eb91ea304  Getting Pages deployment status...  Reported success! 

    Finally, the API documentation has been generated and deployed to a github.io site for Textify, which you can find here. This has fixed issues related to outdated content appearing in the deployment, even though that deployment appeared to have been successful.

    Our recommendation is that if you use the classic GitHub Pages deployment method, you should consider migrating to the modern method, after studying implications and migration costs, depending on how the deployment is made.

    #github #GitHubPages #news #Tech #Technology #update
  7. I've published my first Action to the GitHub Marketplace. It's a very simple tool (as all the best ones are!) that takes your repo's README and converts it to HTML for use in a GitHub Pages website. It scratched a very particular itch for me, but it might be useful to other people, too.

    dev.to/davorg/your-readme-is-a

  8. I've published my first Action to the GitHub Marketplace. It's a very simple tool (as all the best ones are!) that takes your repo's README and converts it to HTML for use in a GitHub Pages website. It scratched a very particular itch for me, but it might be useful to other people, too.

    dev.to/davorg/your-readme-is-a

    #githubpages #githubactions #readme #website

  9. I've published my first Action to the GitHub Marketplace. It's a very simple tool (as all the best ones are!) that takes your repo's README and converts it to HTML for use in a GitHub Pages website. It scratched a very particular itch for me, but it might be useful to other people, too.

    dev.to/davorg/your-readme-is-a

    #githubpages #githubactions #readme #website

  10. I've published my first Action to the GitHub Marketplace. It's a very simple tool (as all the best ones are!) that takes your repo's README and converts it to HTML for use in a GitHub Pages website. It scratched a very particular itch for me, but it might be useful to other people, too.

    dev.to/davorg/your-readme-is-a

    #githubpages #githubactions #readme #website

  11. Local-Only File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The password encryption currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  12. Local-Only File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The password encryption currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  13. Local-Only File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The password encryption currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  14. Local-Only File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The password encryption currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  15. Local-Only File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The password encryption currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  16. Es gibt Momente in der KI-Entwicklung, die sind schon erstaunlich. Wenn der Code fließt, die Ideen sich materialisieren und man am Ende des Tages auf etwas blickt, das tatsächlich funktioniert. Genau so eine Erfahrung hatte ich gerade mit Claude Code – und das Ergebnis kann sich für den wenigen Einsatz sehen lassen: Flow im Ohr.

    Meine erste Begegnung mit Claude Code

    Ich hatte schon viel […]

    https://blog.hamdorf.org/vibecoding-mit-claude/
  17. Also man kann durchaus auch einem #GithubPages #Blog neue Tricks beibringen, die es erstmal so out-of-the-box nicht kann. Wie zum Beispiel einen hell/dunkel Theme Umschalter. Erfordert zwar ein bisschen #Javascript und #CSS #Hacking, aber ich finde, es lohnt sich und das Ergebnis gefällt mir sehr gut – vor allem auch, weil der Hotkey T ebenfalls funktioniert. ☺️ blog.metawops.de

  18. Build & deploy workflow no. 2⁹ (512) running ... 🤪🤓 #githubpages #blog Now with light/dark theme switch/toggle which can be activated by just pressing 🅃 (the T key), too. 😊 Wanna have a look? 👉 blog.metawops.de 🙏

  19. Jekyll sayesinde statik ve hızlı bir blog kurmak mümkün.
    Ruby, Bundler, GitHub Pages ve Markdown ile içerik üretmek oldukça kolay.
    İpucu: Markdown öğrenmek uzun vadede ciddi zaman kazandırıyor.
    yuceltoluyag.github.io/jekyll-
    #Jekyll #WebDev #Markdown #GitHubPages #DevTips

  20. В России блокируют доступ к документации #NestJS, поэтому я решил создать Pull Request, который позволит публиковать её в #GitHubPages.
    Кто не может получить доступ к документации вы можете сделать это по этой ссылке vladimirleonidovich.github.io/ или самостоятельно сделать форк репозитория из этого Pull Request github.com/nestjs/docs.nestjs. с возможностью публикации документации в GitHub Pages. Будет работать до тех пор, пока не заблокируют #GitHub.
    #цензура

  21. New hands-on tutorial on The Main Thread:
    Build and deploy a static website with Quarkus + Roq — all powered by Java and GitHub Actions.

    ✅ Generate your site in minutes
    ✅ Live reload during development
    ✅ Automatic deploys to GitHub Pages

    No Node.js. No hassle. Just Java.

    👉 the-main-thread.com/p/quarkus-

    #Quarkus #Java #Roq #GitHubPages #DevOps

  22. New hands-on tutorial on The Main Thread:
    Build and deploy a static website with Quarkus + Roq — all powered by Java and GitHub Actions.

    ✅ Generate your site in minutes
    ✅ Live reload during development
    ✅ Automatic deploys to GitHub Pages

    No Node.js. No hassle. Just Java.

    👉 the-main-thread.com/p/quarkus-

    #Quarkus #Java #Roq #GitHubPages #DevOps

  23. New hands-on tutorial on The Main Thread:
    Build and deploy a static website with Quarkus + Roq — all powered by Java and GitHub Actions.

    ✅ Generate your site in minutes
    ✅ Live reload during development
    ✅ Automatic deploys to GitHub Pages

    No Node.js. No hassle. Just Java.

    👉 the-main-thread.com/p/quarkus-

    #Quarkus #Java #Roq #GitHubPages #DevOps

  24. New hands-on tutorial on The Main Thread:
    Build and deploy a static website with Quarkus + Roq — all powered by Java and GitHub Actions.

    ✅ Generate your site in minutes
    ✅ Live reload during development
    ✅ Automatic deploys to GitHub Pages

    No Node.js. No hassle. Just Java.

    👉 the-main-thread.com/p/quarkus-

    #Quarkus #Java #Roq #GitHubPages #DevOps

  25. New hands-on tutorial on The Main Thread:
    Build and deploy a static website with Quarkus + Roq — all powered by Java and GitHub Actions.

    ✅ Generate your site in minutes
    ✅ Live reload during development
    ✅ Automatic deploys to GitHub Pages

    No Node.js. No hassle. Just Java.

    👉 the-main-thread.com/p/quarkus-

    #Quarkus #Java #Roq #GitHubPages #DevOps

  26. Write that blog post now... without leaving the terminal 💯

    🌀 blogr — A static site generator for creating and managing blogs.

    ⚡ Write in Markdown, preview instantly and deploy to GitHub Pages in seconds.

    🎨 Includes built-in themes.

    🦀 Written in Rust & built with @ratatui_rs

    ⭐ GitHub: github.com/bahdotsh/blogr

  27. File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The "password encryption" currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  28. File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The "password encryption" currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  29. File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The "password encryption" currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  30. File Encryption with JavaScript.

    I've been exploring the #WebCryptoAPI and I'm impressed!

    When combined with the #FileSystemAPI, it offers a seemingly secure way to #encrypt and #store files directly on your device. Think #localstorage, but with #encryption!

    I know #webapps can have #security vulnerabilities since the code is served over the web, so I've #OpenSourced my demo! You can check it out, and it should even work if #selfhosted on #GitHubPages.

    Live Demo: dim.positive-intentions.com/?p

    Demo Code: github.com/positive-intentions

    About the Dim framework:
    positive-intentions.com/docs/c

    IMPORTANT NOTES (PLEASE READ!):
    * This is NOT a product. It's for #testing and #demonstration purposes only.
    * It has NOT been reviewed or audited. Do NOT use for sensitive data.
    * The "password encryption" currently uses a hardcoded password. This is for demonstration, not security.
    * This is NOT meant to replace robust solutions like #VeraCrypt. It's just a #proofofconcept to show what's possible with #browser #APIs.

    #Encryption #Cryptography #JavaScript #Frontend #Privacy #Security #WebDevelopment #Coding #Developer #Tech #FOSS #OpenSource #GitHub #MastodonDev #Programming #WebStandards #FileSystem #WebAPI #ProofOfConcept

  31. Time to make a move? #GiveUpGitHub

    New How-to Guide on #BurgeonLab

    burgeonlab.com/blog/migrate-gi

    It's a thorough guide of switching from an automated CI static site deployment workflow using GitHub Pages & GitHub Actions 🔄 to SourceHut Git and Builds + hosting on Bunny.net Storage & Bunny CDN.

    #techguides #blog #blogging #blogpost #hugo #cicd #CDN #bunnycdn #bunnynet #github #sourcehut #githubactions #githubpages #srht

  32. Naty @eclecticpassions ·

    Time to make a move?

    New How-to Guide on

    burgeonlab.com/blog/migrate-gi

    It's a thorough guide of switching from an automated CI static site deployment workflow using GitHub Pages & GitHub Actions 🔄 to SourceHut Git and Builds + hosting on Bunny.net Storage & Bunny CDN.

  33. Time to make a move? #GiveUpGitHub

    New How-to Guide on #BurgeonLab

    burgeonlab.com/blog/migrate-gi

    It's a thorough guide of switching from an automated CI static site deployment workflow using GitHub Pages & GitHub Actions 🔄 to SourceHut Git and Builds + hosting on Bunny.net Storage & Bunny CDN.

    #techguides #blog #blogging #blogpost #hugo #cicd #CDN #bunnycdn #bunnynet #github #sourcehut #githubactions #githubpages #srht

  34. Time to make a move? #GiveUpGitHub

    New How-to Guide on #BurgeonLab

    burgeonlab.com/blog/migrate-gi

    It's a thorough guide of switching from an automated CI static site deployment workflow using GitHub Pages & GitHub Actions 🔄 to SourceHut Git and Builds + hosting on Bunny.net Storage & Bunny CDN.

    #techguides #blog #blogging #blogpost #hugo #cicd #CDN #bunnycdn #bunnynet #github #sourcehut #githubactions #githubpages #srht

  35. Time to make a move? #GiveUpGitHub

    New How-to Guide on #BurgeonLab

    burgeonlab.com/blog/migrate-gi

    It's a thorough guide of switching from an automated CI static site deployment workflow using GitHub Pages & GitHub Actions 🔄 to SourceHut Git and Builds + hosting on Bunny.net Storage & Bunny CDN.

    #techguides #blog #blogging #blogpost #hugo #cicd #CDN #bunnycdn #bunnynet #github #sourcehut #githubactions #githubpages #srht

  36. It took longer than expected for me (a day on and off) to get #sourcehut builds workflow to work with Bunny's SFTP limitations but I got it working! This is definitely going into a blog post! Really happy it worked out. Sourcehut Git repo + Builds + Bunny.net Storage + CDN replacing GitHub Git repo + Actions + Pages!

    #github #githubpages #githubactions #srht #bunnynet #bunnycdn #bunnystorage #GiveUpGitHub #staticsite #hosting #cdn

  37. Naty @eclecticpassions ·

    It took longer than expected for me (a day on and off) to get builds workflow to work with Bunny's SFTP limitations but I got it working! This is definitely going into a blog post! Really happy it worked out. Sourcehut Git repo + Builds + Bunny.net Storage + CDN replacing GitHub Git repo + Actions + Pages!

  38. It took longer than expected for me (a day on and off) to get #sourcehut builds workflow to work with Bunny's SFTP limitations but I got it working! This is definitely going into a blog post! Really happy it worked out. Sourcehut Git repo + Builds + Bunny.net Storage + CDN replacing GitHub Git repo + Actions + Pages!

    #github #githubpages #githubactions #srht #bunnynet #bunnycdn #bunnystorage #GiveUpGitHub #staticsite #hosting #cdn

  39. It took longer than expected for me (a day on and off) to get #sourcehut builds workflow to work with Bunny's SFTP limitations but I got it working! This is definitely going into a blog post! Really happy it worked out. Sourcehut Git repo + Builds + Bunny.net Storage + CDN replacing GitHub Git repo + Actions + Pages!

    #github #githubpages #githubactions #srht #bunnynet #bunnycdn #bunnystorage #GiveUpGitHub #staticsite #hosting #cdn

  40. It took longer than expected for me (a day on and off) to get #sourcehut builds workflow to work with Bunny's SFTP limitations but I got it working! This is definitely going into a blog post! Really happy it worked out. Sourcehut Git repo + Builds + Bunny.net Storage + CDN replacing GitHub Git repo + Actions + Pages!

    #github #githubpages #githubactions #srht #bunnynet #bunnycdn #bunnystorage #GiveUpGitHub #staticsite #hosting #cdn

  41. New post on #BurgeonLab ✍️

    ➡️ burgeonlab.com/blog/hosting-st

    Finally decided to take my first actions on migrating away from GitHub.com (#GiveUpGitHub) by moving my burgeonlab.com static blog out of GitHub Pages to Bunny.net Storage + CDN.

    Also, I've decided to go for @sourcehut as my Git repo host—but that warrants its own post.

    #blogging #blogs #blog #hugo #srht #weblog #smallweb #github #sourcehut #bunnycdn #bunnynet #staticsite #webhosting #githubpages

  42. Naty @eclecticpassions ·

    New post on ✍️

    ➡️ burgeonlab.com/blog/hosting-st

    Finally decided to take my first actions on migrating away from GitHub.com () by moving my burgeonlab.com static blog out of GitHub Pages to Bunny.net Storage + CDN.

    Also, I've decided to go for @sourcehut as my Git repo host—but that warrants its own post.

  43. New post on #BurgeonLab ✍️

    ➡️ burgeonlab.com/blog/hosting-st

    Finally decided to take my first actions on migrating away from GitHub.com (#GiveUpGitHub) by moving my burgeonlab.com static blog out of GitHub Pages to Bunny.net Storage + CDN.

    Also, I've decided to go for @sourcehut as my Git repo host—but that warrants its own post.

    #blogging #blogs #blog #hugo #srht #weblog #smallweb #github #sourcehut #bunnycdn #bunnynet #staticsite #webhosting #githubpages

  44. New post on #BurgeonLab ✍️

    ➡️ burgeonlab.com/blog/hosting-st

    Finally decided to take my first actions on migrating away from GitHub.com (#GiveUpGitHub) by moving my burgeonlab.com static blog out of GitHub Pages to Bunny.net Storage + CDN.

    Also, I've decided to go for @sourcehut as my Git repo host—but that warrants its own post.

    #blogging #blogs #blog #hugo #srht #weblog #smallweb #github #sourcehut #bunnycdn #bunnynet #staticsite #webhosting #githubpages