Posts by Marabesi • 111 points
6 posts
-
0
votes1
answer305
viewsA: How to Run Sequentially on Jenkins
Jenkins has the option of pipelines, which is what you are looking for. In the example below that I extracted from the documentation, this pipeline has 3 stages: build, test and deploy. But you can…
-
0
votes2
answers417
viewsA: while True inside while True
according to this link https://stackoverflow.com/a/9038199/2258921 the recommended is to use a return, since in python it is not possible to use a break 2.…
-
1
votes1
answer1359
viewsA: Correct way to install Laravel on Linux
You have Composer.phar set in the environment variables as well? Try adding the Composer executable to gain global access to the terminal, such as: cp /seu/caminho/composer.phar /usr/bin/composer…
-
1
votes1
answer307
viewsA: Change logo in TCPDF via form
You can do this using the methods GET or POST when submitting the form. (In the example below I used the POST) The first thing I did to illustrate was to change the code HTML, adding the form, see:…
-
3
votes2
answers2157
viewsA: Add value to a checkbox Instantly
Come on, the first thing I modified in your code were the inputs to facilitate the result see: <input type="checkbox" checked="" value="20.00" /> <input type="checkbox" checked=""…
-
3
votes3
answers37
viewsA: Problem adding a date to an array index
I tried to replicate the same mistake but without success, see : <?php $pcb_data = array(); $i = 0; while($i < 2){ $pcb_data[$i] = date("d/m/Y", strtotime('2000-10-10')); $i++; } Exit Array (…