2024-08-17

Links

 https://nomadmania.com/my_map/

const response = await fetch('https://jsonplaceholder.typicode.com/posts/1'); // Fetch data from API

https://jsfiddle.net/
https://codesandbox.io/

https://owasp.org/www-project-top-ten/

namecheap.com, hostinger.com

https://app.gptzero.me/
platform.openai.com
copyleaks.com
huggingface.co
quillbot.com

https://picsum.photos/
https://pixabay.com/photos/search/cook/

https://rx-tx.info/map-sdr-points?freq_of=28&freq_to=28&bands=All&country=All&title=&qth=&url=#close
http://sdr.so8oo.net/
http://www.websdr.org/
http://sdr.noip.pl:8073/#freq=439600000,mod=dmr,sql=-46
http://sdr.racuszki.pl:8073/#freq=88000000,mod=wfm,sql=-150
http://om7zy.proxy.kiwisdr.com:8073/

2024-08-06

Selenium

 https://googlechromelabs.github.io/chrome-for-testing/#stable

unzip & copy to /opt/chromedriver


download latest chrome.deb; 

sudo dpkg -i google-chrome-stable_current_amd64.deb 


pom.xml: 

<dependencies>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.23.0</version>
</dependency>
</dependencies>

System.setProperty("webdriver.chrome.driver", "/opt/chromedriver");

WebDriver driver = new ChromeDriver();

driver.get("http://www.google.com");