{"id":23338589,"url":"https://github.com/alonsojr1980/tutorials-and-tips","last_synced_at":"2026-05-07T13:45:07.039Z","repository":{"id":140947135,"uuid":"151729525","full_name":"alonsojr1980/tutorials-and-tips","owner":"alonsojr1980","description":"COMPILATION OF TUTORIALS AND TIPS","archived":false,"fork":false,"pushed_at":"2025-01-02T15:07:10.000Z","size":74,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-04T10:44:25.453Z","etag":null,"topics":["development","fullstack","ionic","mobile-development","nodejs","npm","tips","tips-and-tricks","tutorials"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alonsojr1980.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-05T14:03:19.000Z","updated_at":"2025-01-02T15:07:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"2d5a42ab-6dc8-46d0-918f-95e347cc5224","html_url":"https://github.com/alonsojr1980/tutorials-and-tips","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alonsojr1980/tutorials-and-tips","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alonsojr1980%2Ftutorials-and-tips","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alonsojr1980%2Ftutorials-and-tips/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alonsojr1980%2Ftutorials-and-tips/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alonsojr1980%2Ftutorials-and-tips/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alonsojr1980","download_url":"https://codeload.github.com/alonsojr1980/tutorials-and-tips/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alonsojr1980%2Ftutorials-and-tips/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32740908,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["development","fullstack","ionic","mobile-development","nodejs","npm","tips","tips-and-tricks","tutorials"],"created_at":"2024-12-21T03:14:40.679Z","updated_at":"2026-05-07T13:45:07.024Z","avatar_url":"https://github.com/alonsojr1980.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# COMPILATION OF TUTORIALS AND TIPS\n\n## ANALYSIS AND SYSTEMS DEVELOPMENT\n* [GOF - Design Patterns](Analysis%20and%20Systems%20Development/gof.md)\n* [Design Patterns - real world Python examples](Analysis%20and%20Systems%20Development/design_patterns_realworld_python.md)\n* [Exam 01](Analysis%20and%20Systems%20Development/exam_01.md)\n\n## ANGULAR\n* \u003cdetails\u003e\n  \u003csummary\u003eUse custom elements\u003c/summary\u003e\n  \u003cbr\u003e  \n  \n  Do the following in every module that uses custom elements:\n  ```\n  import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';\n  \n  @NgModule({\n  schemas: [CUSTOM_ELEMENTS_SCHEMA],\n  ...\n  })\n  ```\n\u003c/details\u003e\n\n* [Use Stencil webcomponent in Angular](https://stenciljs.com/docs/angular)\n\n## DELPHI\n* [Console STDIN example](delphi/console_stdin.md)\n\n## GOOGLE\n* [Download file with exceeded quota](google/download_exceeded_cota.md)\n\n## IONIC\n* [Push notifications between Ionic 2/3 apps using Firebase Cloud Messaging](ionic/push_notifications_firebase_cloud_messaging.md)\n* [Extensive Firebase Cloud Messaging payload guide](https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/PAYLOAD.md)\n\n## NPM\n* [Update all packages](/npm/update_all_packages.md)\n\n## STENCIL\n* [Using ngModel in stencil webcomponents](https://github.com/kensodemann/blogs/blob/master/stencil/Using%20ngModel%20with%20Stencil%20Components.md)\n\n## HTML/CSS\n* \u003cdetails\u003e\n  \u003csummary\u003eForce background-color printing\u003c/summary\u003e\n  \u003cbr\u003e\n  \n  ```\n  * { \n      color-adjust: exact; \n      -webkit-print-color-adjust: exact; \n      print-color-adjust: exact; \n  }\n  ```\n\n* \u003cdetails\u003e\n  \u003csummary\u003eEasy align children center\u003c/summary\u003e\n  \u003cbr\u003e\n  \n  ```\n  .place-items-center { \n      display: grid; \n      place-items: center; \n  }\n  ```\n## VSCODE\n* \u003cdetails\u003e\n  \u003csummary\u003eUseful extensions\u003c/summary\u003e\n  \u003cbr\u003e\n  \n  \u003cul\u003e\n    \u003cli\u003eBookmarks - \u003ci\u003eAlessandro Fragnani\u003c/i\u003e\u003c/li\u003e  \n    \u003cli\u003eBracket Pair Colorizer - \u003ci\u003eCoenraadS\u003c/i\u003e\u003c/li\u003e  \n    \u003cli\u003eColor Picker - \u003ci\u003eanseki\u003c/i\u003e\u003c/li\u003e  \n    \u003cli\u003eDebugger for Chrome - \u003ci\u003eMicrosoft\u003c/i\u003e\u003c/li\u003e  \n    \u003cli\u003eLive Sass Compiler - \u003ci\u003eRitwick Dey\u003c/i\u003e\u003c/li\u003e  \n    \u003cli\u003eLive Server - \u003ci\u003eRitwick Dey\u003c/i\u003e\u003c/li\u003e  \n  \u003c/ul\u003e\n\n## AUTOMATIC1111 (STABLE DIFFUSION UI)\n* \u003cdetails\u003e\n  \u003csummary\u003eUseful extensions\u003c/summary\u003e\n  \u003cbr\u003e\n  \n  \u003cul\u003e\n    \u003cli\u003eStyleSelectorXL (https://github.com/ahgsql/StyleSelectorXL)\u003c/li\u003e  \n    \u003cli\u003eSD_DYNAMIC_PROMPTS (https://github.com/adieyal/sd-dynamic-prompts)\u003c/li\u003e\n    \u003cli\u003eSD_WEBUI_CONTROLNET (https://github.com/Mikubill/sd-webui-controlnet)\u003c/li\u003e\n    \u003cli\u003eDWPose (https://github.com/IDEA-Research/DWPose)\u003c/li\u003e\n  \u003c/ul\u003e\n\n  \n## WINDOWS OS\n* [Renaming domain name on Windows Server 2008](https://www.techieshelp.com/how-to-rename-a-server-2008-domain/)\n* [Network Throttling](https://www.reddit.com/r/ParsecGaming/comments/zajgrn/for_those_with_issues_locally_even_wired/)\n\n* \u003cdetails\u003e\n  \u003csummary\u003eRun TRIM on SSD drive (powershell command)\u003c/summary\u003e\n  \u003cbr\u003e\n  \n  ```  \n  Optimize-Volume -DriveLetter YourDriveLetter -ReTrim -Verbose\n  ```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falonsojr1980%2Ftutorials-and-tips","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falonsojr1980%2Ftutorials-and-tips","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falonsojr1980%2Ftutorials-and-tips/lists"}