SSO to AWS via CLI or SDK

Login to AWS with SSO instead of Credentials File Setup AWS IAM Follow the steps described in: https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html Create a IAM user After completing the steps described in the documentation above, you should have An IAM user An assigned SSO role to that user A Start URL for your SSO Login page On your local profile you should find under “~/.aws/config” a section looking like this: [profile <profile-name>] sso_session = <username> sso_account_id = <some-id> sso_role_name = <selected role, e....

Selecting a Python Virtual Environment in VS Code for Jupyter Notebooks

Selecting a Python Virtual Environment in VS Code for Jupyter Notebooks Follow these steps to select a Python virtual environment located in the .venv/ directory of your current workspace for use with Jupyter notebooks in Visual Studio Code (VS Code). Open Command Palette Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (macOS) to open the Command Palette. Select Interpreter Type Python: Select Interpreter and hit Enter. Choose the .venv Environment From the list, select the interpreter that corresponds to your ....

Reset VSCode

Quickly reset VSCode to factory settings Introduction A handy guide on how to swiftly reset Visual Studio Code (VS Code) to its factory settings. Whether you’re experiencing performance issues, conflicts with extensions, or simply want a fresh start, resetting VS Code can often be the solution. We’ll focus on resetting VS Code on macOS, where we’ll walk you through a series of commands to remove the necessary files and directories associated with VS Code....

Python environment

Setup an python environment in vscode Introduction In this article, we’ll explore a step-by-step guide on how to swiftly set up a Python environment in Visual Studio Code (VS Code). Whether you’re a Python beginner or a seasoned developer, having an efficient and organized development environment is crucial for productive coding sessions. We’ll start by creating a new environment using the Python virtual environment module. By isolating our project dependencies, we ensure a clean and controlled environment....