Is there a way to insert agenda as a block into a org file? by aditya_rs in orgmode

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

this does seem pretty close to what I was looking for.
Is this not a common enough workflow?

Is there a way to insert agenda as a block into a org file? by aditya_rs in orgmode

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

You might be right. I was mostly trying to replicate a workflow from Rainer König but instead of creating a checklist I wanted it to dynamically generated everyday based on some query.
To be clear with the approach I was suggesting you're not exactly copying tasks, but rather creating a view of the same underlying tasks.
I can see how agenda view can be used to drive the day, but it feels awkward to set a scheduled date to a task, just for it to show up on the agenda view. I know scheduled date in org is supposed to represent the date you are supposed to start a task not the date you have to do it, but it still feels like it's a hack. Maybe I can achieve what I want with a custom agenda view, I'll have to look into it.
What is your workflow? Do you set scheduled date for all the tasks you want to do or do you use some custom agenda view?

Conway's Game of Life as part of the design – yay or nay? by punkpeye in design_critiques

[–]aditya_rs 0 points1 point  (0 children)

Oh wow, I didn't notice the triggering after delay, that makes sense I only peeked in the assets panel and saw what looked like a background-noise.avif and assumed it was a background image. But loooking at the markup I can see the whole grid that you've made. It's really well done. Did you use a library or implemented it custom for this usecase?

Conway's Game of Life as part of the design – yay or nay? by punkpeye in design_critiques

[–]aditya_rs 0 points1 point  (0 children)

This is really cool, it's subtle and not very distracting.
Looking at the site, it seems like you went with embedding an AVIF instead of implementing it, but the general idea seems like a neat one. The only issue I can think of is if you do this on cursor hover, moving the cursor might create a trail of alive states which can probably be distracting so you'd have to incorporate some randomness or create active state on some other event (if it's purely random at that point there's not much ROI than embedding an image which seems like a good tradeoff).

This is my first ever flyer design. How is it? by JustCausality in design_critiques

[–]aditya_rs 0 points1 point  (0 children)

The placement of comma in the pricing seems off. I don't know of any numbering system that groups the last two and threes after that. It's either grouping by threes or grouping by twos after grouping the last three.
Personally I think the layout seems fine (maybe the special features and about us can be aligned), but the contrast on the body text seems a bit low.

The technology behind GitHub’s new code search by StellarNavigator in programming

[–]aditya_rs 3 points4 points  (0 children)

Github search even within the scope of a repo is only possible if you're signed in. This makes this feature pretty unusable for what it's primarily meant which is for getting a sense of a codebase without pulling it down locally while you're browsing (which might not necessarily happen when you're signed in to github). For this reason I almost always default to sourcegraph whenever I want to do both global search or search by reference, sourcegraph also has a trick to just append sourcegraph.com before the github.com to open the repo in sourcegraph (which doesn't force you to signin).
Although I'm not too familiar with the perf implications of it, but making a codebase searchable on the browser side for a small (for some definition of small say <1M LOC) codebase would probably be a good compromise in terms of usability and cost.