All Questions

2
answers

Test results do not appear in browser - grunt-karma

I'm using grunt and karma to do my project tests. But when I use the grunt test command, the results do not appear in the browser or in the command line. The only thing that appears is the following: This is my karma.conf.js file: '//...
asked on 01.04.2014 / 16:17
1
answer

How to display correct name in a bitwise enum?

I have the following enum marked as [Flag] , that is, they are values in bit [Flags] public enum Position { None, Left, Right, Both=3 } Sete for Both (both) position in 3 because if it is Left and...
asked on 13.04.2014 / 21:12
2
answers

Select with transition on change with onchange

How to add a transition effect ( fade ) in a select with onchange , that when the <div> object is changed the same happens a transition happens? Below is a print of the table that was made: Andhere'sthescript:<m...
asked on 25.03.2014 / 22:16
1
answer

How not to display past date records

I made a schedule and I need events that have already passed do not appear any more, the dates are with 3 DAY / MONTH / YEAR fields, I am using concat and date to join and format the dates, so the current query is as follows: $query = mysql_qu...
asked on 13.04.2014 / 07:38
1
answer

Using Spring Security

I'm using Spring security in a project, I was informed that I should get the jdbc driver and put it in the tomcat lib folder so that the whole spring process works correctly, since it would be tomcat that would make the connection, with bench f...
asked on 14.04.2014 / 15:56
1
answer

Simulation of TV Remote Control

I am developing a system where there should be a possibility for the user to interact with the program, pressing one or more numeric keys to change the display of multimedia contents (text, audio, video and image) simultaneously. Currently th...
asked on 14.03.2014 / 20:22
5
answers

How to get the total character size of an SQL column?

I want to get the total length of characters that a column supports, eg INT supports 10 characters. I tried to use DATALENGTH that does not return the number of characters , but the amount of bytes that the column occupies....
asked on 10.04.2014 / 20:39
1
answer

Query gets slow with ORDER BY

I have a problem, I have a query and when I use ORDER BY it gets very slow.    Note: I created an index for the premium field and another index for the score Follow the complete query: SELECT p.id AS id_freelancer, p.nom...
asked on 11.04.2014 / 22:35
2
answers

Transition effect in jQuery

I'm starting in jQuery and I have a question: is there any way to let the change go down with a kind of transition? <html> <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script><met...
asked on 20.03.2014 / 23:25
2
answers

How do I create a trigger that fires whenever I have an insert event in the table?

I need to create a trigger that fires whenever I have an insert event in the table, before it is inserted, it checks a condition, if the condition is respected it changes the value of a certain field that is being inserted. Example: -- id...
asked on 04.04.2014 / 15:53