Posts by Gabriel Lemos • 61 points
6 posts
-
-1
votes1
answer120
viewsQ: I need to find regex to parse a variable
I need to analyze a C code using regex and I’m having trouble knowing if a variable is receiving a float or integer value. Ex: valor_01 = ( 5 * 3 ) / 2.5 + ( 4 % 3 ) ^ 4 ; valor_01 can be any…
-
0
votes0
answers419
viewsQ: How to readjust the label of a Chart js chart?
How do I adjust the font size of the label or place a line break? The text is not fitting in full, for monitor 1080 fits, but 720 happens this. My code: <script> var myChartcaixa = new…
-
0
votes0
answers30
viewsQ: Error compiling my Typescript file: error TS5011
My code in the file Say.ts: function say(person) { return "Hello" + person; } var user = "Gabriel Lemos"; console.log(say(user)); When I tried to compile: Tsc Say.ts I had error: path Say.js(1,1):…
-
0
votes1
answer340
viewsQ: How to compare two Oracle Datetime columns
I have a column where I enter a date when the event happens (local storage), and the date when the event is sent to my system. The difference between the date of the event and the date of dispatch…
-
4
votes3
answers1162
viewsQ: create objects dynamically
I’m having a problem in college in software engineering which is the following: I have the following scheme when making the payment of a shopping cart I must know if it is BOLETO or…
-
1
votes1
answer932
viewsQ: How I create 2 Foms simultaneously Django
What I want is in a single templante bring these 2 Forms simultaneously, in separate pages works, but the two together still could not do. Do I need to make an intermediate form? Am I making a point…