Skip to content

Instantly share code, notes, and snippets.

View danielTobon43's full-sized avatar
🤠
Working

Daniel danielTobon43

🤠
Working
View GitHub Profile
@danielTobon43
danielTobon43 / README-Template.md
Created March 25, 2020 09:00 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@danielTobon43
danielTobon43 / README.md
Last active August 27, 2021 02:42
Open Conda Prompt Here - Windows

How to add Conda Prompt Here to the right-click menu on Windows 10

Download and run the following .bat files.

Note

You must update the conda path on these files with your own conda path

Registry path

HKEY_CLASSES_ROOT\Directory\Background\shell\ HKEY_CLASSES_ROOT\Directory\shell\

@danielTobon43
danielTobon43 / README.md
Last active September 7, 2023 06:23
Tutorial/Setting up clang-format on Windows 10 for Sublime Text 3

Clang-format for Sublime Text 3 Win10

This tutorial takes you through the steps of setting up clang-formater in your own sublime text 3 software on Windows 10.

Getting Started

These instructions will get you a full clang format to automatically format C/C++/Objective-C code, so that developers don't need to worry about style issues during code reviews. It is highly recommended to format your changed C++ code before opening pull requests, which will save you and the reviewers' time.copy of the project up and running on your local machine for development and testing purposes. This tutorial will take you trough the full installation on a Windows 10.

Prerequisites

What things you need to install.

@danielTobon43
danielTobon43 / $README.md
Last active June 10, 2021 12:14
This is a tutorial of how to use Eigen3 on windows 10 and CMake

Eigen3 project

Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. This tutorial will get you through the steps of how to use Eigen in your own CMake project on Windows 10.

Getting Started

These instructions will get you a full Eigen3 CMake template for your C++ project.

Prerequisites

Eigen doesn't have any dependencies other than the C++ standard library. It use the CMake build system, but only to build the documentation and unit-tests, and to automate installation. If you just want to use Eigen, you can use the header files right away. There is no binary library to link to, and no configured header file. Eigen is a pure template library defined in the headers.

@danielTobon43
danielTobon43 / README.md
Last active July 20, 2021 16:05
Sublime Text 3 Python/Cpp plugins

Sublime Text 3 Python/Cpp IDE

Python and Cpp plugins IDE for Sublime Text3

Python IDE

  1. MagicPython --> "disable package -> python"
  2. Django
  3. Djaneiro
  4. More Python Completions
  5. AutoDocstring
  6. Anaconda
@danielTobon43
danielTobon43 / README.md
Last active June 10, 2021 12:06
Add Microsoft Store Windows 10 Enterprise LTSC
@danielTobon43
danielTobon43 / $README.md
Last active August 12, 2021 17:06
Agile Oceanic Next User Color-scheme sublime Text 3

Agile Oceanic Next User Color-Scheme

Color scheme for sublime text 3

Style any color scheme Sublime Text 3

To style anything, you have to get its scope and define how to style it in the color scheme. To get the scope at the current cursor position, press:

Ctrl+shift+alt+p.

Color scheme configuration

<dict>
 name
@danielTobon43
danielTobon43 / $README.md
Last active October 26, 2021 18:29
Settings for sublime text 3

Sublime Text Settings

Install these packages with PackageControl:

Packages

  1. SideBarEnhancements
  2. A file icon
  3. PackageResourceViewer
  4. ColorHints
  5. Justify
  6. Indent XML
@danielTobon43
danielTobon43 / $README.md
Last active August 22, 2023 15:46
Conda environment tutorial

Create conda environment

  1. Download and install miniconda3: https://docs.conda.io/en/latest/miniconda.html
  2. Open Anaconda Prompt (miniconda3)
  3. conda create --prefix=conda-env python==3.8
  4. conda config --set env_prompt '({name}) <-- Just once
  5. conda activate conda-env
  6. conda install <package-name>
  7. conda install -c conda-forge <package-name>
  8. Inside conda-env, run: pip install <package-name>