Posts by Patrick de Freitas • 59 points
5 posts
-
1
votes1
answer124
viewsQ: reverseOrder() In java not reversing
I have a method in java to sort a vector in a decreasing method, but when I run the test it returns me the unpaired vector. Follows the Method: public void sort() { int vet[] = this.vetor;…
-
1
votes1
answer117
viewsA: Navigation and Sticky Nav
I created one using Bootstrap this way, jQuery(document).ready(function(){ var navOffset = jQuery("nav").offset().top; jQuery(window).scroll(function(){ var scrollPos = jQuery(window).scrollTop();…
-
1
votes1
answer459
viewsA: Get custom Category from a custom post type
Hello. I managed to do using this formula <?php $taxonomia = "sua taxonomia"; $terms = get_terms($taxonomy, array( "orderby" => "count", "hide_empty" => false, )); foreach($terms as $term)…
-
-3
votes2
answers275
viewsQ: Find patterns within a String
I’m having trouble finding two patterns inside a java string, given a string. For example: String str =…
-
2
votes1
answer425
viewsQ: Ajax filter in wordpress
Hello, I wonder if anyone has done any functionality like this site, http://www.todeschinisa.com.br/pt/onde-encontrar filtering the posts using a form and ajax so you don’t need to give the page the…