diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-10-31 10:17:43 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-10-31 10:17:43 +0100 |
| commit | ae24d9a8869c497537839f330384cbadb2cf687c (patch) | |
| tree | 79184f1d1db6f0b8e2f7aad3a262b3a2bccdde58 /public/drawing-pixels-in-plan9.html | |
| parent | 409dfae3983b55ffa469a556683fab4ec70b1e99 (diff) | |
| download | mitjafelicijan.com-ae24d9a8869c497537839f330384cbadb2cf687c.tar.gz | |
Updated theme
Diffstat (limited to 'public/drawing-pixels-in-plan9.html')
| -rwxr-xr-x | public/drawing-pixels-in-plan9.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/public/drawing-pixels-in-plan9.html b/public/drawing-pixels-in-plan9.html index 8cf78b1..7f16f0f 100755 --- a/public/drawing-pixels-in-plan9.html +++ b/public/drawing-pixels-in-plan9.html | |||
| @@ -11,7 +11,7 @@ alternative for drawing that draws a yellow square on a blue background.<p>More | |||
| 11 | contains all the drawing functions<li><a href=https://9fans.github.io/plan9port/man/man3/draw.html>draw man page</a> | 11 | contains all the drawing functions<li><a href=https://9fans.github.io/plan9port/man/man3/draw.html>draw man page</a> |
| 12 | has a bit more digestable descriptions of the draw functions<li><a href=https://9fans.github.io/plan9port/man/man3/graphics.html>graphics man page</a> | 12 | has a bit more digestable descriptions of the draw functions<li><a href=https://9fans.github.io/plan9port/man/man3/graphics.html>graphics man page</a> |
| 13 | has a bit more digestable descriptions of the graphics functions<li><a href=https://9fans.github.io/plan9port/man/man3/>all man pages</a> | 13 | has a bit more digestable descriptions of the graphics functions<li><a href=https://9fans.github.io/plan9port/man/man3/>all man pages</a> |
| 14 | can be a valuable resource for learning about the system</ul><figure><img src=/notes/plan9-pixels.png alt="Plan9 Howdy World!"></figure><pre tabindex=0 style=background-color:#fff><code><span style=display:flex><span><span style=color:green>// main.c | 14 | can be a valuable resource for learning about the system</ul><figure><img loading="lazy" src=/notes/plan9-pixels.png alt="Plan9 Howdy World!"></figure><pre tabindex=0 style=background-color:#fff><code><span style=display:flex><span><span style=color:green>// main.c |
| 15 | </span></span></span><span style=display:flex><span><span style=color:green></span><span style=color:#00f>#include</span> <span style=color:#00f><u.h></span><span style=color:#00f> | 15 | </span></span></span><span style=display:flex><span><span style=color:green></span><span style=color:#00f>#include</span> <span style=color:#00f><u.h></span><span style=color:#00f> |
| 16 | </span></span></span><span style=display:flex><span><span style=color:#00f>#include</span> <span style=color:#00f><libc.h></span><span style=color:#00f> | 16 | </span></span></span><span style=display:flex><span><span style=color:#00f>#include</span> <span style=color:#00f><libc.h></span><span style=color:#00f> |
| 17 | </span></span></span><span style=display:flex><span><span style=color:#00f>#include</span> <span style=color:#00f><draw.h></span><span style=color:#00f> | 17 | </span></span></span><span style=display:flex><span><span style=color:#00f>#include</span> <span style=color:#00f><draw.h></span><span style=color:#00f> |
| @@ -58,11 +58,11 @@ can be a valuable resource for learning about the system</ul><figure><img src=/n | |||
| 58 | </span></span><span style=display:flex><span> $CC $CFLAGS main.c | 58 | </span></span><span style=display:flex><span> $CC $CFLAGS main.c |
| 59 | </span></span><span style=display:flex><span> $LD $LDFLAGS -o main main.$O | 59 | </span></span><span style=display:flex><span> $LD $LDFLAGS -o main main.$O |
| 60 | </span></span></code></pre><p>And run with <code>./main</code>. To exit the program, press <code>Delete key</code> (strange but this | 60 | </span></span></code></pre><p>And run with <code>./main</code>. To exit the program, press <code>Delete key</code> (strange but this |
| 61 | is the alternative for Ctrl+C).<p><em>This is <strong>very cool</strong> indeed!</em></div></article></main><section><hr><h2>Posts from blogs I follow around the net</h2><ul><li><a href=https://utcc.utoronto.ca/~cks/space/blog/solaris/ZFSWhyNotDirectoryToFilesystem target=_blank rel=noopener>One reason that ZFS can't turn a directory into a filesystem</a> — <a href=https://utcc.utoronto.ca/~cks/space/blog/>Chris's Wiki :: blog</a><div>One of the wishes that I and other people frequently have for ZFS | 61 | is the alternative for Ctrl+C).<p><em>This is <strong>very cool</strong> indeed!</em></div></article></main><section><hr><h2>Posts from blogs I follow around the net</h2><ul><li><a href=https://utcc.utoronto.ca/~cks/space/blog/linux/NFSv4ServerLockClients target=_blank rel=noopener>Finding which NFSv4 client owns a lock on a Linux NFS(v4) server</a> — <a href=https://utcc.utoronto.ca/~cks/space/blog/>Chris's Wiki :: blog</a><div>A while back I wrote an entry about finding which NFS client owns |
| 62 | is the ability to take an existing directory (and everything | 62 | a lock on a Linux NFS server, which turned |
| 63 | underneath it) in a ZFS filesystem and turn it into a sub-filesystem | 63 | out to be specific to NFS v3 (which I really should have seen coming, |
| 64 | of its own. One reason for wanting this is that a number of things | 64 | since it involved NLM and lockd). Finding the NFS v4 client that |
| 65 | are set and controlled on a per-filesyst…<li><a href=http://www.landley.net/notes-2023.html#28-10-2023 target=_blank rel=noopener>October 28, 2023</a> — <a href=http://www.landley.net/notes-2023.html>Rob Landley's Blog Thing for 2023</a><div>Oh good grief, two of my least favorite licensing people, Larry Rosen | 65 | owns a lock is, depending on your perspective, either simpl…<li><a href=http://www.landley.net/notes-2023.html#28-10-2023 target=_blank rel=noopener>October 28, 2023</a> — <a href=http://www.landley.net/notes-2023.html>Rob Landley's Blog Thing for 2023</a><div>Oh good grief, two of my least favorite licensing people, Larry Rosen |
| 66 | and Bradley Kuhn, are interacting on the OSI's license-discuss | 66 | and Bradley Kuhn, are interacting on the OSI's license-discuss |
| 67 | list where the're doing | 67 | list where the're doing |
| 68 | bad computer history and insisting that a guy Larry Rosen | 68 | bad computer history and insisting that a guy Larry Rosen |
