Posts by Felipe Paetzold • 4,527 points
126 posts
-
1
votes1
answer246
viewsA: Copy the font folder using Gulp?
I found the problem, I was not calling this function on default. Follow the solution code gulp.task('default',['clear-build-folder'], function(){ gulp.start('copy-fonts'); elixir(function(mix) {…
-
1
votes1
answer246
viewsQ: Copy the font folder using Gulp?
How to create a task to copy the bootstrap font folder to the build folder? I created the following task but it’s not working. var config = { assets_path: './resources/assets', build_path:…
-
0
votes2
answers141
viewsA: How to rescue html text from database?
I’m using Aravel, my solution was to put the {!! !!} in the view.
-
1
votes2
answers141
viewsQ: How to rescue html text from database?
I’m using the editor TinyMCE, the data is saved correctly in the database, but I do not know how to rescue them and show them on the screen. It is returning me like this. Would anyone know how to…
-
0
votes1
answer52
viewsA: Error in the google-Charts console?
I discovered the problem, I was calling these functions even if id did not exist in the html view, the solution was to split into more than one file and import the files into their respective views.…
-
0
votes3
answers4250
viewsA: How popular google line chart Charts with JSON
I did it this way guys google.charts.load('current', {packages: ['corechart']}); google.charts.setOnLoadCallback(drawChartTicketsByClient); function drawChartTicketsByClient() { $.ajax({ url:…
-
0
votes1
answer52
viewsQ: Error in the google-Charts console?
The graphics are drawn correctly in html, but this error is in the console. VM6537:108 Uncaught Error: Container is not defined /*Graficos*/ google.charts.load('current', {packages: ['corechart']});…
-
2
votes1
answer761
viewsQ: Change the value of a <H1> with jquery?
I’m making an ajax call and need to change the value of the tag <h1> with the Sponse: $('#openTickets').ready(function() { var open = $.ajax({ time: 15, url: "/opened-tickets", dataType:…
-
1
votes1
answer403
viewsQ: Error to popular google chart Charts
I’m facing the following mistake: VM3611:231 Uncaught Error: Unknown header type: 6 Code: google.charts.load('current', {'packages': ['corechart']}); google.charts.setOnLoadCallback(drawChart);…
-
1
votes3
answers4250
viewsQ: How popular google line chart Charts with JSON
I am trying to popular a line google-Harts chart, it will be quite simple just the client name on the x axis and the amount of open calls on the y axis, I am returning the following JSON array…
-
0
votes1
answer406
viewsQ: Query with the following logic
Hello friends of the community. I need to fill a chart but I can’t assemble the query to receive the attributes, could someone help me? The query I need to do is the following. select client.name,…
-
0
votes2
answers294
viewsA: Snappy does not render image in pdf?
I was able to resolve using the image address on ftp. However if anyone knows why it didn’t work with local directory, please let me know =/.
-
0
votes2
answers294
viewsQ: Snappy does not render image in pdf?
I’m using Snappy to generate reports, but it’s not rendering the image I upload in my html, which I wonder if it might be? Code: Route::get('/report', function(){ $pdf =…
-
0
votes4
answers8769
viewsA: How to calculate the product of the elements of an array in C
Loop through the entire array, create an integer type variable to store the result, and multiply it by the value that is in the array’s Dice..... int main(){ int vetor[4] = {1,2,3,4}; int total =…
canswered Felipe Paetzold 4,527 -
1
votes1
answer249
viewsQ: What is Prevayler for?
I’m studying Prevayler in college, but I do not know the real use, or why to use, looking on the Internet I found several discussions but nothing that really explain what it is for. Would it be to…
-
1
votes2
answers66
viewsA: What is the best way to create a cross-platform game?
Good afternoon, my dear. The engine issue is really of paramount importance, there are several in the market, you have to see which one will suit what you want to do, I believe that Unity 3D is easy…
-
0
votes2
answers228
viewsQ: Create bi-directional relationship without using DTO?
Hello, I’m on a project and I need to do bidirectional relationship between two entities, the relationship is @OneToMany @ManyToOne, so far so good. But I wonder if there is any way to do it without…
-
5
votes1
answer1765
viewsA: C menu that moves with the arrow keys on the keyboard?
I found a way, but it only works with two options in the menu =/ #include<stdio.h> #include<stdlib.h> #include<conio.h> #define KEY_UP 72 #define KEY_DOWN 80 #define KEY_ESC 27…
-
4
votes1
answer1765
viewsQ: C menu that moves with the arrow keys on the keyboard?
I saw once an algorithm in C where the menu selection had a "mini navigation" if I can call it that, where I used the arrow keys to navigate the menu and enter to select the option, I was curious to…
-
17
votes2
answers560
viewsQ: Why shouldn’t I change the "getter" s and "Setter"s?
I recently came across a friend saying that it is not advisable to change getters and Setters. I had made the modification of a Setter of a List. In it I did not receive a list by parameter, but an…
-
2
votes1
answer2173
viewsA: How to put logo on site?
Good afternoon @Ronan, use an image editor like photoshop to remove the white background, then save with the format. png, then click on html the same way you loaded it, it has to work. Hug!
-
1
votes1
answer268
viewsA: Problem with scanf in %d receiving a keyboard letter
I structured my menus more or less in this way friend int opcao; do{ printf("1- Opcao 1 \n2- Opcao 2 \n0- Sair"); scanf("%d", &opcao); switch(opcao){ case 1: printf("Opcao 1"); break; case 2:…
-
4
votes2
answers430
viewsQ: Cut bidirectional relationship looping
I am with a Spring project, using JPA and liquibase, I have a bi-directional relationship between two entities, I wonder if anyone has a solution to the problem of infinite referencing between the…
-
1
votes2
answers3824
viewsQ: Paging with Spring Framework
I have a question, I need to make a pagination when I return all the records of a table, I don’t have much experience with Spring and I would like to know how it is done, I need to overwrite…
-
1
votes1
answer795
viewsA: Reverse letter box size - VISUALG
escreval (" A ORDEM INVERSA É: ") para contador de 12 ate 0 faca escreva(c[contador]) fimpara This section is right, confirm that your vector is [0.. 12], see if you are correctly assigning the…
-
4
votes1
answer1008
viewsQ: Stackoverflow in bidirectional relationship at JPA
I’m facing this problem with a bi-directional relationship, when I put in a question to create an answer it makes persistence, even then beauty, but if I try to get a get or even in the answer the…