Questions by Rylee Fay
Database structure for “customer” table having many orders per customer and many items per order?
I am trying to create a database where each customer has several orders(new orders daily) and each order has several...
How to implement Vertical dotted line below image in Android??
How can I achieve this kind of layout without using any library?? I tried something like this but was unable to g...
How can I produce a MATLAB bar graph of categorical responses??
I have a 646x108 array of 646 student responses to 108 exam questions. It was a MCQ exam and all the responses are A...
Jersey - Redirect after POST to outside URL?
I'm using Jersey to create REST API. I have one POST method and as a response from that method, user should be redir...
passing object by reference in C++?
The usual way to pass a variable by reference in C++(also C) is as follows: void _someFunction(dataType *name){ // ...
how to create a custom datatype in java??
I want to create an custom datatype in Java,for example datatype Email , that having following method isValidate(Str...
range over character in python?
Is there an way to range over characters? something like this. for c in xrange( 'a', 'z' ): print c I hope yo...
MySQL: SELECT * FROM table WHERE field=“some text” doesn't work?
I am trying to INNER JOIN two tables on a text field, but I can't get it to work. I've backtracked to see if I can i...
Setup FTP in same IP but different ports??
Hi have an ip address that has an FTP already setup on it (port 21). When I add another FTP site in IIS with the sa...
Get domain name?
My computer is in a Domain (Active Directory) and I need to get the domain name dynamically. I found the following c...
Getting “java.net.ProtocolException: Server redirected too many times” Error?
I'm making a simple URL request with code like this: URL url = new URL(webpage); URLConnection urlConnection = url....
Using the RUN instruction in a Dockerfile with 'source' does not work?
I have a Dockerfile that I am putting together to install a vanilla python environment (into which I will be install...
How to extract a substring using regex?
I have a string that has two single quotes in it, the ' character. In between the single quotes is the data I want. ...
What does <> mean??
I have seen this before in SQL and VB, I am now reverse engineering an Excel speadsheet and have come across the fol...
What is an unsigned char??
In C/C++, what an unsigned char is used for? How is it different from a regular char? ...