Posts by fabaoanalista • 189 points
7 posts
-
0
votes1
answer309
viewsQ: How to view my index.html template in the Django restframework?
I have a problem with a test I have to deliver for a selection process I’m conducting. I’ve tried every possible and imaginable way to solve it, but I couldn’t. When trying to call an index.html…
-
0
votes1
answer68
viewsQ: Error when trying to enter form in the authenticated user’s Language (foreign key to another table)
I am trying to enter the data of a form of a class Condominium with the user already logged in and authenticated , user_id is foreign key to the table Condominium, in my understanding the store…
-
0
votes0
answers770
viewsQ: SQLSTATE error[42S22]: Column not found: 1054 Unknown column '' Laravel project, table with two foreign keys
Controller function for project voting has two foreign keys, user_id and projeto_idProjeto, follows function: public function votar($id){ $usuario = Auth::user()->id; $votoss =…
-
0
votes2
answers56
viewsA: AJAX request is running before click
Moreover I would do the treatments in the fields (masks) as in the example below: (function ($, window, document, undefined) { 'use strict'; var $form = $('#contact-form'); $form.submit(function (e)…
ajaxanswered fabaoanalista 189 -
-7
votes3
answers12254
viewsQ: How to initialize an array using pointers?
I need to initialize a 0 matrix using pointer to address its elements
-
7
votes2
answers3467
viewsQ: How to add two arrays of integers with pointer arithmetic?
I am doing an exercise where I pass by parameter two integer arrays already defined by the user. I need now, in a third array, to store the sum of the two received arrays, at the same positions,…
-
4
votes4
answers8769
viewsQ: How to calculate the product of the elements of an array in C
How do I multiply values of an integer vector by each other in C. I have values within an array for example [1,2,3,4], I want to multiply one by the other, resulting in 24.
casked fabaoanalista 189