Recently Active Questions
24,182,720 questions
19
votes
5
answers
41k
views
How to get PHP to be able to read system environment variables
I am using PHP as PHP-FPM on Centos. I am trying to follow the http://12factor.net/ guidelines of having the settings be stored in environment variables.
I have created a file in /etc/profile.d that ...
2
votes
2
answers
9k
views
Is there a google api to verify if a gmail is valid from java?
I have to debug a google contact management app and the problem is sometimes there is some synchronization problem because some mail are deleted on google servers but they appear active in application....
6
votes
4
answers
10k
views
Angular Material mat-select underline color change in Angular application
I'm new to Angular Material, so I may be missing something, but I would appreciate any help on this case.
My goal is to change the default blue underline of mat-select tag to white color while it is ...
0
votes
2
answers
9k
views
Report Viewer VB.NET
I'm just trying to figure out how to use Report Viewer in VB.NET.
The report has only one text box with the data element name set to ReportName.
The code is simple.
Private Sub ...
1
vote
1
answer
10k
views
Displaying Popup alert for SSRS Parameter validations
I am working on a SSRS report which has From & To date as input parameters and it has to be validated such that From date can't be more than To date.
I was successful in creating a custom VB ...
Best practices
8
votes
28
replies
2k
views
Moving from C, how can I implement a doubly linked list in C++ using C++ features?
I'm moving from C to C++ and I'm trying to avoid using C practices in C++.
It is said that raw pointers are a C feature, and that in C++ I should use smart pointers instead, yet every example I have ...
1
vote
0
answers
85
views
VS Code stuck on "Initializing 'tsconfig.json"
Recently my VS Code seems to have a problem initializing my VueJs workspaces. When a .vue file is open VS Code displays "Initializing 'tsconfig.json'" in the the lower left-hand corner and ...
-5
votes
0
answers
60
views
Which YouTube video properties get deleted if not specified in an update request? [closed]
I am using the YouTube Data API v3's Videos.update endpoint to update a video. My intention is to update the video title while leaving all other video information untouched. The documentation notes:
...
0
votes
0
answers
5
views
Should i pass consent info to each ad network?
I am using unity ads and meta-audience network inside admob mediation and I am using Google UMP SDK for showing consent screen or reading consent.
can other network automatically read this consent ...
-5
votes
2
answers
117
views
How to fix this issue with git push?
I faced this issue trying to push my local repository to my GitHub account.
I get this error message.
fatal: unable to access 'https://github.com/username/example.git/': Failed to connect to github....
6
votes
2
answers
11k
views
Visual Studio Code build with MsBuild
I am trying to use visual studio code to build a C++ project.
I created a task.json for automatic build.
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation ...
1
vote
1
answer
103
views
Changing input from checkbox to button
I have a jsp file which results in this HTML:
jQuery(document).ready(function() {
'use strict';
jQuery('input:radio[name="agreeToMandate"]').prop('checked', false);
jQuery('input:checkbox[name^...
2
votes
3
answers
14
views
Using subquery as a derived table
I am doing a SQL course and I can't figure out the solution to this question.
In a Car database, there is a Sale table with columns:
SaleID, CarID, CustomerID, LocationID, SalesRepID, SaleAmount, ...
-3
votes
1
answer
58
views
How is this running part of the function again and changing the values? [closed]
I'm doing a simple learning exercise to make a command line blackjack game. Almost everything seems to be working, most of the time. I have a strange error I haven't been able to figure out yet. In ...
3
votes
3
answers
115
views
C++ std::span overload resolution
I want to pass a C-style array to a function taking a std::span, but overload resolution chooses to convert the array to bool instead. Is this behavior required by the standard, or is it a compiler ...