Home Software 01 Github 02 Colabs 03 Shell Basics 04 Apis 05 Webscraping 06 Nbdev 07 Javascript Packag... 08 Cloud Functions 09 Browser Extension Css Css Animations Javascript Llm Paradigms Protocols Websites

Don't Look! I'm changing!

URL Copied

https://github.com/karanpratapsingh/system-design

option 1. use an ssh tunnel, then you can connect one machine to another as if it would be localhost ssh -f -N -L 127.0.0.1:11434:127.0.0.1:11434 root@your-remote-server

HTTP Header

myInit = { method: 'GET',
                headers: {
                    'Content-Type': 'application/javascript'
                },
                mode: 'no-cors' };
 url = "https://charleskarpati.com/cv/dialogs/holiday.js?t="+Math.floor(Math.random() * 100000)
 
 myRequest = new Request(url, myInit);
 
 
  
 
 fetch(myRequest).then(function(response) {
   return response.text();
 }).then(function(response) {
   console.log(response)
 });