HackerTrans
TopNewTrendsCommentsPastAskShowJobs

fabk

no profile record

Submissions

[untitled]

1 points·by fabk·قبل 6 أشهر·0 comments

P3a – Pixel Art Player

xda-developers.com
3 points·by fabk·قبل 8 أشهر·1 comments

Pixel Art in Microcontroller Displays [link fixed]

dev.makapix.club
2 points·by fabk·قبل 9 أشهر·1 comments

Pixel Art in Microcontroller Displays

makapix.club
2 points·by fabk·قبل 9 أشهر·1 comments

Ask HN: Who works with Medicare claims data (VRDC)?

1 points·by fabk·قبل سنتين·1 comments

comments

fabk
·قبل 8 أشهر·discuss
For pixel art lovers:

Open-source ESP32-P4-based wi-fi connected pixel art player, part of the Makapix Club project (https://makapix.club/).

Link to firmware repo: https://github.com/fabkury/p3a
fabk
·قبل 9 أشهر·discuss
FOSS effort to bring live pixel art to microcontroller-driven displays, such ESP32 projects with LED matrices or LCD/OLED modules. This is for:

- Makers: Get art that looks awesome on low-res, download firmware

- Pixel artists: Reach real-world displays, gain points and badges

- Everyone: Enjoy free art & community, even if you don't own a display

At high level, the project seeks to combine an MQTT broker for live updates (new posts), a lightweight free & ad-free social media experience (comments and likes only), a self-hosted approach to storing the artworks, and MCU firmware to turn any display into a web-connected pixel art player.

Join us! It is a lot to build and this is all just for fun & love.

----

[Sorry for reposting, the Discord link was broken! Now it's fixed!]
fabk
·قبل 9 أشهر·discuss
FOSS effort to bring live pixel art to microcontroller-driven displays, such ESP32 projects with LED matrices or LCD/OLED modules.

This is for:

- Makers: Get art that looks awesome on low-res, download firmware

- Pixel artists: Reach real-world displays, gain points and badges

- Everyone: Enjoy free art & community, even if you don't own a display

At high level, the project seeks to combine an MQTT broker for live updates (new posts), a lightweight free & ad-free social media experience (comments and likes only), a self-hosted approach to storing the artworks, and MCU firmware to turn any display into a web-connected pixel art player.

Join us! It is a lot to build and this is all just for fun & love.
fabk
·قبل سنتين·discuss
I am yet to find a replacement for R's dbplyr in Python. Read: Python-to-SQL code generation (dbplyr performs R-to-SQL). This is a very powerful package that alone can make me stay in R.
fabk
·قبل 3 سنوات·discuss
OMG I needed this hard laugh in my evening. Thanks to whoever made this.
fabk
·قبل 3 سنوات·discuss
Thanks, can I scream my hype out, now?
fabk
·قبل 3 سنوات·discuss
I wrote an R script to help me generate my own workouts.

What it actually does is schedule (distribute) the desired muscle groups across days according to your specification of:

  - volume: # sets to do on each workout day of that muscle group  
  - frequency: # days between workout days of that muscle group
The goal is to avoid having some days at the gym be huge (many exercises) while others are small (fewer exercises). The script uses simulated annealing to try to even out the schedule as much as possible.

I am afraid I do not have a website or write-up but the code is here: https://github.com/fabkury/caltre. I have been actually using this script for years and it has made my gym scheduling effortless. I can just focus on the "meta parameters", e.g.:

INPUT:

  muscle group,`X sets per training day`,`train every X 
  days`
  back,9,4  
  chest,9,4  
  quads,8,4  
  biceps,7,3  
  shoulder,6,4  
  abdominal,4,2  
  calf,4,5  
  anterior forearm,5,6  
  posterior forearm,5,6  
OUTPUT: It tells you what to do on each training day, as many days you want (it is an "infinite roll"). Here are 9 days to exemplify:

  day 1:
  chest 9
  biceps 7

  day 2:
  quads 8
  abdominal 4

  day 3:
  back 9
  calf 4
  anterior forearm 5

  day 4:
  biceps 7
  shoulder 6
  abdominal 4

  day 5:
  chest 9
  posterior forearm 5

  day 6:
  quads 8
  abdominal 4
  
  day 7:
  back 9
  biceps 7

  day 8:
  shoulder 6
  abdominal 4
  calf 4

  day 9:
  chest 9
  anterior forearm 5

  day X:
  ...
Kind regards.