Skip to content
View Luctins's full-sized avatar
🦀
🦀
Block or Report

Block or report Luctins

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Luctins/readme.org

Hi there 👋

O que faço/What I do

PT-br

Atualmente trabalho na MacnicaDHW como desenvolvedor de firmware, especialmente com Hardware customizado, em plataformas como NIOSII, ARM e ESP32.

EN

Currently I work for MacnicaDHW as a firmware developer, working mostly with custom Hardware platforms such as NIOSII, custom ARM Boards and ESP32.

Favorite Stuff

Linux Distro

Tools

Languages

  • Lisp - because emacs 🙃

./img/lisp-the-princess.png

source

  • Rust - really like it and have been using it for just about everything that I can (thanks to @kroltan for introducing it to me!)
  • LaTeX - use it a lot for documentation stuff and also with emacs’s orgmode for ease of use
  • C - good, fast and dangerous.
  • Python - usefull to do quick iterations on some idea before optimizing it and doing things that bash isn’t good at doing.

Contatos/Contact

Email:

Personal Website

Social

Pinned

  1. luctins.cfg luctins.cfg Public

    Curated Config Files for everything that I use

    Shell

  2. image-sorter image-sorter Public

    A simple tool for quickly organizing images (mostly memes) with 'tag like' names and a flexible layout

    Rust

  3. lissajous-vhdl lissajous-vhdl Public

    A VHDL implementation for a lissajous curve generator. Done as a class assigmennt

    VHDL

  4. orgmode image inserter orgmode image inserter
    1
    (defun org-insert-image-from-clipboard ()
    2
        "Take a screenshot into a time stamped unique-named file in the
    3
    same directory as the org-buffer and insert a link to this file. Depends in X.org to work (for now)"
    4
        (interactive)
    5
        (setq folder-name (concat (file-name-sans-extension (buffer-file-name)) "-orgimg"))
  5. Little ASCII spinner I wrote in rust... Little ASCII spinner I wrote in rust to learn how to use iterators
    1
    struct SpinnyThing {
    2
    	index: usize,
    3
    }
    4
    
                  
    5
    impl SpinnyThing {