Posts by nanquim • 449 points
17 posts
-
0
votes1
answer19
viewsQ: Wordpress - Theme Customization
I understand that to customize a theme I need to create a child theme. I wanted to know if the changes made on the "Edit themes" screen are also overwritten when the theme is updated. That being the…
-
-4
votes1
answer140
viewsA: Centering text in a responsive way
Looks like you need the flex Direction column, no need to justify to the left https://jsbin.com/diwaxos/edit?output *{ margin: 0; padding: 0; } .logos-container { display: flex; flex-direction:…
-
0
votes1
answer363
viewsQ: Import JSON to Mysql table
I am trying to import a JSON into Mysql, but without success EDIT: JSON has the structure below, it is return of this wikidata sparql query. The query created a document for each tuple { "_id" :…
-
1
votes3
answers55
viewsQ: Jquery.text does not work
They are not empty, but I cannot place the text inside the Ivs HTML <!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8"> <meta name="viewport"…
-
-1
votes1
answer325
viewsQ: Oracle - Alias in Case
How can I put an alias in the column name in a CASE? CASE atu.cod_situacao_matricula "Alias" WHEN 2 THEN 'Matriculado' CASE atu.cod_situacao_matricula as Alias WHEN 2 THEN 'Matriculado' Both give…
-
0
votes1
answer9613
viewsQ: Oracle - ORA-01722: invalid number
Can you help me with this error? It usually gives invalid number when I don’t quote simply. I tried to convert to number (although column is varchar2), but error persists DECLARE TYPE cVetor IS…
-
-1
votes1
answer105
viewsQ: Oraoledb - What is
What is Oraoledb? What is its function? For example, there is an error here in the work system that only appears the Oraoledb error, what are the reasons?
-
0
votes3
answers1128
viewsQ: Oracle - Select distinct in one column only
I have a table: aluno1 - data 1 student 1 - date2 student 2 - date1 student 2 - date2 And I want my query to return: aluno1 - date1 (date + recent) aluno2 - date2 (date + recent) How do I give a…
-
0
votes1
answer78
viewsQ: NPM - save x save-Exact x shrinkwrap
I am in doubt between the commands below, when to use them and what is the difference between them? What is the importance of --save-Exact, exactly? When and how to use each? npm i my-pack --save…
-
0
votes1
answer243
viewsQ: Express and Express Generator
I understood that the express Generator only creates Boilerplate for the project. But I didn’t understand very well which is the correct way to add it to the project I need to install the 2, or only…
-
-1
votes1
answer157
views -
0
votes1
answer722
viewsQ: NPM - modules and proxy
Good afternoon I am trying to install the ibm Watson module in my app, but get error below I am in the company network... What I wanted to know is if I can "dribble" or configure this proxy somehow…
-
0
votes1
answer339
viewsQ: Oracle - DBMS_APPLICATION_INFO.set_client_info - What is and when to use
About the line below in a PL/SQL script DBMS_APPLICATION_INFO.set_client_info('1111@Blabla'); I get it which is a package calling a trial and that it arrow customer information in the session (in my…
-
5
votes1
answer9809
viewsQ: Oracle - Filter by date
I have a column dt_atualiza_log who’s with the guy DATE in the table (is saved in format 01/12/2011 10:10:48) I’m having trouble filtering through and of my query. I’ve tried several ways, the last…
-
3
votes3
answers5520
viewsQ: How to install Jquery in Angular?
What is the correct way to install jquery in an angular project 2+? Bootstrap: npm install --save jquery@latest Only it is not available in node_modules for me to take the path and put in…
-
8
votes2
answers22669
viewsQ: Node.js - How to read user input from the console?
In Java: System.out.println("Diga algo: "); Scanner leitor = new Scanner(System.in); String resp = leitor.nextLine(); //ou nextInt, nextDouble, etc In C++ cout << "Diga algo: "; string name;…
-
14
votes2
answers22669
viewsA: Node.js - How to read user input from the console?
Using the module readline: var readline = require('readline'); var resp = ""; var leitor = readline.createInterface({ input: process.stdin, output: process.stdout }); leitor.question("Qual módulo…