this post was submitted on 04 Jul 2023
16 points (94.4% liked)

Ask Lemmy

26292 readers
1690 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 1 year ago
MODERATORS
 

I'm thinking of looking at the Lemmy api and that's best done when you have some actual problem to solve!

So, is there any bot that you'd like to see?

you are viewing a single comment's thread
view the rest of the comments
[–] rikudou@lemmings.world 1 points 1 year ago (1 children)

Added it along with the ability to respond to mentions. Once it's deployed, it should respond to your mention (hopefully, it was kinda huge overhaul of the code).

[–] XpeeN@sopuli.xyz 0 points 1 year ago* (last edited 1 year ago) (1 children)

Worked on my mention :)

Just throwing out an idea, feel free to ignore it XD

I think that if one would write a quick "how to write a site handler" with a built-in template (like I've seen used), I'm sure many will contribute and send PRs for their favorite sites. If you're interested of course. I don't mind volunteer for doing it either.

[–] rikudou@lemmings.world 2 points 1 year ago (2 children)

If you feel up to it, I'll gladly accept it! I'm planning on doing it myself, but I'm not sure when I'll have the time.

[–] XpeeN@sopuli.xyz 2 points 1 year ago

I think I can do it tomorrow, hopefully it won't slip my mind

[–] XpeeN@sopuli.xyz 1 points 1 year ago* (last edited 1 year ago) (2 children)

How to make a site handler:

  • Go to your favorite news site (for example: euronews.com)
  • Go to a random article
  • Go to the blank space inside of the actual article (Not the summary that's usually on top)
  • Right click on that spot and go to inspect

In our example:

  • Then, look at the div HTML element it selected for you, and try to go up to the Parent div element as long as when you select it, only the body of the article get mark. In our example, when I did the inspect step, I got this div element marked:

But, as I went up the tree like the last step said, I found this div:

You might think to go even upper like this:

But as you can see, the browser highlighted parts that aren't the body of the article itself. So...don't.


Now that we got the correct div, we'll fill the siteHandler template like this

Then,

  • Save that template as SiteHandler.php (in our example, EuronewsSiteHandler.php )
  • Send PR to the Official AutoTldr repo with the file you just created.
  • DONE

Edit it as you wish, or let me know if you need me to do so. No need for credit obviously, just helping improve this amazing tool is enough :)

Note: I had to use that codefile website because something went wrong with the code markdown.

[–] rikudou@lemmings.world 0 points 1 year ago (1 children)

Thank you very much! I've saved the comment and when I have time I'll include it in the repository's readme.

[–] XpeeN@sopuli.xyz 1 points 1 year ago* (last edited 1 year ago)

NP, but I'd advise you to safe it somewhere else as a whole as I don't know for how long that code sharing website host the templates. Although you can easily rewrite this part.