I have the following code that makes a phone call: public static void CallPhoneNumber(this Context context, string phoneNumber) { var uri = Android.Net.Uri.
I am using pyspark to read a parquet file like below: my_df = sqlContext.read.parquet('hdfs://myPath/myDB.db/myTable/**') Then when I do my_df.take(5), it wi
I have trouble with BLDC motor that i'm trying to control with STEVAL SPIN3204 evaluation board. at the start I am checking the Hall sensors and the motor shoul
I am building a django application and am presently working on the login system. I want to implement following things:- Inactive users are redirected to a sessi
I am trying to solve a problem on usaco which is give a string S and another string smaller than it T and ask to remove all the occurences of T in S. so my appr
I have found that the easiest way to build my program argument list is as a vector of strings. However, execv expects an array of chars for the second argument.
I have the following view but the search filter is not being applied. What am I missing? class ListMyModelView(generics.ListAPIView): permission_classes =
I have a pandas dataframe X with 6 columns and a dataframe Y with 4 columns. I'd like to forecast every row from Y using X, but without using the row that I wan