adanskana, to RSS
@adanskana@mastodon.social avatar

Can anyone recommend some good programming blogs (in the realm of lisps, emacs, guix, technical deep dives) that offer RSS feeds? I've already got https://wingolog.org/ from @wingo which is pretty much the exact genre of blog I'm looking for. https://ianthehenry.com/posts/ from @ianthehenry is also a good one (although the RSS feed doesn't seem to work with GFeeds :).
I just think it would be cute to have a selection of RSS feeds to browse through :)

[#rss #programming #blogs #lisp #emacs #guix

dusoft, to Blog
@dusoft@fosstodon.org avatar

I have published a new blog post History of Car Navigation Systems. Read it at: https://ambience.sk/history-of-car-navigation-systems/
#blog #web #weblog #blogs #blogpost #blogposts

Nixx, to poetry
@Nixx@chattrbx.com avatar

I revived my old Wordpress blog. Still have a bunch of things to fix, like missing images. But there it is. All of the poetry and a few other things I have written since 2009. Including some early digital art. I figured what the hell. It is a shame to just leave all that on my hard drive. It ain't nothing fancy. But it is meaningful to me. Maybe you will enjoy some of it too.
Peace Out

https://nixxshannon.wordpress.com

skinnylatte, to 11ty
@skinnylatte@hachyderm.io avatar

Just posted: my 'now' page, which I have changed into 'just now' https://popagandhi.com/now/2024-04-17/

#NowNowNow #Now #Blogs #11ty

LaLuneMauve, to random French

Question pour les gens qui lisent encore des blogs :

c'est quoi vos #blogs personnels préférés de la terre entière ? 🌟

(Tout m'intéresse, même les blogs en langue étrangère, même ceux qui ne sont plus mis à jour, même vos plaisirs coupables, etc.)

jake4480, to history
@jake4480@c.im avatar

Should've posted about this piece on the second generation of video game consoles by @siliconundergro before the one on the third generation I linked the other day. This one's super cool too. Colecovision, Intellivision, Vectrex, Atari consoles, etc https://dfarq.homeip.net/second-generation-video-game-consoles

feed, to mastodon Portuguese
@feed@manualdousuario.net avatar

O Ghost, CMS de código aberto para blogs e newsletters, anunciou a adoção do protocolo ActivityPub (AP). Ele se junta ao WordPress, Flipboard, Mastodon, WriteFreely e vários outros sistemas compatíveis com o AP, que vai, aos poucos, se transformando em uma espécie de camada social da web.

🔗 https://manualdousuario.net/ghost-activitypub/

jake4480, to DOOM
@jake4480@c.im avatar
DigitalNaiv, to internet German
@DigitalNaiv@mastodon.social avatar

#KI killt das Internet - doch das alte Web 2.0 kann sich wehren - Das Internet zu #SocialMedia Zeiten war ein Fast Food-Restaurant. Jetzt ist es nur noch die Erdnuss-Schale an der Theke.
Um so schöner ist, dass es manche Ecken im Web gibt, die im Angesicht der KI-Tools und -Angebote noch ganz nach der guten alten #Web20-Methode gepflegt werden. Persönliche #Newsletter und #Blogs erobern sich zunehmend Nischen, die erfrischend unalgoritmisch und persönlich sind. | @gigold https://gigold.me/blog/ki-killt-web

skinnylatte, to random
@skinnylatte@hachyderm.io avatar

Really enjoying the 'now' section on my blog

https://popagandhi.com/now/

i prefer it to the 'week done' idea, though i may also start doing that for fun

https://nownownow.com/

#Blogs #Now

skinnylatte, to 11ty
@skinnylatte@hachyderm.io avatar

An interview with me about my blog, which I've had for almost 20 years, and recently revived: https://manuelmoreale.com/pb-adrianna-tan

#Blogs #PersonalBlogs #Websites #11ty #Interview #Popagandhi

jake4480, to Futurama
@jake4480@c.im avatar

For its 25th anniversary today (it first aired March 28, 1999), my top 10 favorite Futurama episodes, and a little about each!

https://animatedtvblog.wordpress.com/2024/03/28/for-its-25th-anniversary-my-top-10-favorite-futurama-episodes-and-a-little-about-each/

@ndolo @benmo @mforester @WildTypeWriter

noellemitchell, (edited ) to books
@noellemitchell@mstdn.social avatar

I love not having any streaming services I pay for. I have enough content to keep me busy with #books, #YouTube, and #podcasts 😅

Edit: I forgot to add #blogs to the list 😆

juandesant, to python Spanish

Hace tiempo que tendría que haber escrito sobre las charadas (riddles) the Howard Oakley, una de las cosas que más me gustan de su siempre interesante blog The Eclectic Light Company.

Solutions to Saturday Mac riddles 247

Enlace a la última (a la fecha) entrada Solutions to Saturday Mac riddles 247.Lo más curioso es que lleva desde el 29 de Junio de 2019 publicándolas sin saltárselas ni una sola semana… pero no tiene forma de encontrar esas charadas de los sábados — y las soluciones de los lunes — de forma sencilla.

Así que me puse a escribir un script en Python que me proporciona el URL de cualquier charada, o su solución, asumiendo que se sigan publicando de forma ininterrumpida.

Aquí lo tenéis, por si os sirve de algo (con sus comentarios):

import datetime as dt<br></br><br></br>def riddle_for_date(date, solutions=False):<br></br>    base_date = dt.datetime(2019,6,29)<br></br>    if solutions: # A monday<br></br>        base_date = base_date+dt.timedelta(days=2)<br></br>        <br></br>    return ((date-base_date).days//7 + 1)<br></br><br></br>def date_for_riddle(riddle_num, solutions=True):<br></br>    """<br></br>    Computes the date associated with a given Eclectic Light Co Saturday's riddle number, considering whether to give the date for the riddle or for the solution.<br></br><br></br>    Parameters:<br></br>    riddle_num (int): The number of the riddle for which to calculate the date.<br></br>    solutions (bool): Indicates whether to use the solution's or the riddle's date. Default is True (for the solution's date).<br></br><br></br>    Returns:<br></br>    datetime: The computed date associated with the specified riddle number.<br></br><br></br>    Raises:<br></br>    ValueError: If the specified riddle number is less than 1.<br></br>    """<br></br>    # Set a base date for the riddles<br></br>    # The first riddle was issued on June 29th, 2019<br></br>    base_date = dt.datetime(2019, 6, 29)<br></br><br></br>    # Adjust base date to the next Monday (two days after)<br></br>    # if solutions are requested<br></br>    if solutions:<br></br>        base_date = base_date + dt.timedelta(days=2)<br></br><br></br>    # Validate riddle number<br></br>    riddle_num = int(riddle_num)<br></br><br></br>    # We use -1 to indicate the latest date<br></br>    if riddle_num < 1 and riddle_num != -1:<br></br>        raise ValueError(f"The specified riddle number ({riddle_num}) is less than 1, and not -1.")<br></br><br></br>    # Compute the date associated with the riddle number<br></br>    # by adding as many weeks as the riddle number - 1.<br></br>    if riddle_num == -1: # Latest riddle<br></br>        riddle_num = riddle_for_date(dt.datetime.today(),solutions=solutions)<br></br>    result = base_date + (riddle_num - 1) * dt.timedelta(days=7)<br></br>    return result<br></br><br></br><br></br>def url_for_riddle(riddle_num, solutions=True, open_in_browser=False):<br></br>    """<br></br>    Generates a URL for accessing a specific Mac riddle from the Eclectic Light Company's blog.<br></br><br></br>    Parameters:<br></br>    riddle_num (int): The number of the riddle to generate URL for.<br></br>    solutions (bool): Indicates whether the URL should lead to the riddle's solutions (True), or just to the original riddle. Default is True.<br></br>    open_in_browser (bool): Indicates whether the generated URL should be opened in the default web browser. Default is False.<br></br><br></br>    Returns:<br></br>    str: The generated URL for the specified Mac riddle.<br></br><br></br>    Raises:<br></br>    ValueError (through `date_for_riddle`) if the riddle_num is less than 1, or not an int.<br></br>    """<br></br>    if riddle_num == -1:<br></br>        riddle_num = riddle_for_date(dt.datetime.now(),solutions=solutions)<br></br>    date = date_for_riddle(riddle_num,solutions=solutions)<br></br>    slug = f"saturday-mac-riddles-{riddle_num}/"<br></br>    <br></br>    result = f"https://eclecticlight.co/{date.year:04d}/{date.month:02d}/{date.day:02}/"<br></br>    if solutions:<br></br>        result += f"solutions-to-{slug}"<br></br>    else:<br></br>        result += slug<br></br>    <br></br>    if open_in_browser:<br></br>        import webbrowser<br></br>        webbrowser.open(result)<br></br>        <br></br>    return result

Perdón por haberlo escrito en inglés, pero dado que el sitio de Howard Oakley está en inglés, lo preferí. Con ese código en Python, ahora podéis teclear algo como:

url_for_riddle(-1,True,True)

Y se abrirá en vuestro navegador por defecto las soluciones a la última charada de Howard Oakley.

https://juandesant.wpcomstaging.com/2024/03/21/the-eclectic-light-company-y-las-charadas-de-howard-oakley/

jake4480, to RSS
@jake4480@c.im avatar

Getting back into RSS after finding an app I like for Android, Feeder (https://play.google.com/store/apps/details?id=com.nononsenseapps.feeder.play). Only thing I don't like about it is that when you read something, it marks it read instantly & removes it from your feed altogether instead of just leaving it there read like I'd prefer.

But you can save favorite posts before you close/back out of them for reference - you just have to remember to do it.

Other than that, Feeder is a GREAT app with an excellent simple, intuitive UI. I now have 30 blogs in it that I follow and check regularly.

Quinn9282, to RSS
@Quinn9282@mas.to avatar

The #RSS protocol launched 25 years ago today on March 15, 1999! :rss:

...And it's still cruising on to this day! 😁

https://en.wikipedia.org/wiki/RSS

#Indieweb #SmallWeb #Blogs

jonny, to random Portuguese

Pensando em alternativas federadas ao Tumblr e mais completas para blogs que o WriteFreely, acabei de descobrir a existencia do Wordpress MU (multisite). Basicamente uma instalação do Wordpress que permite ter vários blogs, e dá pra ativar o plugin do ActivityPub por padrão pra todos.

Fica a questão da viabilidade e sustentabilidade de manter um servidor desse...

strypey, to random
@strypey@mastodon.nzoss.nz avatar

"What matters is... immersion in comprehensive treatment of a topic, as opposed to a blog-style linear sequence of short, frequent postings commenting on the hot topic of the day. It doesn't matter what software is used to host the content, the distinctions are:

  • in-depth vs. superficial
  • original/primary vs. derivative/secondary
  • driven by the author's expertise vs. being reflectively driven by other sites or outside events"

#JakobNielsen, 2007

https://www.nngroup.com/articles/write-articles-not-blogs/

#LongForm #blogs

mez, to webdev
@mez@mastodon.nz avatar

What’s your favourite way to add working examples of code in your blog posts that isn’t CodePen? Both for CSS and JS example code.

Thinking a basic web component with declarative shadow DOM might do it nicely since it will fully encapsulate the code? Maybe wrap it in @zachleat browser-window or resize-asaurus component.

#WebDev #Blogs

joel, to random
@joel@fosstodon.org avatar

It's nice to find random #blogs and #PersonalWebsites that mention me, makes me happy :ablobcathappypaws:

https://pupontech.com/i-have-found-the-old-internet-and-i-am-happy/

ajsadauskas, (edited ) to fediverse
@ajsadauskas@aus.social avatar

Are there currently any Substack replacements that integrate with ActivityPub?

So I'm currently looking for a Substack substitute for taking donations.

I'd want it to feature a blog (and preferably newsletters too) that include a mix of publicly-accessible posts, as well as posts that are only visible to donors.

And ideally, I want it to also integrate with ActivityPub too.

That might mean a Fediverse post is automatically generated when a new blog post is published. Or potentially the publicly visible blog posts are published in full to the Fediverse.

Now, I know there are a few donations platforms that can handle the first part, such as Ghost and Ko-Fi.

There are also blogging platforms such as WriteFreely/Write.as and Micro.blog that integrate with the Fedi.

And in theory you could do both with a WordPress blog and number of plugins, some paid. But especially with paid plugins, that's likely to get quite expensive quickly. (Not to mention some of the questionable things that have happened at Automattic in recent weeks.)

But are there any platforms out there that support both?

Or is the best option at this stage just to get a Ko-Fi/Ghost account for the donations and donor-only posts, with a separate micro.blog or write.as account for the publicly accessible posts?

@asklemmy #fediverse #substack #blogs

davidbisset, to apple
@davidbisset@phpc.social avatar

TIL There is a service that turns #Apple notes into #blogs.

https://quotion.co

chrisod, to blogging
@chrisod@fosstodon.org avatar
nazhamid, to blogging
@nazhamid@mastodon.social avatar

This took more time to finish once photos came into the equation, but is all the more better for it. It doesn’t capture the lows of 2023, and some deeply personal things aren’t mentioned, but I’m glad I put this together to look back on.

My 2023.

https://nazhamid.com/journal/2023-in-the-rearview/

amoroso, (edited ) to blogging
@amoroso@fosstodon.org avatar

Do you have an active blog?

By active I mean updated within the past 6 months. A Mastodon account is not a blog for the purpose of this poll.

#blogging #blogs

  • All
  • Subscribed
  • Moderated
  • Favorites
  • provamag3
  • kavyap
  • DreamBathrooms
  • cisconetworking
  • khanakhh
  • mdbf
  • magazineikmin
  • modclub
  • InstantRegret
  • rosin
  • Youngstown
  • slotface
  • Durango
  • tacticalgear
  • JUstTest
  • ngwrru68w68
  • everett
  • normalnudes
  • cubers
  • tester
  • thenastyranch
  • osvaldo12
  • GTA5RPClips
  • ethstaker
  • megavids
  • anitta
  • Leos
  • lostlight
  • All magazines