nicolasbonnici
nicolasbonnici
Hey there what version of Python do you use (only tested with 3.8 and 3.9)? Do you install dependencies with: `pip install --no-cache-dir -r requirements.txt `?
This is a good idea, I used to rewrite this project using PHP8 and Symfony, in this other project I have a Market entity which only contain an exchange reference...
Hey there sorry for the delay, no the REST API usage is optional you can just comment this line and avoid using persistence layer with an API or just a...
Nothing trivial here, the data model I chose is quite simple, feel free if you have any question about yours. The main concept here is to persist prices from an...
It's safer to use the isset() function
I know but if your object exists then you has your methods and properties too, if you want to try for a specific function maybe an alias to method_exists() should...
So you just have to pass a boolean flag to the view, {% oUser|Exists && oUser.bHasAccess %}...
isset() seems better, to also handle the null state of an attribute / variable
The difference between isset() and empty() functions: http://techtalk.virendrachandak.com/php-isset-vs-empty-vs-is_null
Yes so do me, that's why i googled then posted this article. I was asked myself about the real differences beetween those two function. I agree with you empty() seems...