[racket-users] about 《Revenge of the Son of the Lisp Machine》 Appendix

2020-06-19 Thread Yuki Lee
https://www2.ccs.neu.edu/racket/pubs/icfp99-ffkf.pdf I have read this paper. I encountered a problem when I tried to run the code at the end. [image:

[racket-users] about 《Revenge of the Son of the Lisp Machine》 Appendix

2020-06-19 Thread Yuki Lee
https://www2.ccs.neu.edu/racket/pubs/icfp99-ffkf.pdf I have read this paper. I encountered a problem when I tried to run the code at the end. After reading this article, I added at the beginning #lang racket (require (lib "unitsig.ss")) ;;<- that's what i added (define SchemeEsq (unit/sig () ;;

Re: [racket-users] Should I stop sending packages to the catalog?

2020-06-19 Thread Hendrik Boom
On Fri, Jun 19, 2020 at 01:09:08PM -0700, Brian Adkins wrote: > > I'm hoping the main scenario I'm concerned about (a bug is introduced in an > update of a package) is rare, although that's exactly what motivated Alex > to create his system. If it is a rare scenario for me, then I'd like to do

Re: [racket-users] Should I stop sending packages to the catalog?

2020-06-19 Thread Brian Adkins
On Friday, June 19, 2020 at 3:36:55 PM UTC-4, Hendrik Boom wrote: > > On Fri, Jun 19, 2020 at 07:54:29AM -0700, Brian Adkins wrote: > > On Friday, June 19, 2020 at 8:09:04 AM UTC-4, Neil Van Dyke wrote: > > > > > > For an important production system, you probably want the source of > any > > >

Re: [racket-users] Should I stop sending packages to the catalog?

2020-06-19 Thread Hendrik Boom
On Fri, Jun 19, 2020 at 07:54:29AM -0700, Brian Adkins wrote: > On Friday, June 19, 2020 at 8:09:04 AM UTC-4, Neil Van Dyke wrote: > > > > For an important production system, you probably want the source of any > > third-party packages on which you depend to be in Git (or another SCM > > system)

Re: [racket-users] Should I stop sending packages to the catalog?

2020-06-19 Thread Brian Adkins
On Friday, June 19, 2020 at 8:09:04 AM UTC-4, Neil Van Dyke wrote: > > For an important production system, you probably want the source of any > third-party packages on which you depend to be in Git (or another SCM > system) that you control. > > You might also want to audit those packages yours

Re: [racket-users] Should I stop sending packages to the catalog?

2020-06-19 Thread Neil Van Dyke
For an important production system, you probably want the source of any third-party packages on which you depend to be in Git (or another SCM system) that you control. You might also want to audit those packages yourself, as well as audit any new version changes to them, before you push to pro