4 votes

What programming/technical projects have you been working on?

This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?

1 comment

  1. acdw
    Link
    I've shortened my short SSG, and made NEF, which is going to run my new website (currently a work in progress). The entire script is 299 bytes, so I'll copy-paste it here: #!/bin/sh -C rm -r...

    I've shortened my short SSG, and made NEF, which is going to run my new website (currently a work in progress). The entire script is 299 bytes, so I'll copy-paste it here:

    #!/bin/sh -C
    rm -r O;mkdir O;cp -r S O;alias P=echo
    X()(eval "$(P "cat<<.";cat;P;P .)")
    P>Z 'for F;do X<L>O/${F#I};done'
    P>R '!/^<.*>$/{$0="<P>"$0}//'
    P>L '<!DOCTYPE html><title>$(sed q $F)</title>
    $(sed 1d $F|X|awk -vRS= -fR)<hr>/$(for P in I/*
    do P "<a href=.${P#I/}>$(sed q $P)</a>";done)'
    . ./Z
    

    of course, it's not too useful on its own, but I'm writing up a post to explain how to plug in and use it.

    3 votes