mtplot lib add a line parallel to x axis
By Byron Thiel at May 02 2020
You are given a 2-D array with dimensions X
By Kay Bednar at May 19 2021
JavaScript to Standard Form converter (times 10^x)
By jishan at Mar 09 2022
Find all files bigger than X k
By Fernando Jenkins at Mar 23 2022
removing old mysql on snow leopard os x
By Grady Schinner at Apr 19 2022
New gnuplot terminal under OS X (aqua)
By Sean Fay at Apr 21 2022
Start and stop MySQL server on OS X
By Lee Hilpert at Apr 21 2022
void insertionsort(int * a, int n) { int i, j, x; for (i = 1; i < n; i++) { x = a[i]; j = i - 1; while (j >= 0 && a[j] > x) { a[j + 1] = a[j]; j = j - 1; } a[j + 1] = x; } }
By Maxine Rempel at Sep 24 2020
1.2+(sqrt(1-(sqrt(x^2+y^2))^2) + 1 - x^2-y^2) * (sin (10000 * (x*3+y/5+7))+1/4) from -1.6 to 1.6
By MinuteMaker42 at Jul 23 2021
js get elements in array from x to y
By Cesar Turner at Oct 19 2020