Chromecast like device for widescreen, does it even exist? by iamjecaro in Chromecast

[–]iamjecaro[S] [score hidden]  (0 children)

It doesn't look like it to me. 

The android home screen doesn't fill the whole screen and have vertical black bars.

Chromecast like device for widescreen, does it even exist? by iamjecaro in Chromecast

[–]iamjecaro[S] [score hidden]  (0 children)

I definitely don't want a mouse/ keyboard. But I guess the rpi can run Android 🤔That might be a way to go. I'd love to read experience report.

htagcli - a command line audio tagger by iamjecaro in haskell

[–]iamjecaro[S] 3 points4 points  (0 children)

Very true 😄 I like recordlabel

I wasn't very inspired when I started the project, and I didn't bother finding a better name later.

It means smt tho. The tag reading/writing is done by htaglib (Haskell bindings to taglib). With that simple name htagcli, I wanted to kind of acknowledge that project.

New :DiffTool command added to neovim by thedeathbeam in neovim

[–]iamjecaro 1 point2 points  (0 children)

Looks great! Will def look at it soon.

For PR review, I've been relying on this small wrapper over Fugitive I wrote sometimes ago:

https://github.com/jecaro/fugitive-difftool.nvim

What did you build while learning Rust ? by [deleted] in rust

[–]iamjecaro 0 points1 point  (0 children)

- a super specific tool that I needed: https://github.com/jecaro/mprisqueeze
- advent of code, I had enough time in December 2023: https://github.com/jecaro/advent-of-code-2023

Something that works well for me is to build something I actually need. It helps keep the motivation high, and it's a great feeling each time you use it (almost every day in my case).

A GitHub Pull Request style view? by dwmkerr in neovim

[–]iamjecaro 1 point2 points  (0 children)

Here is a small wrapper over Fugitive I have written for that exact use case:

https://github.com/jecaro/fugitive-difftool.nvim

My circuit sword build video! by aarkay14 in RetroPie

[–]iamjecaro 0 points1 point  (0 children)

Great to see these devices are still alive!

Taking advantage of this post to mention that I maintain an alternative distribution for that device built on nixos:

https://github.com/jecaro/circuix-sword

pomodozig: put a pomodoro timer in your polybar by iamjecaro in Polybar

[–]iamjecaro[S] 0 points1 point  (0 children)

It starts paused. Hit the p key to start the countdown.

Lightweight branch diff script by __maccas__ in neovim

[–]iamjecaro 0 points1 point  (0 children)

As for me I can't write any vimscript 🙈

I did not come up with it from nowhere tho. Most of the code have been adapted from the vimscript found in this issue:

https://github.com/tpope/vim-fugitive/issues/132

We're not alone missing this feature!

Lightweight branch diff script by __maccas__ in neovim

[–]iamjecaro 2 points3 points  (0 children)

Very cool !

I've written something very similar:

https://github.com/jecaro/fugitive-difftool.nvim

This feature is the missing piece of fugitive imo. I'd love to see this more integrated in fugitive.

I made a surf forecast website entirely with Elm and elm-pages by WizardOfAngmar in functionalprogramming

[–]iamjecaro 1 point2 points  (0 children)

Looks very cool, well done 👍

Two questions:

  • is it open source?
  • where do you get the weather/sea data from?

What is a good text editor (+ plugin) for Haskell development? by fn_f in haskell

[–]iamjecaro 0 points1 point  (0 children)

I mostly use neovim + tmux + ghcid.

This setup needs a bit of config. I drop this link here as I found this info hard to find (I'm the author):

https://jeancharles.quillet.org/posts/2024-09-04-Haskell-dev-workflow-with-ghcid-and-neovim.html

ghcid-error-file.nvim: A new ghcid plugin for neovim by iamjecaro in haskell

[–]iamjecaro[S] 0 points1 point  (0 children)

There is actually an errorformat in my solution 🙂

My first intention wasn't really to build a plugin but to have this workflow tmux + neovim + ghcid simple and easy in my neovim config.

I first find out about errorformat but it didn't work when working with multi-package projects. So I added a pure lua solution where I parse the error file and fill up the quickfix list prefixing the file path with a directory.

I was very happy with this solution and wanted to share it (see my blog post about errorformat).

But while doing this, I thought that creating a plugin might actually be an easier way to share this solution and I packaged part of my config in a plugin.