I'm working on an embedded DSP where speed is crucial, and memory is very short. At the moment, sprintf uses the most resources of any function in my code. I o
I'm working on a web service that is basically a wrapper around an Oracle Stored Procedure and it currently has 11 parameters. It's not that there are 11 argume
I have json file mydata.json, and in this file is some json-encoded data. I want obtain this data in file index.html and process this data in JavaScript. But a
I am on MacOS, installed the JDKs 8 ( LTS ) from AdoptOpenJDK to get the android environment up and running and that worked fine! brew cask install adoptopenjdk
How do I add a description to a field in GraphQL schema language !! btw I'm working with django framework. Thnx for advance
I want to use boundary fill algorithm with cpp in Visual Studio Environment. I tried to run some code parts for it, but I faced to face an error at every turn.
I am required to make a program that checks if a number is prime or not. After checking if the number is prime or not the program should ask the user whether th
I don't know exactly where to ask, so I'll just ask here. We would like to build an online 3d-character generator for a project, which should run completely in
Code print("Before : ${GetStorage().read("XXX")}"); GetStorage().write("XXX", 1); print("After : ${GetStorage().read("XXX")}"); This is my Code. Ev