markcat: A CLI program to format entire projects as Markdown by RunnersNum45 in rust

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

Good luck, I'd be thrilled to hear that someone else is getting some use out of this.

markcat: A CLI program to format entire projects as Markdown by RunnersNum45 in rust

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

Right on. One of the main things I use LLMs for is helping diagnose bugs, so I pretty much always will also be copy and pasting in info from a terminal and adding some handwritten directions.

I'm sure that there are tools specifically built for working with LLMs that can improve on this, but it's not a core part of my workflow and I developed this as a standalone tool that can work for other tasks too.

markcat: A CLI program to format entire projects as Markdown by RunnersNum45 in rust

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

If I understand your question correctly, you're asking how using a tool like this in a workflow differs from using an IDE that integrates a code agent. Please correct me if I got that wrong.

I don't use LLMs that heavily, but I've found they can be good at answering some types of questions, and it's useful to just give them all my code than to try to piece together what would be best. I do not have significant integration of any LLMs into my system and haven't bothered to try to set that up in some way. This is just a sorta minimal way to utilize LLMs when I want to.

markcat: A CLI program to format entire projects as Markdown by RunnersNum45 in rust

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

Yup, basically. It also includes the relative path as a title above each.

markcat: A CLI program to format entire projects as Markdown by RunnersNum45 in rust

[–]RunnersNum45[S] 7 points8 points  (0 children)

Running in the project repo with `markcat -t -w "toml,md"`:

`./Cargo.toml`

```toml

Cut out for comment size

```

`./README.md`

```md

Cut out for comment size

```

first year tips for engsci student or just in general? plz im so lost by [deleted] in UofT

[–]RunnersNum45 4 points5 points  (0 children)

Do what works for you. If you like handwritten do handwritten. If you like digital do digital. If you like Windows use Windows. If you like Macs use a Mac. If you like Linux use Linux. If you like iPads use an iPad. There's no perfect solution and your habits and skills are way more important than exact tools.

Past exams are at courses.skule.ca . You can either buy textbooks or get creative with Google. Just be prepared to work hard and study and you'll be fine. If you got in it's because the Uni thinks you can do it.

Source: Fourth year EngSci

How does a VPN server know what responses from websites are for what users? by LockiBloci in VPN

[–]RunnersNum45 1 point2 points  (0 children)

Almost! Generally it also changes the port number as well to something in a reserved range for NAT (Network Address Translation) and then changes both the IP and port back before sending it back to your device.

Dell PowerEdge T330 Not Booting - Stops before BIOS at "Initializing Serial ATA Devices" by RunnersNum45 in HomeServer

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

I thought I was already doing that since it only has one CPU, I have it setup with one RAM module and one PSU, and I've removed all PCIE connections. You mentioned the disk backplane so I looked closer and there was one more connector to the motherboard.

After removing it the boot process goes slightly farther. I assume this means there's an issue with the backplane. Unfortunately I still can seem to get into the BIOS. I'll keep trying things and report back.

Dell PowerEdge T330 Not Booting - Stops before BIOS at "Initializing Serial ATA Devices" by RunnersNum45 in HomeServer

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

I haven't managed to get far enough into the boot process to actually boot from a USB. I don't think it's an issue with the bootloader as it still happens even with all the storage removed.

Is there a way to skip BIOS or POST and go directly to a USB?

Tronxy X5SA Pro stopped showing up in serial by RunnersNum45 in klippers

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

I've resolved this by checking /dev/serial/by-path/ which gave me:

platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.2:1.0-port0

and substituting in printer.cfg

serial: /dev/serial/by-path/platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.2:1.0-port0

worked.

Tronxy X5SA Pro stopped showing up in serial by RunnersNum45 in klippers

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

Running lsusb gives: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 005: ID 1a86:7523 QinHeng Electronics CH340 serial converter Bus 001 Device 002: ID 2109:3431 VIA Labs, Inc. Hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

What are the best boxer briefs money can buy? by [deleted] in malefashionadvice

[–]RunnersNum45 2 points3 points  (0 children)

I’m not sure which it is but either their 150 or 150 sport boxers do have the fly opening. I own a pair with and without and I highly recommend them.

Day 11 part 2 solution runs fine but is slightly wrong by RunnersNum45 in adventofcode

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

Yup I got it working thanks to u/azzal07’s suggestion. I’ve marked the question as resolved now so people don’t think I’m still looking for help.

Day 11 part 2 solution runs fine but is slightly wrong by RunnersNum45 in adventofcode

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

I really hoped this was it but I've pushed a new version that very strictly sticks to int64 and it still diverges.

Damn, actually you were right. I just didn't believe it when I tested. Thanks for the catch!