Posts by ClaudianoPL • 83 points
5 posts
-
0
votes0
answers18
viewsQ: "WITH" is not valid at this position for this version of the server. Deploy to Heroku
I’m making a Deploy on Heroku of a personal project developed in PHP in which it is almost finished, however, I am having this error with a query of my project that is not running on the server, but…
-
0
votes2
answers228
viewsA: Ajax request problem via jQuery - PHP
The error was in my lack of attention using the Ajax feature, I forgot that everything I 'printar' in PHP, it will not show anything to the client but rather to Ajax. With this, when I asked for a…
-
0
votes2
answers228
viewsQ: Ajax request problem via jQuery - PHP
I am developing a particular project and I started to develop a calendar to put in this project, however, when sending the date selected by the user or automatically when he enters the page, To be…
-
0
votes1
answer99
viewsQ: How to improve the time cost of the algorithm - Python
Good night, you guys! I have the following problem in this algorithm, its cost is still high and I would like to know if there is a way to improve its cost even more, because this is a matter of…
-
8
votes1
answer304
viewsQ: Recursiveness in Python
Next guys, I have a matrix that is a naval battle board represented by the list: tab = [['.', '.', '#', '#', '#'], ['.', '.', '.', '.', '.'], ['#', '#', '#', '#', '#'], ['.', '.', '.', '.', '.'],…