LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > LinuxQuestions.org > LQ Suggestions & Feedback
User Name
Password
LQ Suggestions & Feedback Do you have a suggestion for this site or an idea that will make the site better? This forum is for you.
PLEASE READ THIS FORUM - Information and status updates will also be posted here.

Notices


Reply
  Search this Thread
Old 03-31-2025, 10:22 PM   #1
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,395

Rep: Reputation: 51
Question Probably old change: does LQ demands having javascript, now?


[Log in to get rid of this advertisement]
Hello. This may be some fairly old change. But I used to use linuxquestions.org site having it as great site, and knowing it needed absolutely no javascript to work. Is this changed now? I tried to open it with javascript disabled, and the page I got has only one sentence written in it:

Quote:
Enable JavaScript and cookies to continue
What is the reason for this change? (I imagine the answer for the first question may include this, but if it does not...)
 
Old 04-01-2025, 12:21 AM   #2
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 8,323
Blog Entries: 21

Rep: Reputation: 4825Reputation: 4825Reputation: 4825Reputation: 4825Reputation: 4825Reputation: 4825Reputation: 4825Reputation: 4825Reputation: 4825Reputation: 4825Reputation: 4825
I used to be able to use the graphical version of Links on this site and that doesn't have a javascript engine. It runs like lightening but it doesn't work here any more. The problem is Cloudflare; you need javascript to get past their fences. On the other hand, if Cloudflare wasn't there, we'd have DDOS attacks all the time. We've seen some examples lately.

It's an example of the gradual ensh**ification of the internet.
 
Old 04-01-2025, 01:12 AM   #3
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,395

Original Poster
Rep: Reputation: 51
Arrow For me, it was never speed...

Quote:
Originally Posted by hazel View Post
I used to be able to use the graphical version of Links on this site and that doesn't have a javascript engine. It runs like lightening but it doesn't work here any more. The problem is Cloudflare; you need javascript to get past their fences. On the other hand, if Cloudflare wasn't there, we'd have DDOS attacks all the time. We've seen some examples lately.

It's an example of the gradual ensh**ification of the internet.
For me, the problem was never speed. And I never had any computer (or any kind of device) comparable to the best top ones at each period. But some "modern" things are simply just annoying, and they are so "modern" that they do not work.

Cloudflare does not like my "not standard browser" UA string. And it seems to be simply for that, it presented me with its screen. I had to make no test, though, which is good (I assume). But in the first access, just open the domain of the site, before I login... show captcha due DoS risk? Seems like too much...

(...)

I have much difficulty to use some kinds of captcha tests, of some companies. In one of them, which I would not be able to do the default test it presented me, I was able to see which alternative it could have for the test. And it mentioned an "accessibility cookie", and the simple reading of these words surprised me a lot! I chose that. And it asked me to create an account in page of that company, warning that none should abuse that. "Fine... of course this should be no problem" — I thought. For the account creation, initially, all I had to write was my email address and a password to use there. It seemed great... except that page complained that I should use a REAL email address! It said my email address was invalid! And since we are in the programming forum, I will just write a reguler expression that fits my email, so you see how simple and direct it is!

[a-z]+@[a-z]+\.[a-z][a-z]

Writing the above regex in human words, we write my email address with a sequence of: at least one lower case letter, it will be less than 10; an "@" symbol; at least one lower case letter, it will be less than 10; a dot symbol; two lower case letters. This is the email I wanted to use there. Invalid... do you think so? It does not even has subdomains, more dotss, numbers or underscores in the address! I even tested the above regex with a file which name which is exactly my email address, and made a 'rename' command (the Perl rename command version 1.13, which I have installed in my Debian today, and I love this command much more than other "rename" commands I have found around... I have this program saved separately, to take it anywhere! It is the best, IMHO!) to find my "email file": perfectly found.

(:
 
Old 04-01-2025, 03:15 PM   #4
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,444
Blog Entries: 7

Rep: Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972
I don't access this site with javascript, images or cross site scripts turned on. It loads fine.

Looks like this when you do it that way:
https://0x0.st/82j7.png

Which is fine for me. All I want to do is read the posts.

Every now and then, while trying to post in a code block, I'll have to turn scripts on to satisfy cloudflare. It depends on what the post is.
 
Old 04-01-2025, 03:20 PM   #5
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,444
Blog Entries: 7

Rep: Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972Reputation: 1972
Let me see about today.
Code:
#/usr/bin/python

#python-geopy

# importing geopy library
from geopy.geocoders import Nominatim
 
# calling the Nominatim tool
loc = Nominatim(user_agent="GetLoc")
 
# entering the location name
getLocA = loc.geocode("Gosainganj Lucknow")
getLocB = loc.geocode("Moscow Russia")
getLocC = loc.geocode("Erlangen Germany")
getLocD = loc.geocode("Miami Florida") 

for loc in getLocA, getLocB, getLocC, getLocD:
        print(loc.address)
 
# printing latitude and longitude
print("Latitude = ", getLocA.latitude, "\n")
print("Longitude = ", getLocA.longitude)
Edit:
I could post that today with scripts off.

Last edited by teckk; 04-01-2025 at 03:26 PM.
 
Old Today, 02:14 AM   #6
exerceo
Member
 
Registered: Oct 2022
Posts: 103

Rep: Reputation: 20
No JavaScript required. Thankfully.

I created this post with JavaScript disabled. Thankfully it is possible.

JavaScript should never be mandatory on any website, only for enhancements that are not possible otherwise. This is why I hate Discourse. Discourse's heavy and bloated JavaScript supports the bloat monopoly of Google. Why it's bad.

Last edited by exerceo; Today at 02:15 AM.
 
  


Reply

Tags
javascript



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Oracle demands dev tear down iOS app that has 'JavaScript' in its name LXer Syndicated Linux News 0 04-19-2018 12:01 PM
LXer: Our cloud-based future demands organizational change LXer Syndicated Linux News 0 04-15-2016 03:42 AM
LXer: Dr. Notes Cuts Off Customers, Demands Fee LXer Syndicated Linux News 0 07-06-2006 01:24 AM
LXer: IBM demands details of SCO dealings with HP, Microsoft, Sun LXer Syndicated Linux News 0 02-22-2006 09:16 AM
install demands SCSI cdrom? from floppy piratebiter Linux - Software 2 05-25-2005 08:02 PM

LinuxQuestions.org > Forums > LinuxQuestions.org > LQ Suggestions & Feedback

All times are GMT -5. The time now is 02:19 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration