
Search In
Hay Guys,
I need your help. I have a task to getting information storage android programmatically (RAM, ROM, Processor, PCU). I hope all of you can help me.
Thanks
def sub_lists(list1):
sublist = [[]]
for i in range(len(list1) + 1):
for j in range(i + 1, len(list1) + 1):
sub = list1[i:j]
sublist.append(sub)
return sublist
l1 = [1, 2, 3, 4]
print(sub_lists(l1))
Hi,
I am trying to hit a MVC web API for deleting the record but i am getting the error that no resource found. I am able to hit the API using PostMan and fiddler but i am unable to hit it using Rest Clinet. Here is my code
var request = new RestRe
Hey guys i am working on the prototype like this:
https://www.youtube.com/watch?v=aGwqi5wK5ZA
how can i validate the characters like in this game.
And if he types wrong he is not allowed to type, Like if I need to type"Hello" , and user press 'e'
i want the code in php for user login from facebook
Hi everyone. I am not a JAVA person but I have a situation where I am suppose to check some 3000+ URL if they exist in a search index. I need a java script which can fire these URL one at a time to the search engine and record back the response if
The JavaScript while loop iterates the elements for the infinite number of times. It should be used if number of iteration is not known.
The syntax of while loop is given below-
while (condition)
{
code to be executed
}
Below is the simple
Exception handling in java is a way to catch error or exception
Exception is an event that can occur during the execution of the program.
We use try catch and final to catch error.
When an error occur in a method it creates an object of the error
This is one of the famous question which is unanswered clearly. I have posted it on stackoverflow link as follow:
http://stackoverflow.com/questions/33341069/uploading-captured-image-into-the-specific-folder-server-using-volley-library
I want to up
How to add Sqlite plugin using command prompt in iOS + Cordova app
