Skip to content

alonsojr1980/tutorials-and-tips

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

COMPILATION OF TUTORIALS AND TIPS

ANALYSIS AND SYSTEMS DEVELOPMENT

ANGULAR

  • Use custom elements

    Do the following in every module that uses custom elements:

    import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
    
    @NgModule({
    schemas: [CUSTOM_ELEMENTS_SCHEMA],
    ...
    })
    

DELPHI

GOOGLE

IONIC

NPM

STENCIL

HTML/CSS

  • Force background-color printing
    * { 
        color-adjust: exact; 
        -webkit-print-color-adjust: exact; 
        print-color-adjust: exact; 
    }
    
  • Easy align children center
    .place-items-center { 
        display: grid; 
        place-items: center; 
    }
    

VSCODE

  • Useful extensions
    • Bookmarks - Alessandro Fragnani
    • Bracket Pair Colorizer - CoenraadS
    • Color Picker - anseki
    • Debugger for Chrome - Microsoft
    • Live Sass Compiler - Ritwick Dey
    • Live Server - Ritwick Dey

AUTOMATIC1111 (STABLE DIFFUSION UI)

WINDOWS OS