Skip to content

Instantly share code, notes, and snippets.

View EstebanMqz's full-sized avatar

EstebanMqz EstebanMqz

View GitHub Profile
@EstebanMqz
EstebanMqz / Bookmarks.html
Last active May 6, 2024 20:53
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 May 8, 2024 10:45
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 / Plots & Dashboards.md
Last active May 6, 2024 21:11
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 / Requirements.md
Last active May 6, 2024 21:12
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):
@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