Skip to content

Commit

Permalink
Relax the size SLA (#85)
Browse files Browse the repository at this point in the history
yes, i know i'm chickening out here but not everyone is perfect
  • Loading branch information
ifd3f committed Nov 17, 2023
1 parent 59aff13 commit fd1bf14
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ $ dd bs=4M if=some-image-file.iso of=/dev/
```
$ dd bs=4M if=some-image-file.iso of=/dev/sdb
dd: failed to open '/dev/sdb': Permission denied
```
> I forgot to type sudo.
```
$ sudo dd bs=4M if=some-image-file.iso of=/dev/sdb
```
> There is no output, but I'd like to see the progress.
Expand Down Expand Up @@ -121,4 +124,4 @@ To be fair, Rust doesn't have a very comprehensive standard library, and I only

### Will the binary ever get bigger?

I want to keep the binary very small. I want to keep the x86_64-linux version under 4MB as an absolute maximum. As of v0.3.0, it's only 2.66MB, which is pretty good!
I want to keep the binary very small, or at least as small as I can make it. My current soft limit is to keep the x86_64-linux version under 4MB. This value may change with time or as features are added, but I don't want the binary to be anywhere near what an average Electron app is at. As of v0.4.3, it's only 2.77MB, which is not too bad!

0 comments on commit fd1bf14

Please sign in to comment.