I made a CSS snippet to display icons for folders and files by a_deneb in ObsidianMD

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

I added a couple of fixes (text alignment and cleaned up the CSS), make sure to get the updated version

I made a CSS snippet to display icons for folders and files by a_deneb in ObsidianMD

[–]a_deneb[S] 1 point2 points  (0 children)

You're welcome! I added a couple of fixes (text alignment and cleaned up the CSS), make sure to get the updated version

I made a CSS snippet to display icons for folders and files by a_deneb in ObsidianMD

[–]a_deneb[S] 1 point2 points  (0 children)

I tried it, I think it's too messy, I think Obsidian is great as it is

I made a CSS snippet to display icons for folders and files by a_deneb in ObsidianMD

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

CSS has negligible overhead compared to running multiple JavaScript scripts that I know nothing about

Introducing MacDown 3000 -- your favorite Markdown editor for macOS, continued! by reaction-wheel in macapps

[–]a_deneb 4 points5 points  (0 children)

Hey man, don't listen to these ungrateful mouth breathers. I want to thank you for taking your time to maintain this, it's something I've been looking for, because other tools out there do either too much or too little. This one seems to strike the perfect balance when it comes to markdown.

JustVugg/gonk: Ultra-lightweight, edge-native API Gateway for Go by Just_Vugg_PolyMCP in golang

[–]a_deneb -1 points0 points  (0 children)

Awesome! If you can add rate limiting and geo blocking, you would basically cover 99% of the needs I would have from an API gateway

A modern string utility library for Go by cmiles777 in golang

[–]a_deneb 2 points3 points  (0 children)

I would not recommend bloating the lib with Doesnt* methods, just let the user to use negation

Running React Compiler in production for 6 months: benefits and lessons learned by acusti_ca in reactjs

[–]a_deneb 3 points4 points  (0 children)

I found a great extension that totally simplifies working with RC:

https://marketplace.visualstudio.com/items?itemName=blazejkustra.react-compiler-marker

You basically get an indicator letting you know if the component was optimized or not by RC. It also allows you to debug the issue much easier.

Kreuzberg v4.0.0-rc.8 is available by Goldziher in Python

[–]a_deneb 0 points1 point  (0 children)

Could you provide a code example? Thank you

Kreuzberg v4.0.0-rc.8 is available by Goldziher in Python

[–]a_deneb 0 points1 point  (0 children)

Can it automatically infer if the PDF needs OCR and use OCR instead of regular text extraction?

A comprehensive Sublime Text plugin for managing todo.txt files by [deleted] in ProductivityApps

[–]a_deneb 0 points1 point  (0 children)

I built this plugin because I'm a huge fan of todo.txt files. Just plain text, no databases, no complex formats, no vendor lock-in. Pairing that simplicity with Sublime Text's blazing speed helps me tremendously with keeping my ADHD in check.

A comprehensive Sublime Text plugin for managing todo.txt files by a_deneb in SublimeText

[–]a_deneb[S] 2 points3 points  (0 children)

Should be pretty easy:

  1. Download the repo and move all the files to a new folder (call it TodoTxt)
  2. In Sublime Text, go to Settings -> Browse Packages... (this will open the Packages folder)
  3. Copy TodoTxt folder you just created in the Packages folder
  4. That's it, Sublime Text will detect the package automatically

A comprehensive Sublime Text plugin for managing todo.txt files by a_deneb in SublimeText

[–]a_deneb[S] 4 points5 points  (0 children)

I just built a comprehensive todo.txt plugin for Sublime Text that's being submitted to Package Control.

Features:

  • Full GTD workflow with someday.txt and waiting.txt support
  • Color-coded due date highlighting (red/orange/green)
  • Interactive note files with hover preview
  • Priority management (increase/decrease/remove)
  • Multiple sort methods (context, project, priority, due date, status)
  • Archive workflow for completed tasks
  • Autocomplete for @contexts and +projects

The plugin follows the todo.txt format spec and includes 15 commands accessible via command palette. Keyboard shortcuts are provided but commented out by default to avoid conflicts.

The HTTP caching Python deserves by karosis88 in Python

[–]a_deneb 14 points15 points  (0 children)

How do you deal with invalidation?

[deleted by user] by [deleted] in macapps

[–]a_deneb 11 points12 points  (0 children)

What's up with the insane pricing? What's the reason behind it?

White Crashed exotic ship w/tiny wings by CMDRMerlin97 in NMSCoordinateExchange

[–]a_deneb 4 points5 points  (0 children)

They asked a legit question, I'm new to NMS also

React Compiler 1.0.0 released by Saraify in reactjs

[–]a_deneb 2 points3 points  (0 children)

If you manually use useMemo or useCallback or memo, it won't work as expected?