lexi.lambda
2017-11-7 18:27:46

a Hackett logo would logically be a combination of the Haskell and Racket logos… but a lambda combined with a lambda is still just a lambda :/


lexi.lambda
2017-11-7 18:28:31

I guess it could use the lambda/>>= hybrid that Haskell’s logo has


stamourv
2017-11-7 18:33:52

Can you make a lambda out of two smaller lambdas?


stamourv
2017-11-7 18:34:41

@greg: ISTR you having a random generator for docs for fake (but plausible) syntax-zoo functions, but I can’t find it. Is it still around?


greg
2017-11-7 18:40:59

I don’t seem to have it handy. I pasterack-ed it but that’s scrolled off by now. I think it’s on an old laptop drive. I didn’t dignify it by making it a repo :stuck_out_tongue:


stamourv
2017-11-7 18:44:45

That’s a bummer.


dustin
2017-11-7 19:21:39

@lexi.lambda I use a guy who does them for $100. I can monitor it, get your feedback, and have it made for you. I can front the money if you’re seriously interested, and you can send it back to me when you’re satisfied with the design. Let me know.


lexi.lambda
2017-11-7 19:22:10

it’s fine, haha, I think it’s a little premature to be worrying about that right now.


dustin
2017-11-7 19:23:54

Right. Here’s one he did for me. Second.


dustin
2017-11-7 19:24:36

dustin
2017-11-7 19:27:33

leafac
2017-11-7 20:27:27

How do I save a pict to a file? Preferably an SVG or a PDF, but without cropping the figure.


apg
2017-11-7 23:11:54

@leafac (send (pict->bitmap sp) save-file png-name 'png)))) works pretty well. sp is the pict


apg
2017-11-7 23:12:20

I’m guessing you figured it out though, as it’s been nearly 3 hours.


apg
2017-11-7 23:13:15

but… oh, you were looking for svg or a PDF….


leafac
2017-11-7 23:19:14

Still no luck with a scalable image format. But thanks anyway :slightly_smiling_face:


apg
2017-11-7 23:21:26

so, i’ve been looking a bit


apg
2017-11-7 23:21:46

slideshow can do to pdf, and what I’ve found is that there’s a svg-dc% and a ps-dc%


apg
2017-11-7 23:21:50

so.



apg
2017-11-7 23:24:21

it’ll probably work to then use (draw-pict yourpict svgdc ...)


apg
2017-11-7 23:24:46

but, i’m not sure if it’ll end up being scalable on the svgdc or not.


leafac
2017-11-8 01:02:36

Hmmm, I’ll check this out. Thank you.


zenspider
2017-11-8 01:47:14

@leafac ^^^


apg
2017-11-8 03:43:32

@zenspider thanks for that detailed example!