• 1 Post
  • 9 Comments
Joined 1Y ago
cake
Cake day: Jul 24, 2023

help-circle
rss

No, my system language is set to English. If it’s working like that for you, then there must be some misconfiguration on my part… But I never specified anything regarding languages.


I have custom formats in my profiles, and nowhere there did I see any option to prevent titles in multiple languages being searched. Could you please be more specific as to where exactly I can find that setting?


The screenshot is from my prowlarr history. It sometimes takes forever and is wasting my bandwidth and potentially counting more towards request limits (not sure if there are any atm, but there could be). Can somebody please help me disable this "feature"? I have searched without success.
fedilink

The quote must not be escaped when you start with a single quote. The rest doesn’t. This is valid and tested: <img alt='my "<img>"'>


You can’t parse every html opening tag with regex, because a html opening tag doesn’t have a set structure. How would you match, with regex, this opening tag? <mytag myattribute="<value of \"myattribute\">" >


It can’t be done, as an opening tag in html can contain anything in its attributes, even JavaScript (e.g. onclick handler).



100%. TDD is just not practicably applicable to a lot of scenarios and I wish evangelists were clearer on that detail.


Not sure why you focus on arrays for deep copying. Deep copying objects is a problem in many languages and brings some challenges with itself that make it almost always necessary to delegate it to a library.


Client side logic is contained in markup, no custom JavaScript. Need server-side-rendering logic to return new markup to update a chunk of the page.