All Questions

1
answer

Use material library with angular

I'm trying to use angular-material <mat-menu #menu="matMenu"> <button mat-menu-item> <mat-icon>dialpad</mat-icon> <span>Redial</span> </button> <button mat-menu-item disabled>...
asked on 05.02.2018 / 16:33
1
answer

Systems of nonlinear equations in python

I have the following concern with a nonlinear equation system in python : from scipy.optimize import fsolve as fs def nonlinear(z): '''Solve a sistems 2x2 not linear ''' x, y = z[0], z[1] f1 = (x**2)+(y**2)-2*(4.41*x+2.68*y)+...
asked on 30.01.2018 / 04:06
1
answer

Vertical text in a TD CSS does not fit edges

I need the text that I have inside a td appear vertically from bottom to top, I get the address but since the td has a background color, I get out of the border line that I put on the td ... I found already own functions of the css as: writing...
asked on 31.01.2018 / 21:38
1
answer

How to change the orientation of the page with the mPDF library?

I have a problem with a pdf generated with the mPDF library, I need to change the orientation of the page from vertical to horizontal ... can someone help me?     
asked on 02.02.2018 / 19:23
2
answers

Parameter step of a viewController son to parent after doing a dismiss

From a parent controller I call another child ( popoverContent ) with self.present , the child driver is a typical view in the form of a popup that I end up closing with a dismiss but I want to pass some data to the parent view....
asked on 30.01.2018 / 23:10
1
answer

Hibernate object problem!

Good morning, everyone! I have a problem with the objects in Hibernate. This is the method I use to extract the object: public Moto loadMotoId(SessionFactory SessionBuilder, int idMoto) { Session conexion = SessionBuilder.openSession();...
asked on 01.02.2018 / 16:16
1
answer

Error Notice: Undefined offset: 0 when getting PHP PDO data

By using the following function I get that error, the function is used to verify whether or not there is a string in DB , if it does not remove that error, but if it does not exist I get the error    "Notice: Undefined offset: 0" I...
asked on 01.03.2018 / 20:56
2
answers

Select all odd elements, but nth-of-type (odd) does not help [closed]

I'm doing an exercise in which I have to color all the odd items in one color and the pairs in another. As I have each article separated by section , I have implemented in CSS the following: section:nth-of-type(odd){ background: #D...
asked on 30.01.2018 / 20:17
1
answer

Open a view from another

In my login.blade.php view I have: <div class="container" id="forgot"> <a href="" id="text-forgot">RECUPERA TU CONTRASEÑA</a> </div> How do I make that from that href open my other view mail.blade.php...
asked on 25.02.2018 / 23:35
2
answers

How to search for an object in Array?

What I want to achieve is, look for an object in array . Always return -1 whatever you want to say that you can not find any match in array to get your index and then delete that element. I print the array twice, the first...
asked on 01.03.2018 / 15:45