Posts by Lucas Fantacucci • 435 points
12 posts
-
1
votes2
answers204
viewsA: Better structuring of object-oriented code
The difference with these data structures: List Insertion: On insertion into an unordered list, the new list item will be inserted after the last list object Removal: In the removal in an unordered…
-
1
votes2
answers1562
viewsA: Filling form dynamics with Angularjs
Imagining that you have a user’s Cpf input in your form, and your Function "Pesquisarcpf" returns the user’s data. <input type="text" ng-model="cpf" ng-model-options="{ debounce: 1000 }" // para…
-
3
votes1
answer4499
viewsA: Open modal with Javascript to select certificate and send to server
Well, after a long time, I managed to find a solution, today Certisign has an API that validates digital certificates. If I’m not mistaken a GET with javascript is blocked by the CORS of their…
-
12
votes3
answers10007
viewsQ: A3 Digital Certificate, e-CPF, how to access information with Javascript
I am having to develop an application, which for security purposes, it is necessary to use an e-CPF by users when trying to log in. I just need to check if the e-CPF number matches the registered…
-
2
votes1
answer120
viewsQ: Connection to the PL/SQL database via a JAVA application. SECURITY ISO 27001
My java application is currently connecting with a pl/sql database, username and connection password are in the jdbc file: jdbc.username=xxxxxxx jdbc.password=xxxxxxx jdbc.url=xxxxxxxxxxxx and…
javaasked Lucas Fantacucci 435 -
0
votes1
answer67
viewsQ: Roles in Angular JS
Well, not found in any other post, if there is srry :) at last, I have the following config myApp.config(function($routeProvider) { $routeProvider // route for the index page .when('/index', {…
-
2
votes1
answer312
viewsQ: Lock on the mongoDB
Good guys, I am using mongodb to develop projects in college, I would like to know (documentation is weak on the site of Mongo https://docs.mongodb.org/manual/faq/concurrency/ ) how the lock works…
mongodbasked Lucas Fantacucci 435 -
1
votes0
answers151
viewsQ: Reactive Programming With MEAN stack
I’m thinking about starting to develop a social network similar to Instagram, for learning purposes, using MEAN stack. I thought of my models : User’s: var mongoose = require('mongoose');…
-
3
votes1
answer64
viewsQ: Difference in Socket.io declaration
I’m starting to work with Socket.io on Node.js, the doubt for now follows simple. Using my example below. What’s the difference in using socket.Emit() and chat.Emit()? PS:*I hope you don’t have a…
-
3
votes1
answer181
viewsQ: Authentication / Permissions with MEAN Stack
I’m studying the MEAN stack, I’m really enjoying it, and I’m developing simple applications, but I couldn’t find something that would really help me understand better about authentication and…
-
5
votes1
answer64
viewsQ: Inter-model operation
I don’t know very well the power of javascript, but I wanted to do the following: I have two models: Vacancy: { Name: "VagaExemplo", Description: "Descricao", Skills: { "56b68108869038280db291e6":…
javascriptasked Lucas Fantacucci 435 -
3
votes1
answer332
viewsQ: data bind with arrays - Angularjs
Well, I’m having a little trouble figuring out the best way to solve this: I have several Skills and need to save each Skill with its score and id(from Skill) for each candidate. have an ng-repeat…