Skip to content

Instantly share code, notes, and snippets.

View ENez7's full-sized avatar
🏠
Working from home

Enrique Núñez ENez7

🏠
Working from home
  • Crehana
  • Santa Cruz, Bolivia
  • 00:59 (UTC -04:00)
  • LinkedIn in/enriquenez
View GitHub Profile
@ENez7
ENez7 / nord-git-bash.md
Created August 20, 2023 16:14
Nord customized git bash

How to: Customize git bash terminal with Nord's look and feel

image

To change colors of the terminal in order to combine it with Nord theme, you should modify git-prompt.sh located in C:\Program Files\Git\etc\ directory

Nord's official page https://www.nordtheme.com/

Then, paste this

@ENez7
ENez7 / manual.md
Created January 23, 2023 23:53
Virtual enviroment

Windows installation guide

  1. Download Python 3 for Windows
  2. Run executable installer
  3. Verify Python was installed
    • Open CMD (win + r, then type "cmd" without the quotes)
    • Type "python", you should get the info of the python version
    • exit() to quit
  4. Verify pip was installed
    • Open CMD
    • Type "pip -V", if installed successfully, you should get the installation route
@ENez7
ENez7 / fetchfromcsv.md
Last active April 18, 2022 02:08
Fetch data from a CSV file using console app written in C#

First things first, you need to get to know your CSV file, how many columns does it have and so on...

For each column you may need a list for contain the data or not, let's take a two-column CSV file

Name Comment

The data in the CSV must have this structure

Name;Comment