Understanding .NET compilation

As far as I understand .NET concepts, the source code is first translated into an Assembly (IL code+meta data), which is compiled to machine code on the target machine with the CLR’s JIT compiler. However I cannot really match these concepts to what I see when working on a C# project. When I build a… Read More Understanding .NET compilation

CSS And HTML Issue With Image Styles

*Hello, I want to have text below the image like in the example, but I can’t figure out what is wrong, i took the code from W3Schools: https://www.w3schools.com /css/tryit.asp?filename=trycss_ex_images_card Can someone help? Thanks Example Image: https://imgur.com/a/P86DVjW What It Looks Like: https://imgur.com/a/JOXpAJI* “`{ margin: 0; padding: 0; box-sizing: border-box; font-family: ‘Poppins’, sans-serif; } body { background:… Read More CSS And HTML Issue With Image Styles

I get status code 200 with postman but with request.get I get status code 500

When I make the request in postman to this api https://api.bigauto.solutionslion.com/api/store/showApp sending the parameters = { "part_number": "10-659"} https://ibb.co/QvHvxPw image I get the response correctly https://ibb.co/QvHvxPw But when doing it in python I get code status 500 as if the parameter was not being sent import requests parameters = { "part_number": "10-659" } response =… Read More I get status code 200 with postman but with request.get I get status code 500