2

Pet database

A few weeks ago, I just wanted to put together a simple food calculator for my dog. What I ended up with is a system that can do a lot more. With a little goodwill, you could call it an early alpha version. I didn’t put much effort into a good UI design. Everything was created based on the needs I had at the moment—whether I wanted to enter something or needed some information. So it’s a bit chaotic.

License: CC0

Maybe someone will find it interesting.

6 replies

null
    • nrth3rnlb
    • 2 days ago
    • Reported - view

    Another version in which a number of changes have been made, and which has been expanded and adapted.

    • nrth3rnlb
    • 2 days ago
    • Reported - view

    I'd like to be able to retrieve the weather data for the activity log by clicking a button. Has anyone done something like this with Ninox before?

      • nrth3rnlb
      • 2 days ago
      • Reported - view

      https://forum.ninox.com/t/x2yx8ql/api-calls-in-ninox

      Two functions are primarily used: http and formatJSON.

      var _url := "https://api.weatherapi.com/v1/current.json?q=" + LOCATION + "&key=" + API_Key;
      var _response := http("GET", _url);
      var _response_json := formatJSON(_response.result);
      • Ninox partner
      • RoSoft_Steven.1
      • 20 hrs ago
      • Reported - view

       Maybe the reason is the second line of the code:

      var _response := do as server http("GET", _url) end;
      • nrth3rnlb
      • 13 hrs ago
      • Reported - view

      Thank you. What is the technical difference?

      • Ninox partner
      • RoSoft_Steven.1
      • 3 hrs ago
      • Reported - view

      Well, it has to do something with CORS : https://forum.ninox.com/t/y4yz1l4/scripting

Content aside

  • 2 Likes
  • 3 hrs agoLast active
  • 6Replies
  • 39Views
  • 2 Following