I'm @jrafaaael

I&C Engineer and Software Developer

Obsessed with user experience. Crafting minimalist user interfaces and reliable server-side solutions. Iterating to improve results. Automating boring stuff. Deploying useful software and enjoying the whole process!

your-project

Do you have a cool idea? Do you want to make it reality? Let's connect!

  • awesome
  • tech
  • stack
  • will
  • go
  • here

ecg

Visualize ECG plot in multiple devices simultaneously through WiFi in user's preferred browser.

  • javascript
  • express
  • socketio
  • arduino

sigi

Self-hosted app to allow internal real-time chat, share files on local network and generate POA document.

  • javascript
  • react
  • tailwind
  • socketio
import { Hono } from "hono";

const exchange = new Hono();

exchange
  .get("/", getExchangeRates)
  .get("/:currencyNameOrId", getExchangeRateByCurrencyNameOrId);

export { exchange };

cbv

OSS

Python scraper of Central Bank of Venezuela to collect official exchange rates. Also nodejs API from those data.

  • python
  • typescript
  • nodejs
  • hono
void setup() {
  Serial.begin(9600);

  if (!rtc.begin()) {
    Serial.print("rtc not found");
    while(1) {}
  }
}

void loop() {

school-bell-automation

School bell automation for each start, recess and end of classes of each course.

  • arduino
  • c++
import tweepy

def get_tweet(id):
  tweets = tweepy.get_users_tweets(id)
  return tweets

if __main__ == "main"
  for id in accounts_id:
    tweets = get_tweets(id)

tw-rt-report

Script to generate a spreadsheet with retweets made by a list of users to @account on specified month.

  • python