All Questions

1
answer

With CSS is there any way to change the style of Text-Overflow: Ellipsis?

Imagine that I have a situation where the text is larger than the container , so I'll use text-overflow: ellipsis to put the 3 dots ... showing that the text goes on and on inside container has more content, so far so good. T...
asked on 13.11.2018 / 11:19
2
answers

How to configure the doctrine terminal together with a Codeigniter project?

I'm doing the Doctrine integration in Codeigniter but I'm having trouble configuring the command line. First of all it is worth mentioning that I followed the Doctrine page. In order to install the dependencies correctly, I used Composer...
asked on 30.01.2014 / 22:57
1
answer

Make a query in Linq and see in index

I wanted a linq query that shows the attributes of the availability table and the name of the respective catechist that is in the person table. In the index will appear: Nome | AnoPastoral | DiaDisponivel | HoraDisponivel | Observacoes I'm...
asked on 14.12.2015 / 13:24
1
answer

Get data from each row of a column in C #

It's as follows, I have a DataGridView with multiple columns. In each line of this DataGridView will be presented the installation path of a program. With this displayed value, I'd like to use it to get the size of that folder and...
asked on 05.06.2017 / 11:17
2
answers

What is the difference between git reset - file_name and git reset HEAD file_name?

To remove files from the staged area I use the command: $ git reset HEAD <file_name> However I accidentally applied the command: $ git reset <file_name> I forgot the HEAD of the command. When I did this I got the mess...
asked on 05.08.2018 / 00:34
1
answer

Why the OFF SET leaves SQL slower?

I have the following SQL, generated by Entity Framework 6. SELECT [Project1].[C1] AS [C1], [Project1].[ID] AS [ID], [Project1].[CAMPO1] AS [CAMPO1], [Project1].[CAMPO2] AS [CAMPO2], [Project1].[CAMPO3] AS [CAMPO3],...
asked on 17.11.2015 / 13:44
1
answer

Conflicts with the ConfideUser class

In my User model, I left my protected $table = 'usuarios' and in auth.php the same thing, but when calling the save() method of Eloquent, it recognizes table ' users ' and not ' users ' as I instantiated. So, I renamed the t...
asked on 17.01.2014 / 20:23
3
answers

How to obtain the tickets that were opened in the month of May?

I'm working with a database that contains all tickets registered in the otrs of the company where I work. I want to do a query where I return all tickets that were open in May. The problem is that a ticket can be opened and closed...
asked on 16.12.2015 / 12:02
1
answer

Rename the url with the contents of the database

How do I rename the url with the contents of the database in PHP using mod_rewrite ? For example: I have in the database a table named urls and I want to use this as follows. Let's assume that on my site I have a b...
asked on 03.04.2018 / 12:19
1
answer

Problems Xamarin method Asynchronous

In the event of a button of my APP had the following code it worked running in the android emulator, but when I passed the app to the cell phone generates a message the app stopped. Button buttonPessoasNecessita = FindViewById<Butto...
asked on 05.12.2015 / 19:14