This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetch = require('node-fetch') | |
const AUTH0_CLIENT_ID = "something"; | |
const AUTH0_DOMAIN = "https://domain.com"; | |
const AUTH0_AUDIENCE = "https://domain.us.auth0.com/api/v2/"; | |
const MANAGEMENT_API_DOMAIN = "domain.us.auth0.com"; | |
const ROLE_ID = "rol_something"; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
# only cancel the previous workflow if it is still in progress | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#SBATCH --job-name=jobname # Nombre del trabajo | |
#SBATCH --output=/home/user/logs/%j.log # Nombre del output (%j se reemplaza por el ID del trabajo) | |
#SBATCH --error=/home/user/logs/%j.err # Output de errores (opcional) | |
#SBATCH --ntasks=1 # Correr 2 tareas | |
#SBATCH --cpus-per-task=2 # Numero de cores por tarea | |
#SBATCH --mem-per-cpu=0 # Memoria por proceso | |
#SBATCH --mail-type=END,FAIL # Enviar eventos al mail (NONE, BEGIN, END, FAIL, ALL) | |
#SBATCH [email protected] # El mail del usuario | |
#SBATCH --nodelist=node_name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import glob | |
import librosa | |
import numpy as np | |
import os | |
import sklearn.mixture | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
""" | |
Usage: | |
python swagger-yaml-to-html.py < /path/to/api.yaml > doc.html | |
""" | |
import yaml, json, sys | |
TEMPLATE = """ |