adi

twtxt.net

No description provided.

Recent twts from adi

Also, I’ll never take responsibility for other people’s expectations! I do what I do, work as I work, am as I am, never do what should do, work as I should work, be as I should be.

⤋ Read More

Been doing some embedded development lately. Building a driver for an electricity metering chip. First time I developed a driver. Got some $$$ also finally! :D

⤋ Read More
In-reply-to » Oh, btw, I'm considering building a VCS. The whole repository is just a single big patch file. It's for small projects tho. Ideas on what problems I might encounter with this approach?

And I’d rather have a plain text repo!

⤋ Read More
In-reply-to » Oh, btw, I'm considering building a VCS. The whole repository is just a single big patch file. It's for small projects tho. Ideas on what problems I might encounter with this approach?

Error compiling nix. Crap, so complicated! See, that’s why I’m building a VCS and not doing React.

⤋ Read More
In-reply-to » Ok, I have to make 200€ to pay rent. I've moved places in the meantime! Have a decent place. You're familiar with my work, let me know if you have some problems I could solve!

I was rejected for a go job a while ago @prologic@twtxt.net , weird reasons. Something that I sent a “Resume” instead of a “CV”.

⤋ Read More
In-reply-to » Ok, I have to make 200€ to pay rent. I've moved places in the meantime! Have a decent place. You're familiar with my work, let me know if you have some problems I could solve!

Also, don’t tell me to get a job, my sleep schedule is fucked and I don’t want to do React.

⤋ Read More
In-reply-to » Oh, btw, I'm considering building a VCS. The whole repository is just a single big patch file. It's for small projects tho. Ideas on what problems I might encounter with this approach?

Yeah, errors on cargo install pijul --version "~1.0.0-beta"

⤋ Read More
In-reply-to » Oh, btw, I'm considering building a VCS. The whole repository is just a single big patch file. It's for small projects tho. Ideas on what problems I might encounter with this approach?

I’m installing now, It’s not the first time. I remember tho I wasn’t satisfied with their repo format.

⤋ Read More
In-reply-to » Oh, btw, I'm considering building a VCS. The whole repository is just a single big patch file. It's for small projects tho. Ideas on what problems I might encounter with this approach?

My VCS would allow you use standard UNIX tools like diff and patch.

⤋ Read More

Oh, btw, I’m considering building a VCS. The whole repository is just a single big patch file. It’s for small projects tho. Ideas on what problems I might encounter with this approach?

⤋ Read More

Ok, I have to make 200€ to pay rent. I’ve moved places in the meantime! Have a decent place. You’re familiar with my work, let me know if you have some problems I could solve!

⤋ Read More
In-reply-to » Btw, mkws works GREAT with Plan9 mk. You just replace the bin/mkws script with a mkfile. It's drop in! Just create a mkfile in the bin directory, name it mkws and use a mk shebank like #!/usr/local/plan9/bin/mk -f.

mk can be installed on Linux/BSD systems via plan9port!

⤋ Read More

Btw, mkws works GREAT with Plan9 mk. You just replace the bin/mkws script with a mkfile. It’s drop in! Just create a mkfile in the bin directory, name it mkws and use a mk shebank like #!/usr/local/plan9/bin/mk -f.

#!/usr/local/plan9/bin/mk -f

URL=//example.com
SHARE=share

THEMEFILES=$SHARE/l.upphtml\
    $SHARE/s.uppcss\

TPLFILES=`{find . -maxdepth 1 -name "*.upphtml" | cut -c3-}
HTMLFILES=${TPLFILES:%.upphtml=%.html}

$URL:V: sitemap.xml $HTMLFILES

%.html:Q: %.upphtml $THEMEFILES
    echo Making $target
    pp $SHARE/l.upphtml ${target%.html}.upphtml $URL > $target

sitemap.xml:Q: $HTMLFILES $SHARE/sitemap.uppxml
    echo Making $target
    pp $SHARE/sitemap.uppxml $URL > $target

clean:VQ:
    echo "$HTMLFILES" sitemap.xml | xargs -n1 echo "Removing"
    rm -f $HTMLFILES sitemap.xml

There, your web site builds only when assets are out of date!`

⤋ Read More