Jump to content

prgm0

Member
  • Posts

    9
  • Joined

  • Last visited

Awards

This user doesn't have any awards

  1. Do you use a webserver for your page which has PHP? Then you can get the data by using cURL: <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => true, CURLOPT_URL => 'YOUR_URL' )); $response = curl_exec($curl); curl_close($curl); //do stuff with $response ?>
  2. Why do you not want to use JavaScript for that? After searching some time I found something, you could use the "checkbox-hack": https://jsfiddle.net/t2t3gor1/5/ I got the idea from here https://stackoverflow.com/questions/13630229/can-i-have-an-onclick-effect-in-css/32721572#32721572
  3. Disp "Enter x1 for V1:" Input A Disp "Enter x2 for V1:" Input B Disp "Enter x3 for V1:" Input C Disp "Enter x1 for V2:" Input D Disp "Enter x2 for V2:" Input E Disp "Enter x3 for V2:" Input F ClrHome (B*F)-(C*E)->G (C*D)-(A*F)->H (A*E)-(B*D)->I Disp G,H,I Program for calculator TI-83Plus to calculate the cross-product of two vectors
  4. Basically thats all you need for what you want to do, connect your laptop to your FTP-Server at night and upload the data you want. By using dynamic DNS or your static IP you could do that from wherever you are. Maybe also setup OpenVPN so that nobody else can reach your FTP-Server except you.
  5. You could combine this with a webpanel then you would have a FTP Server and a webinterface for it
  6. Just searched it found this: https://www.keyhero.com/custom-typing-test/
  7. If you don't need a "real" FTP-Server, only an "online-filemanager" thingy then check out https://studio-42.github.io/elFinder/ pretty simple to use
×