Default Odoo Icon List

Here are the default odoo icon list https://www.slideshare.net/TaiebKristou/odoo-icon-smart-buttons . . . selengkapnya>>

Python Ternary Operator

Python ternary operator introduced in Python 2.5. [on_true] if [expression] else [on_false] x, y = 50, 25 small = x if x < y else y Before this syntax was introduced in Python 2.5, a common idiom was to use logical operators: [expression] and [on_true] or [on_false] However, this idiom is unsafe, as it can give wrong results when on_true has a false boolean. . . selengkapnya>>

Python Get Day Of Week From Date

Use weekday() (docs) >>> import datetime >>> datetime.datetime.today() datetime.datetime(2012, 3, 23, 23, 24, 55, 173504) >>> datetime.datetime.today().weekday() 4 Source : Stackoverflow . . . selengkapnya>>

Login to Microsoft SQL Server Error: 18456

If you're trying to connect using "SQL Server Authentication" then you may want to modify your server authentication: Within the Microsoft SQL Server Management Studio in the object explorer: Right click on the server and click Properties Go to the Security page Under Server authentication choose the SQL Server and Windows Authentication mode radio button Click. . . selengkapnya>>

Python Strftime String Format

  Code Meaning Example %a Weekday as locale’s abbreviated name. Mon %A Weekday as locale’s full name. Monday %w Weekday as a decimal number, where 0 is Sunday and 6 is Saturday. 1 %d Day of the month as a zero-padded decimal number. 30 %-d Day of the month as a decimal number. (Platform specific) 30 %b Month as locale’s abbreviated name. Sep %B Month as locale’s. . . selengkapnya>>

zuka.one
©2011