Skip to content

Instantly share code, notes, and snippets.

View EstebanMqz's full-sized avatar
👋

EstebanMqz EstebanMqz

👋
View GitHub Profile

Copilot Diagnostics

Description:
Command PaletteGithub Copilot: Collect Diagnostics



  • Version: 1.187.0
  • Build: prod
@EstebanMqz
EstebanMqz / Bookmarks.html
Last active October 3, 2024 04:27
Web/Mobile EstebanMqz Bookmarks.html
<!-- The following are the Bookmarks .html generated file from browser's by EstebanMqz
It was updated the 6th of May, it's private and contains valuable information/resources
to import/export to other browsers & mobile devices.-->
<!DOCTYPE NETSCAPE-Bookmark-file-1>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE>Bookmarks</TITLE>
<H1>Bookmarks</H1>
<DL><p>
<DT><H3 ADD_DATE="1623469904" LAST_MODIFIED="1715023541" PERSONAL_TOOLBAR_FOLDER="true">Bookmarks bar</H3>
@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 October 4, 2024 04:08
Settings.md

@EstebanMqz
EstebanMqz / Lighthouse.md
Last active October 2, 2024 19:00
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 October 3, 2024 16:56
VSkeybindings.md
Profile  

@EstebanMqz
EstebanMqz / Plots & Dashboards.md
Last active October 3, 2024 04:22
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 3, 2024 16:32
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 / Requirements.md
Last active October 3, 2024 16:56
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 / Docstrings.md
Last active May 6, 2024 21:14
Docstrings on every file.

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):