Overall application quality goes beyond implementing features and includes:
- Accessibility
- Usability
- Performance
- Security
- Reliability
- Maintainability
| /* Additional styles for Chrome Inspector; should be used with | |
| http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
| and | |
| http://dpaste.com/hold/595890/ | |
| */ | |
| #elements-content li.hovered:not(.selected) .selection { | |
| /* hover color */ | |
| background: rgba(255, 255, 255, .2) !important; | |
| } | |
| #elements-content .selection.selected { |
| /* Centered heading with rules */ | |
| h1 { | |
| position: relative; | |
| overflow: hidden; | |
| white-space: nowrap; | |
| text-align: center; | |
| text-overflow: ellipsis; | |
| font: 1.6em/1.1 Georgia; | |
| padding: .2em 0; |
| h1 { /* From http://westcoastlogic.com/slides/debug-mobile/#/4 */ | |
| text-shadow: | |
| 0 1px 0 #CCC, | |
| 0 2px 0 #C9C9C9, | |
| 0 3px 0 #BBB, | |
| 0 4px 0 #B9B9B9, | |
| 0 5px 0 #AAA, | |
| 0 6px 1px rgba(0, 0, 0, .1), | |
| 0 0 5px rgba(0, 0, 0, .1), | |
| 0 1px 3px rgba(0, 0, 0, .3), |
| body { | |
| font-family: sans-serif; | |
| } | |
| ul { | |
| list-style: none | |
| } | |
| li { | |
| background: slategrey; |
| <?xml version="1.0"?> | |
| <PublicOptions> | |
| <ActiveProfile>Default</ActiveProfile> | |
| <LanguagesOptionsPublic> | |
| <Name>Java</Name> | |
| <Prefix>String sql = "</Prefix> | |
| <Suffix>";</Suffix> | |
| <EscapeCharsForQuotes>\</EscapeCharsForQuotes> | |
| <LengthLimit>40</LengthLimit> | |
| <LineSeparator>\n" |
| # Global ignore file | |
| # Windows image file caches | |
| Thumbs.db | |
| ehthumbs.db | |
| # Folder config file | |
| Desktop.ini | |
| # Recycle Bin used on file shares |
| @ECHO OFF | |
| REM Batch script for searching for text strings within files in a folder | |
| REM Set the name of the file containing the object names you want | |
| REM to search for. This file should contain one object name per line. | |
| REM ("Object" here could mean tables, views, procedures, etc.) | |
| SET LIST_OF_OBJECT_NAMES=./all_object_names.txt |
Things to look for when rewriting Oracle SQL statements for use in SQL Server:
COLLATE clauseINSERT statementsORDER BY clauses out of subqueriesREPLACE(expression, "'", "''") (and parameterize the expression)