Discussion
Loading...

#Tag

  • About
  • Code of conduct
  • Privacy
  • Users
  • Instances
  • About Bonfire
feedle
@feedle@mastodon.social  ·  activity timestamp 24 hours ago

🔁 From our "Digital Crossroads" collection:

Resonance - https://jamesg.blog/2025/11/19/resonance/?ref=feedle.world

---
See other stories like this one here: https://feedle.world/digital-crossroads

#web #internet #socialmedia #blogging

  • Copy link
  • Flag this post
  • Block
Gaba 🍉
@gaba@systerserver.town  ·  activity timestamp yesterday

"WEBCAT. The folks at the Freedom of Press Foundation (FPF) have built a solution to this, called WEBCAT. This protocol allows site owners to announce the identities of the developers that have signed the site’s integrity manifest, i.e., have signed all the code and other assets that the site is serving to the user." #security #web
htt ps://blog.cloudflare.com/improving-the-trustworthiness-of-javascript-on-the-web/

  • Copy link
  • Flag this post
  • Block
feedle
@feedle@mastodon.social  ·  activity timestamp yesterday

🔁 From our "Digital Crossroads" collection:

H. Lee Justine on Online Comments, Influencers, and the Insidiousness of Family Vlogging - https://crimereads.com/h-justine-lee-essay/?ref=feedle.world

---
See other stories like this one here: https://feedle.world/digital-crossroads

#web #internet #socialmedia #blogging

  • Copy link
  • Flag this post
  • Block
Jan :rust: :ferris: boosted
GitRoot
@forge@gts.gitroot.dev  ·  activity timestamp 2 days ago

Tonight I wasn't in a mood to Dev. Nothing to do with the big crash of today (I was not impacted 😆).

No I was in a mood to ask for help, so I have written a blog post https://gitroot.dev/blog/how-to-help_en_11-2025.html

There are tasks for everyone from fixing typos to development in #golang #typescript or #rust and also for #sysadmin in #bash or #web #css

If you are ready to dev join the GitRoot channel in #matrix as explained in the article!

Please boost to get more help!

  • Copy link
  • Flag this post
  • Block
feedle
@feedle@mastodon.social  ·  activity timestamp 2 days ago

🔁 From our "Digital Crossroads" collection:

Why does the internet keep crashing so often? First Google Cloud, then AWS, now Cloudflare. - https://mashable.com/article/why-is-the-internet-crashing-so-often-explained-cloudflare?ref=feedle.world

---
See other stories like this one here: https://feedle.world/digital-crossroads

#web #internet #socialmedia #blogging

  • Copy link
  • Flag this post
  • Block
Roni Rolle Laukkarinen boosted
Ana Tudor 🐯
@anatudor@mastodon.social  ·  activity timestamp 2 days ago

I am begging you, please don't split your heading into two separate `h2` elements with an `img` in between just to have the image in between your heading words.

This is what subgrid was made for!

#CSS #layout #cssLayout #code #coding #web #dev #webDev #webDevelopment

HTML:

```
<!-- ❌ DON'T DO THIS 🚫 -->
<section>
  <h2>Classic</h2>
  <img src='classic-bar.png' alt=''/>
  <h2>Flavour</h2>
</section>

<!-- ✅ DO THIS ✅ -->
<section>
  <h2>
    <span>Classic</span>
    <span>Flavour</span>
  </h2>
  <img src='classic-bar.png' alt='the classic chocolate bar'/>
</section>
```

CSS:

```
section, h2 { display: grid }

section { grid-template-rows: repeat(3, auto) }

h2 {
  grid-area: 1/ 1/ span 3;
  grid-template-rows: subgrid;
  
  span:last-child { grid-row: 3 }
}

img { grid-area: 2/ 1 }
```
HTML: ``` <!-- ❌ DON'T DO THIS 🚫 --> <section> <h2>Classic</h2> <img src='classic-bar.png' alt=''/> <h2>Flavour</h2> </section> <!-- ✅ DO THIS ✅ --> <section> <h2> <span>Classic</span> <span>Flavour</span> </h2> <img src='classic-bar.png' alt='the classic chocolate bar'/> </section> ``` CSS: ``` section, h2 { display: grid } section { grid-template-rows: repeat(3, auto) } h2 { grid-area: 1/ 1/ span 3; grid-template-rows: subgrid; span:last-child { grid-row: 3 } } img { grid-area: 2/ 1 } ```
HTML: ``` <!-- ❌ DON'T DO THIS 🚫 --> <section> <h2>Classic</h2> <img src='classic-bar.png' alt=''/> <h2>Flavour</h2> </section> <!-- ✅ DO THIS ✅ --> <section> <h2> <span>Classic</span> <span>Flavour</span> </h2> <img src='classic-bar.png' alt='the classic chocolate bar'/> </section> ``` CSS: ``` section, h2 { display: grid } section { grid-template-rows: repeat(3, auto) } h2 { grid-area: 1/ 1/ span 3; grid-template-rows: subgrid; span:last-child { grid-row: 3 } } img { grid-area: 2/ 1 } ```
  • Copy link
  • Flag this post
  • Block
GitRoot
@forge@gts.gitroot.dev  ·  activity timestamp 2 days ago

Tonight I wasn't in a mood to Dev. Nothing to do with the big crash of today (I was not impacted 😆).

No I was in a mood to ask for help, so I have written a blog post https://gitroot.dev/blog/how-to-help_en_11-2025.html

There are tasks for everyone from fixing typos to development in #golang #typescript or #rust and also for #sysadmin in #bash or #web #css

If you are ready to dev join the GitRoot channel in #matrix as explained in the article!

Please boost to get more help!

  • Copy link
  • Flag this post
  • Block
Ana Tudor 🐯
@anatudor@mastodon.social  ·  activity timestamp 2 days ago

I am begging you, please don't split your heading into two separate `h2` elements with an `img` in between just to have the image in between your heading words.

This is what subgrid was made for!

#CSS #layout #cssLayout #code #coding #web #dev #webDev #webDevelopment

HTML:

```
<!-- ❌ DON'T DO THIS 🚫 -->
<section>
  <h2>Classic</h2>
  <img src='classic-bar.png' alt=''/>
  <h2>Flavour</h2>
</section>

<!-- ✅ DO THIS ✅ -->
<section>
  <h2>
    <span>Classic</span>
    <span>Flavour</span>
  </h2>
  <img src='classic-bar.png' alt='the classic chocolate bar'/>
</section>
```

CSS:

```
section, h2 { display: grid }

section { grid-template-rows: repeat(3, auto) }

h2 {
  grid-area: 1/ 1/ span 3;
  grid-template-rows: subgrid;
  
  span:last-child { grid-row: 3 }
}

img { grid-area: 2/ 1 }
```
HTML: ``` <!-- ❌ DON'T DO THIS 🚫 --> <section> <h2>Classic</h2> <img src='classic-bar.png' alt=''/> <h2>Flavour</h2> </section> <!-- ✅ DO THIS ✅ --> <section> <h2> <span>Classic</span> <span>Flavour</span> </h2> <img src='classic-bar.png' alt='the classic chocolate bar'/> </section> ``` CSS: ``` section, h2 { display: grid } section { grid-template-rows: repeat(3, auto) } h2 { grid-area: 1/ 1/ span 3; grid-template-rows: subgrid; span:last-child { grid-row: 3 } } img { grid-area: 2/ 1 } ```
HTML: ``` <!-- ❌ DON'T DO THIS 🚫 --> <section> <h2>Classic</h2> <img src='classic-bar.png' alt=''/> <h2>Flavour</h2> </section> <!-- ✅ DO THIS ✅ --> <section> <h2> <span>Classic</span> <span>Flavour</span> </h2> <img src='classic-bar.png' alt='the classic chocolate bar'/> </section> ``` CSS: ``` section, h2 { display: grid } section { grid-template-rows: repeat(3, auto) } h2 { grid-area: 1/ 1/ span 3; grid-template-rows: subgrid; span:last-child { grid-row: 3 } } img { grid-area: 2/ 1 } ```
  • Copy link
  • Flag this post
  • Block
feedle
@feedle@mastodon.social  ·  activity timestamp 2 days ago

🔁 From our "Digital Crossroads" collection:

AI and Voter Engagement - https://www.schneier.com/blog/archives/2025/11/ai-and-voter-engagement.html?ref=feedle.world

---
See other stories like this one here: https://feedle.world/digital-crossroads

#web #internet #socialmedia #blogging

  • Copy link
  • Flag this post
  • Block
feedle
@feedle@mastodon.social  ·  activity timestamp 3 days ago

🔁 From our "Digital Crossroads" collection:

Trapped by what they know: Young adults’ algorithmic cynicism - https://www.niemanlab.org/2025/11/trapped-by-what-they-know-young-adults-algorithmic-cynicism/?ref=feedle.world

---
See other stories like this one here: https://feedle.world/digital-crossroads

#web #internet #socialmedia #blogging

  • Copy link
  • Flag this post
  • Block
feedle
@feedle@mastodon.social  ·  activity timestamp 3 days ago

🔁 From our "Digital Crossroads" collection:

After resignations at the top, the BBC faces a defining test: What does impartiality mean now? - https://www.niemanlab.org/2025/11/after-resignations-at-the-top-the-bbc-faces-a-defining-test-what-does-impartiality-mean-now/?ref=feedle.world

---
See other stories like this one here: https://feedle.world/digital-crossroads

#web #internet #socialmedia #blogging

  • Copy link
  • Flag this post
  • Block
Hacker News
@h4ckernews@mastodon.social  ·  activity timestamp 3 days ago

Google is killing the open web, part 2

https://wok.oblomov.eu/tecnologia/google-killing-open-web-2/

#HackerNews #Google #Open #Web #Killing #Technology #Internet #Freedom

wok

Google is killing the open web, part 2

Do not comply in advance.
⁂
More from
Oblomov
  • Copy link
  • Flag this post
  • Block
Lamecarlate
@lamecarlate@pouet.it  ·  activity timestamp 3 days ago

Bonjour ! Le designer avec qui je travaille me demande si c'est OK d'avoir un compte à rebours toujours affiché sur l'icône du panier dans notre site e-commerce. Nous avons des produits qu'on réserve chez un fournisseur externe pendant un temps limité (demandé par le fournisseur). Donc le panier a une durée de vie limitée.

C'est donc une animation affichée en permanence dans le header. Quelqu'un sait les bonnes pratiques dans le cas précis d'un compte à rebours ?

#web #accessibilité #a11y

  • Copy link
  • Flag this post
  • Block
Nizar Kerkeni 🇹🇳 نزار القرقني boosted
anorax
@l_inadapte@framapiaf.org  ·  activity timestamp 4 days ago

#Islam et #Web
Sur un site d'emails temporaires, géré par des personnes musulmanes, il pourrait y avoir des publicités harâm (interdites) qu'elles ne contrôlent pas.

Alors fermez les yeux, bouchez-vous les oreilles et ne cliquez pas n'importe où ! 😂

Capture d'écran.

Pop-up affiché en entrant sur le site :

« Le site affiche des publicités externes que nous ne contrôlons pas. En l'utilisant, vous acceptez de ne pas voir d'images interdites, d'écouter de la musique ou d'interagir avec des publicités contraires à la loi islamique. »
Capture d'écran. Pop-up affiché en entrant sur le site : « Le site affiche des publicités externes que nous ne contrôlons pas. En l'utilisant, vous acceptez de ne pas voir d'images interdites, d'écouter de la musique ou d'interagir avec des publicités contraires à la loi islamique. »
Capture d'écran. Pop-up affiché en entrant sur le site : « Le site affiche des publicités externes que nous ne contrôlons pas. En l'utilisant, vous acceptez de ne pas voir d'images interdites, d'écouter de la musique ou d'interagir avec des publicités contraires à la loi islamique. »
  • Copy link
  • Flag this post
  • Block
anorax
@l_inadapte@framapiaf.org  ·  activity timestamp 4 days ago

#Islam et #Web
Sur un site d'emails temporaires, géré par des personnes musulmanes, il pourrait y avoir des publicités harâm (interdites) qu'elles ne contrôlent pas.

Alors fermez les yeux, bouchez-vous les oreilles et ne cliquez pas n'importe où ! 😂

Capture d'écran.

Pop-up affiché en entrant sur le site :

« Le site affiche des publicités externes que nous ne contrôlons pas. En l'utilisant, vous acceptez de ne pas voir d'images interdites, d'écouter de la musique ou d'interagir avec des publicités contraires à la loi islamique. »
Capture d'écran. Pop-up affiché en entrant sur le site : « Le site affiche des publicités externes que nous ne contrôlons pas. En l'utilisant, vous acceptez de ne pas voir d'images interdites, d'écouter de la musique ou d'interagir avec des publicités contraires à la loi islamique. »
Capture d'écran. Pop-up affiché en entrant sur le site : « Le site affiche des publicités externes que nous ne contrôlons pas. En l'utilisant, vous acceptez de ne pas voir d'images interdites, d'écouter de la musique ou d'interagir avec des publicités contraires à la loi islamique. »
  • Copy link
  • Flag this post
  • Block
Yogthos
@yogthos@social.marxist.network  ·  activity timestamp 4 days ago

Tracking users with favicons, even in incognito mode.

https://github.com/jonasstrehle/supercookie

#privacy #web #browsers

GitHub

GitHub - jonasstrehle/supercookie: ⚠️ Browser fingerprinting via favicon!

⚠️ Browser fingerprinting via favicon! Contribute to jonasstrehle/supercookie development by creating an account on GitHub.
  • Copy link
  • Flag this post
  • Block
feedle
@feedle@mastodon.social  ·  activity timestamp 4 days ago

🔁 From our "Digital Crossroads" collection:

Small Web, Big Voice - https://kevquirk.com/blog/small-web-big-voice/?ref=feedle.world

---
See other stories like this one here: https://feedle.world/digital-crossroads

#web #internet #socialmedia #blogging

Kev Quirk

Small Web, Big Voice | Kev Quirk

Andre argues that independent blogging isn’t about scale at all, but about integrity — choosing a place you control, writing in your own voice, and keeping the web human.
⁂
More from
Kev Quirk
  • Copy link
  • Flag this post
  • Block
feedle
@feedle@mastodon.social  ·  activity timestamp 4 days ago

🔁 From our "Digital Crossroads" collection:

The digital age’s reversion to pre-literate communication - https://bigthink.com/the-present/the-digital-ages-reversion-to-pre-literate-communication/?ref=feedle.world

---
See other stories like this one here: https://feedle.world/digital-crossroads

#web #internet #socialmedia #blogging

Big Think

The digital age’s reversion to pre-literate communication

Today's digital tools are pulling us away from fixed texts and back toward fluid, interactive communication.
  • Copy link
  • Flag this post
  • Block
Stefano Marinelli boosted
Bradley Taunt
@bt@mastodon.bsd.cafe  ·  activity timestamp 4 days ago

Just some initial memory comparisons between my two tiny VPS servers - one running httpd/relayd on OpenBSD, the other running Caddy on Alpine Linux:

OpenBSD: 99M / 464M
Alpine: 50M / 464M

Both instances are hosting 3-4 simple, static websites. Interesting stuff (to me at least!)

#openbsd #alpine #web #caddy

  • Copy link
  • Flag this post
  • Block
Bradley Taunt
@bt@mastodon.bsd.cafe  ·  activity timestamp 4 days ago

Just some initial memory comparisons between my two tiny VPS servers - one running httpd/relayd on OpenBSD, the other running Caddy on Alpine Linux:

OpenBSD: 99M / 464M
Alpine: 50M / 464M

Both instances are hosting 3-4 simple, static websites. Interesting stuff (to me at least!)

#openbsd #alpine #web #caddy

  • Copy link
  • Flag this post
  • Block
Log in

bonfire.cafe

A space for Bonfire maintainers and contributors to communicate

bonfire.cafe: About · Code of conduct · Privacy · Users · Instances
Bonfire social · 1.0.0 no JS en
Automatic federation enabled
  • Explore
  • About
  • Members
  • Code of Conduct
Home
Login