Posts by Bruno Carvalho Silva Correa • 53 points
4 posts
-
0
votes0
answers35
viewsQ: Remove the first commits from Git Code
Is there any way to reduce the history of git by removing older commits? Assuming a Repo has 5000 commits and removing the first 2500 commits.
-
4
votes2
answers3370
viewsQ: Bring Datatable columns by Datatabe Ajax itself
Is there a way to bring Datatable columns through the API from Ajax? As an example we have this following code $(document).ready(function() { $('#example').DataTable( { "processing": true,…
asked Bruno Carvalho Silva Correa 53 -
0
votes1
answer42
viewsQ: Return Ids searching for the value of a multidimensional array
Is there any way without using foreach, using only native PHP functions to return an array with ids searching everyone with value 'a' ? Example: $lista = array( array( 'id' => '100', 'name' =>…
-
0
votes2
answers38
viewsQ: Quantity of elements that has at least the reported value
I have an array that can be any size, an example below: Array ( [0] => 40631 [1] => 40626 [2] => 40622 [3] => 40633 [4] => 59632 [5] => 40630 [6] => 40623 [7] => 40627 [8]…