Allen-ISD-Computer-Science / REPO_AutomaticDifferentiation_2024

Given some input equation, provide a numerical derivative at a given point. The user have a standard text input for the equation and point and the algorithm will provide the numerical derivative along with the steps the algorithm took to derive it. This algorithm will be able to differentiate trigonometric function, logarithmic, and exponentials.
GNU General Public License v3.0
0 stars 0 forks source link

Task: Write Java code that interfaces with POST endpoint #42

Closed DragonflyRobotics closed 7 months ago

DragonflyRobotics commented 7 months ago

Write a basic script detached from the Android app that uses JSON POST requests to interface with the Vapor endpoint. #38

DragonflyRobotics commented 7 months ago

This task is backlogged because to run a POST request in Android studio, we need to multithread/async the process, which involves excessive complication. Instead, we will write a stand-alone Java program compile it with JDK, and run it with JRE to ensure that we can at least make the REST call.

N1ks0n08 commented 7 months ago

a64019488df8e4f8f35df32182146a45014f46aa

Independent java class working that correctly sends POST request and sends/retrieves JSON data.