Skip to content

Instantly share code, notes, and snippets.

View oscarrodar's full-sized avatar
👋
trying to contribute

Oscar Rodriguez oscarrodar

👋
trying to contribute
  • AWS
  • Vancouver, BC, Canada
  • 22:10 (UTC -07:00)
  • X @OscarRodar
View GitHub Profile
@oscarrodar
oscarrodar / doxygen-settings
Last active May 9, 2023 17:25
These settings generate html code where you can navigate class diagrams located under `omnibox` folder
# Doxyfile 1.9.3
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
@oscarrodar
oscarrodar / path-checker
Created March 16, 2022 04:20
PATH Checker - PowerShell script
@($env:path -split ";").ForEach({ if($_) {$result = 'MISSING |';if(Test-Path -path $_) { $result = ' OK |'};-join($result, ' ', $_); }})
@oscarrodar
oscarrodar / edge-dev-script.md
Last active June 1, 2022 23:19
Edge Development Script

Edge Development Script

This is meant to help as a guide when it comes to a Edge development workflow.

Steps

  1. Launch Edge C__edge commmand app located in your desktop and make sure it doesn't retrieve an error.
  2. Checkout main branch using git checkout main
  3. Make sure to pull latest change using git pull
  4. At this moment you can create your own development branch following this standard user/[your-user-name]/[branch-name-based-on-dev-work]. For example: user/orodriguez/pi-feature-flag
@oscarrodar
oscarrodar / docker-commands.md
Last active October 27, 2018 19:31
Docker Help

Usefull commands for Docker-Beginners

Here you can find a helpful guide to start pushing your docker images to your private or public registry.

# First save the new image by finding the container ID
docker ps
# Then commit it to a new image name
docker commit <container-id> <new-image-name>
# Now login to the docker registry