This session will show you a number of web marketing facts that illustrate why you want to consider using bootstrap for your web pages, how to theme them quickly and easily and the process of converting HTML3 web pages to HTML 5 so that they run on all devices without changes. If you are using ultra-thin web pages, see why a lot of web designers around the world use bootstrap.
The responsive bootstrap web pages have been a key element in Arts Management’s efforts to help customers rebrand their web sites and we are finding that their patrons have far less questions about how to use the pages and far more shopping cart completions — on all kinds of devices.
Part of the discussion include effects on old and supported browsers, use of Font Awesome, web site and commerce requirements, utilities to check what your site can support and evaluate SSL certificates for security.
omnis and how it handles changes to the list (things to avoid),
* where stored procs can help to do things that prevent list changes, * alterations to the table class to minimize data transfer
* defaults for key creation
* referential integrity setup
* triggers to do things at source
* background worker strategy
* listen notify
* backups, tips, and other site management things
* upgrading versions
* postgres dam settings
* use of returning and the performance gain
* implementing some of this in the table class
* caching strategies
Also:
adding in things like ‘upsert’ ( in insert if fail, then update in one statement – in postgres 9.5 – which has helped for performance of things we’ve done in workers
implementing time zone awareness in an omnis application with postgres (its pretty dead easy, but took me a few days to solve the problem)
UPSERT Which is an insert, if fail UDPATE — which I’ve also built into a table class. Where we use it — saving window positions where we expect them to be there (but they might not) and duplicates are not allowed. so rather than find, if exist, update, else insert (2 statements), it becomes one —> insert, on duplicate fail, udpate. its great for some conditions.
and more