Is there actually such a thing as โ#+captureโ, or did codellama (as I'm playing around with locally run LLMs, via ollama and @xenodium's chatgpt-shell) hallucinate that into existence for me?
First sending me to https://orgmode.org/manual/Capturing-data-from-the-outside-world.html (a 404 destination) and then claiming it could be on https://orgmode.org/manual/Capture-templates.html ๐ง
[#]Ollama #Emacs #OrgMode
=> More informations about this toot | View the thread
@RoxanneG Curious: the portfolio on https://roxanneg.design/ has one item that sends me to a login page, the โEnterprise UI Designโ one. Is that expected?
=> More informations about this toot | View the thread
An overdue follow-up to this
The table-setup is still going strong. A few weeks later I added an org-capture-templates entry to add rows to the table without needing to load the file myself:
https://strangeweb.page/@jochie/113071954659909617
Today I figured out an โ:after-finalize ..." function that will pull in the Org-Mode file with Python blocks, evaluate them, save what needs saving, and kill buffers (if needed) ๐
Yes, this would work better as a blog post.. that's a different project.
[#]Emacs #OrgMode #NoGoogle
=> More informations about this toot | View the thread
(Not so) fun #HomeAssistant glitch - Somehow, while in the process of migrating a scene controller to HA and setting up a first button-automation, it decided to toggle ALL smartplugs that had been set up with HA, including ones for the fridge, dryer, the multimedia devices, and more.
It took a while before I noticed, as I'm doing this from my home office. Once it "clicked" I immediately removed the controller & started over, re-pairing it.
Thankfully it works now, but that was quite weird.
=> More informations about this toot | View the thread
Did the same this afternoon.
Saw quite a few with a Lemon8 link in their profile, one or two with a Red-note link, and the usual Instagram, YouTube, linktr.ee, and beacons.ai, etc, Donโt know what Iโm going to do with that yet, especially since Iโm trying to get rid of Instagram, for instance.
Also a trip down memory lane, when I came across several that I followed during the early COVID years and have since gone silent.
[#]Tiktok #RedNote #Lemon8 #Instagram
https://chaos.social/@podfeet/113813141199676444
=> More informations about this toot | View the thread
Trying out #Pixelfed, initially adding it as yet another account in #Ivory, which works for basic posting but Iโve already noticed a few places where itโs not a perfect fit.
What are the recommended apps for iOS, or even macOS, for this platform, if any?
:boost: appreciated
=> More informations about this toot | View the thread
I continue to make my way through AoC 2019, in Rust.
This was a trip down memory lane. I probably first played a variation on this game ~40y ago after I purchased a ZX Spectrum+ (the one without the rubber keys).
Implementing an optimal โfollow the ball" strategy wasnโt too difficult. Like many others I can probably play this game in my sleep, I spent more time on tweaking the visualization.๐
https://github.com/jochie/adventofcode/tree/main/2019/13/src
[#]AdventOfCode #RustLang #ZXSpectrum
=> More informations about this toot | View the thread
Reminder to self: It is NOT Monday
That is all.
=> More informations about this toot | View the thread
โexpected named lifetime parameterโ?!
Oy. Sounds like I need to backtrack and properly read a few Rust primers and not just try to wing my way through writing this code. ๐
And before someone asks, I've looked at these pages:
https://doc.rust-lang.org/rust-by-example/scope/lifetime.html
But most likely I need some additional grounding, before that really makes any sense.
That's what I get for trying to write Perl/Python type data structures in Rust. ๐
[#]Rust #RustLang
=> More informations about this toot | View the thread
My first endeavor, using an earlier AoC to give me something beyond โHello worldโ to try.
https://github.com/jochie/adventofcode/blob/main/2019/01/src/main.rs
[#]AdventOfCode #Rust #Programming #Learning
=> More informations about this toot | View the thread
For Christmas I was gifted my own rubber duck. You know, for debugging. ๐
After he helped me for a few hours learn about Rust and was quite helpful in that, I decided he needed a name. So... may I introduce to you all my new friend and helper:
Dr. Donald โRubber Duck" Mallard
So far he's gotten me through learning (or coming to terms with) Rust syntax, ownership, using a crate (getopts), and several std::* libraries (fs, env, process, time).
What will be next?
[#]Rust #Programming #Learning
=> More informations about this toot | View the thread
For completeness I created a programmatic approach that includes some of the code I wrote to get me the answer, plus some more to cast a wide enough net and find gates to swap, without running out of time before the end of the universe.
https://github.com/jochie/adventofcode/blob/main/2024/24/program.py#L195
[#]AdventOfCode #Python #Programming
=> More informations about this toot | View the thread
Itโs my first time getting to Day 25 with all 48 stars, so I wasn't sure what to expect after Part 1.
I resisted trying to get clever or optimize it in any way and I guess I'm glad because it really wasn't worth it when it runs the actual input in 0.01s:
$ ./program.py -p1 -finput
[Duration 0.01s] Part 1, filename 'input', answer
Still a bit of reading comprehension needed, but no major hiccups.
https://github.com/jochie/adventofcode/tree/main/2024/25
[#]AdventOfCode #Python #Programming
=> More informations about this toot | View the thread
I just completed all 25 days of Advent of Code 2024! #AdventOfCode https://adventofcode.com/
That wasn't too bad for a final puzzle. ๐
=> More informations about this toot | View the thread
I'm going through and checking/reducing the contents of some old boxes (that probably shouldn't have moved with us when we moved across the US, butโฆ) and came across these.
Copyrights on them are 2009 & 2010, which was pretty early on in the Netflix streaming days (around the time they launched original content).
We never actually used these, though. Did you?
[#]Throwback #Streaming #Netflix
=> More informations about this toot | View the thread
I just completed "Crossed Wires" - Day 24 - Advent of Code 2024 #AdventOfCode https://adventofcode.com/2024/day/24
Part 1 was, relatively, straightforward evaluation.
Part 2... Oy. 80% done with code to find the "bad" sections of the gates, and 20% with visualizing the graph and manually extending the net that I was casting in finding potential solutions.
I would suggest simply recreating the circuit instead of trying to fix it? ๐
=> More informations about this toot | View the thread
P1 was likely suboptimal, nested for loops that go over each node, loop over their connected nodes, and then over their connected nodes. If that is back to the original node, we have a trio. Extra steps to make sure these are unique sets, etc.
P2 starts with a cluster of 1 node, looks for a node that connects to all entries in the cluster, add it, repeat, etc.
Should probably rewrite w/ Python modules
https://github.com/jochie/adventofcode/tree/main/2024/23
[#]AdventOfCode #Python #Programming
=> More informations about this toot | View the thread
I just completed ๐ "LAN Party" ๐ฎ - Day 23 - Advent of Code 2024 #AdventOfCode https://adventofcode.com/2024/day/23
=> More informations about this toot | View the thread
Part 1 was mostly a matter of getting the pseudo random generator right.
For Part 2 I tracked every 4 number sequence and the corresponding value, the first time that sequence was seen for the buyer, and see which sequence had the highest combined value. A bunch of the intermediate values could be optimized away, but helped to keep my head straight and since it only took a few seconds to run... ๐คท๐ปโโ๏ธ
https://github.com/jochie/adventofcode/tree/main/2024/22
[#]AdventOfCode #Python #Programming
=> More informations about this toot | View the thread
I just completed ๐"Monkey Market" ๐- Day 22 - Advent of Code 2024 #AdventOfCode https://adventofcode.com/2024/day/22
Here's to an actual good night of sleep. ๐ด
=> More informations about this toot | View the thread
=> This profile with reblog | Go to jochie@strangeweb.page account This content has been proxied by September (3851b).Proxy Information
text/gemini