Skip to content

Instantly share code, notes, and snippets.

View brunojhovany's full-sized avatar
🦍
Focusing

Jhovany Morales Bruno. brunojhovany

🦍
Focusing
View GitHub Profile
@brunojhovany
brunojhovany / check.yml
Created March 26, 2025 11:38
Sonarqube scanner for .Net framework GitHub actions
name: SonarQube Analysis
on:
push:
branches: [ main ]
pull_request:
types: [opened, synchronize, reopened]
env:
SOLUTION_PATH: 'YourSolution.sln' # Ruta a tu solución
@brunojhovany
brunojhovany / coderbyte-age-counting-with-python.py
Last active September 10, 2022 07:51
coderbyte age counting with python
## In this example i use python with pandas
import requests
import numpy as np
import pandas as pd
r = requests.get('https://coderbyte.com/api/challenges/json/age-counting%27')
print(len(r.json()['data']))
# split data by ", "
data = r.json()['data'].split(", ")