Skip to content

Instantly share code, notes, and snippets.

View EstebanMqz's full-sized avatar
💫
localhost

Steve-md EstebanMqz

💫
localhost
View GitHub Profile
@EstebanMqz
EstebanMqz / python.json
Created October 28, 2023 04:21
%APPDATA%\Roaming\Code\User
{
"python.pythonPath": "C:\\ProgramData\\Anaconda3\\python.exe",
"python.autoComplete.extraPaths": [
"C:\\ProgramData\\Anaconda3\\Lib\\site-packages"
],
"python.analysis.extraPaths": [
"C:\\ProgramData\\Anaconda3\\Lib\\site-packages"
],
"python.envFile": "${workspaceFolder}/.env"
}
@EstebanMqz
EstebanMqz / Settings.md
Last active April 15, 2024 01:03
Settings.md

@EstebanMqz
EstebanMqz / Lighthouse.md
Last active October 16, 2023 22:59
LightHouse .bashrc regex HTML web-audit tool in .git remotes

LightHouse HTML

Regex .sh to generate a Google Lighthouse Web-Audit for an HTML file in cwd for the git remote (if any).

See Git-Commands

#!/bin/bash
# Regex shell script to execute a Google Lighthouse Audit for the HTML file in the cwd for the git remote repository.
@EstebanMqz
EstebanMqz / VSkeybindings.md
Last active April 17, 2024 08:57
VSkeybindings.md
Profile

(Back-up & shareable purposes other than Cloud / Local Workspaces.)
@EstebanMqz
EstebanMqz / Plot-Types_Dashboards.md
Last active October 14, 2023 15:24
Main Data Visualization Plots interactive Pkgs. & Dashboard tools.

Plot Types

Extensive list of plot types for Data Visualization.
Each plot type is described with a brief definition and use case.

Some of the libraries where they can be plotted & integrated are illustrated by Dashboards tools.
1. Line plot:
Used to display trend over time over continuous data.
@EstebanMqz
EstebanMqz / githistory.md
Last active October 14, 2023 16:55
Interactive Git Web History Shell Program

Git web history

#!/bin/bash
# Description: githistory interactive shell to web-browse a git remote with filename using http-protocol default browser.

username=$1
repository=$2
branch=$3
@EstebanMqz
EstebanMqz / Automated Virtual Environment Setup.md
Last active October 14, 2023 17:02
Automated Virtual Environment Setup

Virtual Environments

pipenv pipenv

  • Higher-level pkg manager for Python that combines pip pkg installations and virtualenv creation.
  • Simpler & streamlined way to manage dependencies & venv for Python projects, with automatic environment creation & dependency resolution.
  • Uses virtualenv, widely used tool for creating isolated Python environments with a not so user-friendly interface.
  • Pipfile.lock file to ensure that your project's dependencies are correctly installed.
  • [pipenv](https://pipenv.pypa.io/en/late
@EstebanMqz
EstebanMqz / Documentation.md
Last active October 14, 2023 17:27
Creating & writing docstrings for all files with .ext

Automatically create & write docstrings in scripts

Note: Their usage is intended to automate docstrings in cwd of several scripts with an .ext at once.

#Pre-built module
import glob 
import os

def docstring(repository, requirements, author, license, environment):
@EstebanMqz
EstebanMqz / Git-Commands.md
Last active October 14, 2023 17:30
Personal 150+ quick search-list for bash scriptings & other tools.

Git Commands

Description:

Github version (repository)

Git-Basic-Commands