Posts by Murilo Ferro • 107 points
9 posts
-
2
votes1
answer182
viewsA: Transparent Navbar Bootstrap
In the of example we have the following Jquery code snippet on filing cabinet: // Offset for Main Navigation $('#mainNav').affix({ offset: { top: 100 } }) .affix-top { background-color: transparent…
-
1
votes1
answer2049
viewsA: CSS in Chrome does not work properly
I tried it here and it worked, but it could be error related to your html and not exactly your css. Another possibility of not working is that according to W3C, the css opacity property only works…
-
1
votes3
answers132
viewsQ: Exchange td value after validation
I have the following HTML code <table> <tr> <td class="x">10</td> <td class="x">10</td> <td class="x">12</td> <td class="x">18</td>…
-
0
votes1
answer99
viewsQ: how to restore Mysql Database
I tried to do the following to restore the database: root@m9r9w9gae3 [/bkp/var/lib/mysql]# mysqldump -u root -p nomedobd > /home/nmedobd.sql or: root@m9r9w9gae3 [/bkp/var/lib/mysql/nomedobd]#…
mysqldumpasked Murilo Ferro 107 -
-2
votes2
answers844
viewsQ: How to transform a mathematical expression into a C language
How can I turn it into C language?
-
0
votes2
answers428
viewsA: How to insert an array into a variable?
It worked out here... I changed a little, anyway thanks a lot =D #row cell fixa para o horario rows = ts[1].rows cells = rows[1].cells a = {} i = 3 j = 8 k = 1 while k < 7: cell = cells[k+2] item…
-
1
votes2
answers428
viewsQ: How to insert an array into a variable?
Realizing that it has a lot of repetitive code I decided to automate creating a looping of reading the cells of my excel file. #row cell fixa para o horario rows = ts[1].rows cells = rows[1].cells…
-
1
votes2
answers232
viewsA: Python-docx module error in Windows
To solve the error I used the following code on line 93: f = open(arquivo,'rb') "Rb" Reads Binary. To learn more please visit link library…
-
3
votes2
answers232
viewsQ: Python-docx module error in Windows
I’m using the following code: from docx import Document d = Document(open("arquivo.docx")) This code works on Ubuntu but does not work on windows. In windows I have the return in the terminal:…