All Questions

4
answers

How to delete an item from an array by attribute value?

I have the following array with some items: var arr = [ {id: 1, name: "Jon Snow"}, {id: 2, name: "Michael Scolfield"}, {id: 3, name: "Dexter Morgan"} ]; To add a new item, the push method is used. Exactly this way:...
asked on 02.06.2017 / 16:55
2
answers

Factorial Series of thehuxley.com site

Make a program that computes and writes the sum of the n first terms of the series: seriefatorial http://www.thehuxley.com/data/images/app/ problems / temp / e68085c6d699d2c7029907f994c57b80.png Input format An integer n indicating t...
asked on 04.05.2014 / 05:22
2
answers

How to validate fixed and mobile phone number jQuery Validator?

I need a cell phone and landline validation method with the jQuery Validator plug-in. Differentiation of fixed-to-mobile numbers is important in order to validate the sending of SMS.     
asked on 07.05.2014 / 22:29
1
answer

Differences @OneToMany, @ManyToMany, @ManyToOne, @OneToOne [duplicate]

I wanted to mount a database with Java Hibernate like the one below: Questions: What is the difference between @OneToMany , @ManyToMany , @ManyToOne , @OneToOne ? And what would your statement look like in...
asked on 04.09.2017 / 20:26
3
answers

Scrypt, Bcrypt or anything else

I am choosing a hash algorithm for the passwords of a system I develop. At the beginning of my "programmatic" I used MD5 , SHA-1 and its derivants. After a while I chose Whirlpool and now I'm looking for something more robust...
asked on 27.02.2014 / 19:04
2
answers

Creating JAR with Dependencies in Maven

I want to use Maven to generate the JAR with its dependencies in .jar format, the solutions I found are not valid. Eclipse has three ways to generate an executable JAR. Extract required libraries into gerenated JAR Package...
asked on 06.03.2014 / 13:08
2
answers

Entity Framework is saving duplicate values when saving entities with relationship N to N

I have an entity called Book that has among other attributes a list of categories. In my model a book can have multiple categories and vice versa, so we have a N relationship for N. The EF therefore creates the books table, the category table an...
asked on 12.02.2014 / 22:21
1
answer

Is it possible to create applications for Android using HTML5?

I really wanted to start developing applications for Android phones, but I have almost no knowledge about the operating system SDK, I have more knowledge about HTML, Javascript, CSS. I have in mind that creating an Android app should be well...
asked on 15.04.2014 / 04:28
2
answers

Which improves performance: use "async" or put script at the bottom of the page?

It is often cited as good practice for performance: Put tags <script></script> at the bottom of the page, before </body> Use async: <script async="async" src="..." ></script> Which of t...
asked on 02.06.2014 / 18:02
1
answer

What is the difference of the MVC web for MVC desktop / mobile?

Apparently the MVC template as it is used in web (RubyOnRails, CakePHP, etc.) is different from MVC as an employee in desktop (Delphi, Android, etc.). In the desktop it seems to be more coupled to the interface than in the web . What'...
asked on 07.07.2014 / 12:56