All Questions

4
answers

What ways to measure the performance of an algorithm?

If I have, for example, some sort algorithms (Merge sort, Quick sort, Bubble sort ...) in which way (s) can I know the efficiency of each?     
asked on 17.11.2015 / 14:34
1
answer

How to put authorship using MIT license

According to the MIT license I have to put the copyright and where? Or do not I need to put it on? MIT License    The MIT License (MIT)       Copyright (c) 2014-2015 almasaeed2010       Permission is granted, free of charge, to any perso...
asked on 15.03.2015 / 17:38
4
answers

Is there a programming language in Portuguese? If yes, what are they applied to?

As we are accustomed, "all" programming languages (or almost all, I do not know) follow the American standard, both in English (% with%,% with%,% with%,% with%,% with %) as well as date / time and currency format (eg date: yyy / mm / dd). Is...
asked on 21.10.2017 / 00:34
3
answers

How to put Html snippet on all children elements except the last one?

I have a dynamically generated table, and I want to put input inside every td . I can get the id of tr , so I do: $("#id").children().html("<input type='text' value='" + valor + "' />"); So it puts a input wi...
asked on 12.01.2016 / 14:47
2
answers

Why can not I declare an attribute as an object?

I have a class A and I'm creating a class B . I want one of the attributes of B to be an object of A . Why is the public $objeto = new A(); notation correct?     
asked on 11.07.2017 / 20:06
3
answers

What does the error "Scripting have been disabled on this system"?

I was testing some things from PowerShell ISE to be able to mount scripts. I realized that while I was running the script without saving the file, the commands were executed normally. However, shortly after saving the file on the deskt...
asked on 13.07.2017 / 14:09
5
answers

Is it possible to integrate the GIT with some task manager?

Is there any way to integrate a task manager (let's suppose, Trello) where the developer, when committing his activity, associates it with some specific task? In research I found Trello with GitHub, but the purpose of this one is free and w...
asked on 11.05.2015 / 15:42
3
answers

What content-type is suitable for files such as: .doc, .docx, .xls

What is the content-type suitable for files such as: .doc , .docx , .xls (general package files), .pdf , media files and other less common files such as Photoshop and AutoCAD ?     
asked on 07.12.2015 / 17:08
2
answers

What is the var difference between Kotlin and Java?

With the release of Java 10, the possibility of using var was introduced: var list = new ArrayList<String>(); I have already seen what is the difference between
asked on 25.05.2018 / 22:12
2
answers

Arrows using CSS only

I would like to know, if possible, to make the following arrow using only CSS: I use to make other types of arrows, using CSS, but whenever I deal with cases like this, where the arrow has a transparent background, I use images.     
asked on 12.11.2014 / 20:01