Skip to content

Instantly share code, notes, and snippets.

View rplaurindo's full-sized avatar
🎯
Focusing

Rafael rplaurindo

🎯
Focusing
  • Rio de Janeiro - RJ, Brasil
View GitHub Profile
@rplaurindo
rplaurindo / 1.angular-libraries.md
Last active November 20, 2021 16:51
angular libraries

Angular Libraries

Generating

$ ng g library <library-name>

Configuration files to make build with Organization name

The library path can contain @<organization-name>/ to indicate that package are encapsulated to an organization, because the package belongs to it. The files below must be adapted its keys that reference paths. They must contain the @<organization-name>/.

@cecilemuller
cecilemuller / 2019-https-localhost.md
Last active May 9, 2024 08:24
How to create an HTTPS certificate for localhost domains

How to create an HTTPS certificate for localhost domains

This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.

Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).

Installing

Dependencies

On Ubuntu

  • curl

Specific version via APT (global)

@rplaurindo
rplaurindo / angular.md
Last active May 17, 2023 00:03
Front-end application

See how to install a specific version of the nodeJS.

Installing

Globally

$ npm i -g @angular/cli

Manually

@rplaurindo
rplaurindo / git.md
Last active January 10, 2021 04:24

Configurations

git config

Proxy

Use global configuration with --global flag.

$ git config --global https.sslBackend openssl
@jexchan
jexchan / multiple_ssh_setting.md
Created April 10, 2012 15:00
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"