This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://software.download.prss.microsoft.com/dbazure/Win10_22H2_BrazilianPortuguese_x64v1.iso?t=cc52de57-5352-4740-bbf9-65d646c1e170&P1=1764195169&P2=601&P3=2&P4=xi61n18WD2%2f%2bDVI0XofBw%2b68OijVPmTBpQIR8vrGV5qJwh0lwStjIiEYNxjNxm%2fGuzr0Uza43vbe0ghENzle02O%2fAHZKoyDr1UhG5ctwNveOA7r4neussVwahu5f54yNNBvvy2c88Kwa1j%2fcuBwLUJLqyAq15cPylt7yUskAWz2Ztdpy43hjmP3Zh17m9b6r1R%2btCDv22yE6NFNQNmcsqTMfBrgZDBguVXhy60urW3sTu86AXwPyWfy1WvCHAELd433nOydhaaSa%2bbUwlaVywK%2faJKPKeH6SBLbMZpeHRJ2n9ieWv6unudnCwZSAEE3XMUKsIG4W0y5duu6xQAkwyw%3d%3d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var csv = '' | |
| var columns = document.getElementsByClassName("charge"); | |
| for (var i = 0; i < columns.length; i++) { | |
| item = document.getElementsByClassName("charge").item(i); | |
| date = item.getElementsByClassName("date")[0].textContent; | |
| description = item.getElementsByClassName("description")[0].textContent; | |
| amount = item.getElementsByClassName("amount")[0].textContent; | |
| csv += date + ";" + description + ";" + amount.replace(",", ".") + ";\n"; | |
| } | |
| console.log(csv) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| django-mysql==1.0.9 | |
| mysqlclient==1.3.7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://localhost:8983/solr/update?stream.body=%3Cdelete%3E%3Cquery%3E*:*%3C/query%3E%3C/delete%3E |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from dateutil import parser | |
| dt = parser.parse("2015-07-13T17:44:35.924Z") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # http://blinkofcode.com/55935a21c57dd47bf92d154b | |
| import csv,json;print json.dumps(list(csv.reader(open('csv_file.csv')))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -iname '*.html' | xargs grep -i 'OAS_listpos' | cut -d ':' -f1 | xargs sed -i 's/x02[,]\?\|Top1[,]\?\|Middle[,]\?\|Right3[,]\?\|Bottom[,]\?\|Middle1[,]\?\|x31[,]\?\|x32[,]\?\|x33[,]\?\|x34[,]\?\|x35[,]\?//g' |