Luuk
Luuk
0.000036/7 = 5,1428571428571428571428571428571e-6 This has too many decimals for the 'F-E' button to work correctly. If you copy the result, paste it in notepad, and remove some decimals to have...
This question was asked on StackOverflow, a couple of years back, and answered there see: https://stackoverflow.com/questions/19311393/is-it-mandatory-to-have-a-wsdl-definition-accessible-using-wsdl#:~:text=2-,Is%20it%20mandatory%20to%20have%20a%20WSDL%20definition%20accessible%20using,calling%20the%20specified%20web%20service. The answer there is: _No, Its not mandatory to have ?wsdl access, but its...
There are plenty of resources on how to do that: https://www.google.com/search?q=how+to+create+a+docker+image+ So, why do you not do it yourself?
Thanks!, I must have overlooked that option. This is making this plugin even better... 😉
I was trying to build a list of packages with available updated. Now that I have seen this **bug** I can stop doing so.... 🤔😉 (because of mis-behaving `winget`... )
Because getting a list of packages with available updates should be in a format that has *complete* information, and the current output contains characters like `…` : ``` Windows 10...
Also: https://stackoverflow.com/questions/76080157/dism-exe-works-but-get-windowsoptionalfeature-powershell-fails Stack OverflowDISM.exe works but Get-WindowsOptionalFeature (powershell) failsWhen using DISM.exe to get Windows optional features using command dism /Online /Get-Features, the program exits within 1 second and outputs the...
https://stackoverflow.com/a/33419102/724039 The [json()](https://requests.readthedocs.io/en/latest/api/#requests.Response.json) method doesn't actually return JSON. It returns a Python object (read: dictionary) that contains the same information as the JSON data. When you print it out, the...
``` D:\TEMP>in2csv -e utf-16 -f json -k items tickets33.txt > out.txt UnicodeEncodeError: 'charmap' codec can't encode character '\u2028' in position 10946: character maps to D:\TEMP>in2csv -V in2csv 1.1.1 ``` see...
``` D:\TEMP>set PYTHONUTF8=1 D:\TEMP>set PYTHONIOENCODING=utf-8 D:\TEMP>in2csv -e utf-16 -f json -k items tickets33.txt > out2.txt ``` No `UnicodeEncodeError` anymore.. 😉 [out2.txt](https://github.com/wireservice/csvkit/files/11753634/out2.txt)