Skip to content

Instantly share code, notes, and snippets.

@nighttiger1990
nighttiger1990 / https in reactjs with dotnet dev-certs.md
Last active November 8, 2023 06:14
Https in reactjs with dotnet dev-certs

Requirement

Export cert and key file using dotnet dev-certs

dotnet dev-certs https --format PEM -np -ep '<filepath-with-pem-extensions>'
# example: dotnet dev-certs https --format PEM -np -ep D:\ssl\localhost.pem

Note: with -np parameter (mean no-password in dev-certs tool) will export 2 file localhost.pem and localhost.key like above exam

@nighttiger1990
nighttiger1990 / debugging-rails-app-in-vscode.md
Last active May 10, 2022 11:29
How to setting debugging rails app in VSCode

Setting up

First install some package

gem install rebase ruby-debug-ide

edit launch.json to this