Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alonsojr1980/tutorials-and-tips

COMPILATION OF TUTORIALS AND TIPS
https://github.com/alonsojr1980/tutorials-and-tips

development fullstack ionic mobile-development nodejs npm tips tips-and-tricks tutorials

Last synced: about 2 months ago
JSON representation

COMPILATION OF TUTORIALS AND TIPS

Awesome Lists containing this project

README

        

# COMPILATION OF TUTORIALS AND TIPS

## ANALYSIS AND SYSTEMS DEVELOPMENT
* [GOF - Design Patterns](Analysis%20and%20Systems%20Development/gof.md)
* [Design Patterns - real world Python examples](Analysis%20and%20Systems%20Development/design_patterns_realworld_python.md)
* [Exam 01](Analysis%20and%20Systems%20Development/exam_01.md)

## 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],
...
})
```

* [Use Stencil webcomponent in Angular](https://stenciljs.com/docs/angular)

## DELPHI
* [Console STDIN example](delphi/console_stdin.md)

## GOOGLE
* [Download file with exceeded quota](google/download_exceeded_cota.md)

## IONIC
* [Push notifications between Ionic 2/3 apps using Firebase Cloud Messaging](ionic/push_notifications_firebase_cloud_messaging.md)
* [Extensive Firebase Cloud Messaging payload guide](https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/PAYLOAD.md)

## NPM
* [Update all packages](/npm/update_all_packages.md)

## STENCIL
* [Using ngModel in stencil webcomponents](https://github.com/kensodemann/blogs/blob/master/stencil/Using%20ngModel%20with%20Stencil%20Components.md)

## 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)
*
Useful extensions




  • StyleSelectorXL (https://github.com/ahgsql/StyleSelectorXL)

  • SD_DYNAMIC_PROMPTS (https://github.com/adieyal/sd-dynamic-prompts)

  • SD_WEBUI_CONTROLNET (https://github.com/Mikubill/sd-webui-controlnet)

  • DWPose (https://github.com/IDEA-Research/DWPose)


## WINDOWS OS
* [Renaming domain name on Windows Server 2008](https://www.techieshelp.com/how-to-rename-a-server-2008-domain/)

*
Run TRIM on SSD drive (powershell command)



```
Optimize-Volume -DriveLetter YourDriveLetter -ReTrim -Verbose
```