I'm trying to create an overly simplified version of bash, I've tried split the program into "lexer + expander, parser, executor". In the lexer i store my data
I have a function template that takes in a 3D vector (anything that has a bracket operator and three elements: MyCustom3DVector, float[3], double*, etc.) and co
If we want to restrict useEffect to run only when the component mounts, we can add second parameter of useEffect with []. useEffect(() => { // ... }, []);
I have a table (pandas dataframe) as follows. id y val1 val2 val3 ... 1 100 3 1 2 1 150 1 2 4 1 250 4 2 6 2 200 3 1 4 2 250 2 2 2 2 350 4 2 4 3 200 3 3 4
I have a table similar to this one: name total_hours_played George 2 Martina 5 From which I want to generate a table such as this one: name hours_played_thro
I have a file named as text containing all hexadecimal numbers. I wrote the following code to convert those values to decimal: for line in `cat text`; do arp=
I calculating ((A^B)/C)%M, but my code is not working when A,B,C,M are large in numbers. This code is giving right answer when A,B,C,D is small int. What is wr
I am using PowerShell 3. What is best practice for concatenating files? file1.txt + file2.txt = file3.txt Does PowerShell provide a facility for performing
Our main app allows our users to post media (videos and images) as well as documents on the timeline with a file size limit of 500 megabytes on a timeline. We'r