Skip to content

Instantly share code, notes, and snippets.

View wkrea's full-sized avatar

William Javier Trigos Guevara wkrea

View GitHub Profile
@wkrea
wkrea / installing-node-with-nvm.md
Created April 19, 2020 15:59 — forked from d2s/installing-node-with-nvm.md
Installing Node.js to Linux & macOS & WSL with nvm

Installing Node.js with nvm to Linux & macOS & WSL

A quick guide on how to setup Node.js development environment.

Install nvm for managing Node.js versions

nvm allows installing several versions of Node.js to the same system. Sometimes applications require a certain versions of Node.js to work. Having the flexibility of using specific versions can help.

  1. Open new Terminal window.
@wkrea
wkrea / instructions.md
Created April 14, 2020 19:08 — forked from richlander/instructions.md
Installing .NET Core 3.0 on Linux ARM64

Installing .NET Core on Linux ARM64

The following intructions can be used to install .NET Core on Linux ARM64.

Pro tip: Check out .NET Core Docker files to determine the exact instructions for installing .NET Core builds, for example .NET Core 3.1 ARM32 SDK Dockerfile.

Installing .NET Core Globally

The following instructions install the latest .NET Core globally. It isn't required to do that, but it provides the best experience.

@wkrea
wkrea / shelldown-demo
Created March 17, 2020 01:20 — forked from pjeby/shelldown-demo
"You got your markdown in my shell script!" "No, you got your shell script in my markdown!"

Mixed Markdown and Shell Scripting

: By the power of this magic string: ex: set ft=markdown ;:<<'```shell' #, this file is now both a markdown document and an executable shell script. chmod +x it and try running it!

The above line does just what it says. More specifically, when placed within in the first 5 lines and preceded only by blank lines or #-prefixed markdown headers:

  1. The first part of the magic string makes github and various editors (e.g. atom with the vim-modeline packge) treat the file as having markdown syntax (even if the file doesn't have an extension)
  2. The second part (if run in a shell), makes the shell skip execution until it encounters the next ```shell block.

(The line also has to start with a : so that it's valid shell code.)

@wkrea
wkrea / hello-openmp.c
Created March 15, 2020 14:49 — forked from romeroyonatan/hello-openmp.c
Hello world in OpenMP. Minimal example
#include <stdio.h>
#include <stdlib.h>
#include <omp.h>
#define PARENT_TID 0
int main() {
int tid;
#pragma omp parallel
{
@wkrea
wkrea / openmp.md
Created March 9, 2020 02:09 — forked from bobetocalo/openmp.md
OpenMP for Parallel Programming

OpenMP

Open Multi-Processing es la API (biblioteca que define solo la interfaz) que aporta paralelismo multihilo en sistemas de memoria compartida en C/C++. Image of shared memory

OpenMP se basa en el modelo fork-join, paradigma que proviene de los sistemas Unix, donde una tarea muy pesada se divide en X hilos (fork) con menor peso, para luego "recolectar" sus resultados al final y unirlos en un solo resultado (join). Image of fork/join

La sintaxis básica disponible para informar al compilador dónde optimizar código es la directiva de OpenMP:

@wkrea
wkrea / notes.md
Created February 27, 2020 19:17 — forked from g0t4/notes.md
Docker Cheat Sheet

Windows Containers notes

@wkrea
wkrea / kubernetes.md
Created February 27, 2020 19:15 — forked from xmlking/kubernetes.md
Kubernetes Cheat Sheet

Kubernetes

Install

Prerequisites

  1. Bash v5+ checkout Upgrading Bash on macOS
  2. bash-completion@2

Install Docker and Kubernetes(k8s)

@wkrea
wkrea / 000-eScience_presentation.Rmd
Created February 27, 2020 19:15 — forked from benmarwick/000-eScience_presentation.Rmd
notes on docker and rstudio
# Reproducible Research using Docker and R
# Challenges of reproducibility
- dependencies
- isolation and transparency
- portability of computationational environment
- extendability and resuse
- ease of use
@wkrea
wkrea / cheatsheets.md
Created February 27, 2020 19:09 — forked from FlorianHeigl/cheatsheets.md
Printable Cheat Sheets for Software

A collection of links to useful cheat sheets.

Only what's properly printable can get in. It should also be small enough to fit on a few pages.

Pleae contribute any you remember you've seen and liked. It would be wonderful if we can get these to be something more commonly made.

Search Engines

https://www.alienvault.com/blog-content/GoogleHackingCheatSheet.pdf (nicely put together!)

Intermediate Python for Finance Training

This is the Gist for the Intermediate Python for Finance Training in London, 28.-29. November 2017.

Notebooks & Code Files

Additional files (eg Jupyter Notebooks) are found under: