Lemmy Shitpost
Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.
Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!
Rules:
1. Be Respectful
Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.
Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.
...
2. No Illegal Content
Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.
That means:
-No promoting violence/threats against any individuals
-No CSA content or Revenge Porn
-No sharing private/personal information (Doxxing)
...
3. No Spam
Posting the same post, no matter the intent is against the rules.
-If you have posted content, please refrain from re-posting said content within this community.
-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.
-No posting Scams/Advertisements/Phishing Links/IP Grabbers
-No Bots, Bots will be banned from the community.
...
4. No Porn/Explicit
Content
-Do not post explicit content. Lemmy.World is not the instance for NSFW content.
-Do not post Gore or Shock Content.
...
5. No Enciting Harassment,
Brigading, Doxxing or Witch Hunts
-Do not Brigade other Communities
-No calls to action against other communities/users within Lemmy or outside of Lemmy.
-No Witch Hunts against users/communities.
-No content that harasses members within or outside of the community.
...
6. NSFW should be behind NSFW tags.
-Content that is NSFW should be behind NSFW tags.
-Content that might be distressing should be kept behind NSFW tags.
...
If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.
Also check out:
Partnered Communities:
1.Memes
10.LinuxMemes (Linux themed memes)
Reach out to
All communities included on the sidebar are to be made in compliance with the instance rules. Striker
view the rest of the comments
This is usually true but but not always. There's often times when a URL query like that is used to choose the page to load. I believe wordpress does this
Only on "I have really bad SEO" kinds of blogs. Query strings have been considered a negative thing for many many years.
Youtube has the video ID as a query parameter, to use the most obvious example...
whuh? querystrings are integral to things like pagination. they are by no means a negative thing.
It’s really weird how SEO snake oil salesmen have broken the web.
The “no query parameter” rule is such a dogma to the cult that your normal tooling for pages has to go through some weird ass hoops so that it can show up instead as a slug in the URL.
I hate SEO and SEO peddlers
I wouldn't call it integral, pagination query parameters can be in the url params just as easily as in the querystring
Pagination query params can be in the URL params, but that’s not normal at all. They’re pretty much always use query params, and it’s very reasonable to do so. Filtering, search, and pagination all typically go in query params.
that's very hard to make idiomatic, and if it's in the querystring it's easier to change manually because you can annotate each entry more easily.
Most systems these days do rewrites (like Apache mod_rewrite) to keep the query parameters out of the URL. Even for pagination. It's not necessarily on by default though because they don't know what environment you're in so you need to do things to enable it (like copy a .htaccess file and enable it in settings).
Not everybody cares for SEO BS
WordPress uses a taxonomic system you choose with a mix of the Settings page and how you organize your template hierarchy. To my knowledge there is no out of the box query url functionality in the core system.
There is.
?s=
for a search, and you can combine it with other parameters such as date or taxonomy terms.ah, you are right. I take it back.
Sometimes I'll post a picture straight from a duckduckgo search, and it doesn't work without the stuff after the ?
(I'm also not sure how long the url is valid for, so I try not to do this too often)