Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by smartboyy32

  1. S

    Extract price from string array and sort by price

    I need help determining the best way to extract the price value out of the strings in the array received from the API, and then reorder the array based on the lowest price values. These are some of the data that I received from the API. let luxcar_data = ["Ferrari70", "Bugatti45", "McLaren17"...
  2. S

    Python drop duplicated pairs only

    MenuItem takes an onClick handler, which it calls when it detects a click on itself or it's children. The fact that your error is undefined is not a function indicates that somewhere there is code that is calling a passed in parameter expecting it to be a function, and in reality nothing was...
  3. S

    Php script triggering python script in background

    Current Situation I created a php script, to start the python script. Following is the script: $python_file = "/var/www/web/test.py 2>&1 | tee -a /tmp/mylog 2>/dev/null >/dev/null &"; $command = "nohup python3 ".$python_file; exec($command); Problem: After triggering the php script, the...
  4. S

    How to reference/use Resource between multiple projects inside solution

    I find the answer: 1.right click on ClassLibrary2 2.select the item as follows: enter image description here 3.select the MyColor.xaml the click the "Add As Link": enter image description here 4.Add the MyColor.xaml in App.xaml 5.If I use StaticResource mygreen. The vs reports error still, but...
Top