Skip to content

Instantly share code, notes, and snippets.

View rogigs's full-sized avatar
🎯
Focusing

Igor Soares rogigs

🎯
Focusing
View GitHub Profile

Angular Notes

Hello, if you appear hire because your engine search, enjoy it 😁. That markdown contain my solutions or learnings about the world angular.

Smart and Dump Components

Use case: Create a PDF

The Profile-pdf(father) component is responsible for all modifications and those with the Section(children) prefix only for viewing conditions

const puppeteer = require("puppeteer");

(async () => {
  const browser = await puppeteer.launch({ headless: false });
  const page = await browser.newPage();

  // Old site
  await page.goto(
    ""
@rogigs
rogigs / 2dArrayDS.md
Last active August 31, 2023 17:54
HackerRank Solutions

Solution 2D Array - DS

Screenshot 2023-08-31 132447

function hourglassSum(arr) {
   
  let sumHourGlass = [];
@rogigs
rogigs / angular.json
Last active August 18, 2023 01:22
Secrets env on Angular
{
...,
"projects": {
"tutorial-app": {
...,
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
...,