Posts by Davi Luis • 123 points
5 posts
-
2
votes1
answer112
viewsA: Data Crawling in Python
You can use the standard python library for csv, below follows an example of how to take value from a lists and convert to csv: import csv with open(meuArquivo, 'wb', newline='') as arquivo: teste =…
-
0
votes0
answers70
viewsQ: Gulp does not minify images
I need minify many images, but I’m not getting with the Gulp. Problem: The Code minifica no image and I have checked that all images are in the folder. Folder structure: Gulpfile is at the same…
-
0
votes1
answer86
viewsQ: Problems with installations in Raspian
I’m having a problem, I’m not getting, install no package on raspian, appears the following error: Error: server' JVM at /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/Arm/server/libjvm.so'. Please…
-
0
votes1
answer319
viewsA: Store stack in txt file
Overwriting because you are using r+ to open the file, to write at the end of the file and not delete the pre-existing content you need to use "a" which means append: file = fopen(LOG, "a"); If you…
-
0
votes1
answer4133
viewsQ: Problem starting mysql in xampp
i tried using xampp but every time I try to start mysql it accuses the following error: Port 3306 in use by ""C:\Program Files\MySQL\MySQL Server 5.7\bin\mysqld.exe"…