Posts by Getulio • 436 points
12 posts
-
0
votes0
answers62
viewsQ: Curl does not work with Artisan serve?
Currently my friend is having the same problems I had when trying to use Curl to consume the API, serving the application with php Artisan serves. Is there a limitation that does not allow the use…
-
13
votes0
answers693
viewsQ: View regions with Google Geochart
Is it possible to display the states grouped according to their regions and a tooltip according to the region rather than the state? For example: Northern Region -> Acre, Amapá, Amazonas, Pará,…
-
3
votes2
answers160
viewsA: Equal sign in Ruby method definition
Accessors and modifiers methods are very common and give the idea of properties. There is a convention for defining these methods, which most Ruby developers follow (just as Java has the convention…
-
1
votes1
answer710
viewsQ: How to verify that the user is logged in to Vuejs + Laravel 5.5?
I am following a course of Laravel 5.5 + Vuejs, and putting into practice what is being taught. However, it doesn’t address authentication at the moment, and as I’m structuring the whole project to…
-
2
votes0
answers129
viewsQ: Questions related to an anti Cheat system
I have not found a better way to describe the title of the topic, if it is not good enough, I ask that moderation edit it for me. I have some questions related to an effective anti Cheat system for…
-
2
votes1
answer99
viewsQ: Nodejs: Difference between requests (require)
I started learning Nodejs and noticed that there are some ways to request a file, two of them are: const app = require('lib').app const {app} = require('lib') Is there any difference between them in…
-
0
votes1
answer270
viewsQ: What criteria should be analyzed when choosing a language for creating an application? Is performance everything?
I need to create an application that is the source of communication between several other applications with the database, IE, other applications will make requests for this application that will be…
-
2
votes1
answer301
viewsQ: Case-sensitive query in sql server with Laravel 5.4
I am making a query to the database (sql server) for user and password validation with Laravel 5.4 but, the query is running as case-insensitive. In the database is: pwd = Aa12a Input: password =…
-
1
votes1
answer694
viewsQ: Problem when making request with ajax in Laravel 5.4
I am learning the web language for creating my website and using the Laravel 5.4 framework, and having problems with sending forms with ajax. Every form I submit, returns me the error: Unprocessable…
-
7
votes1
answer1855
viewsQ: Why use const after function?
I noticed some codes from other C++ programmers that use functions like: bool CClass::isRunning() const { return this->_running; } I understood that in this way it is not possible to modify any…
-
0
votes1
answer172
viewsQ: When to use a scripting language?
When to use a language of script and what is the ideal setting for its use? I’ve been reading about languages script and I thought about the possibility of using them in my C/C++ project for a game…
-
1
votes1
answer223
viewsQ: How to install C++ compilers and previous version libraries in visual studio 2015?
How do I install older versions of c++ compilers and libraries in visual studio 2015 without having to install the IDE together? (i.e., only what is necessary to compile, run, and debug…