Well, I'm trying to integrate two web pages (index.html and comunidade.html), where the first one is a form where you input some data and the second one is the
var age = prompt("Enter your age"); if (age < 18){ alert("Sorry, you are too yound to drive this car. Powering off"); } else if (age > 18){ a
I have a pyspark dataframe that looks like this: import pandas as pd so = pd.DataFrame({'id': ['a','a','a','a','b','b','b','b','c','c','c','c'],
In the ffmpeg documentation, an example of mp2 decoding is given. I try to apply this to mp3: #define SOURCE_FILE "ignore/audio01.mp3" #define TARGET_FILE "igno
I have a Hashmap<Long, List<Foo>> myMap. I want to remove an item from any List<Foo> where the Foo.key equals value assign to the key variable
I have this code in my vertex shader: in vec3 geometry; in vec4 offset; // xyz - offset, w sizeFactor in vec4 rotationQuad; in vec2 textureCoord; in vec2 textur
I am trying to use Process() to start a task in Swift, but I need to see what is being sent to the shell for debugging purposes. I am trying to send the followi
I want to append to an empty Dataframe a JSON format as a value inside a column like the following way : In [1]: df Out[1]: id color_probility
I want to save all the generated .o files under the folder $(BUILD_DIR). Although I did not edit any flies, all the src files will be recompiled. Thanks to @Joh