Re: [racket-dev] [racket/web-server] 1c6411: Removing out-dated WebSocket implementation

2015-01-14 Thread Jay McCarthy
for things that use this code or a few very old browsers. Jay On Wed, Jan 14, 2015 at 2:37 PM, Sam Tobin-Hochstadt sa...@cs.indiana.edu wrote: How does this fit with backward compatibility? Sam On Wed, Jan 14, 2015 at 2:26 PM, Jay McCarthy jay.mccar...@gmail.com wrote: Branch: refs/heads/master

Re: [racket-dev] collects search order

2014-12-12 Thread Jay McCarthy
collects dir per invocation? -- Dan Liebgold[dan.liebg...@gmail.com] _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying

Re: [racket-dev] DrDr the split repository

2014-12-10 Thread Jay McCarthy
On Tue, Dec 9, 2014 at 12:12 AM, Asumu Takikawa as...@ccs.neu.edu wrote: On 2014-12-05 07:14:40 -0500, Jay McCarthy wrote: Instead, Matthew changed raco test (which is how DrDr tests programs) to support all these options. They can be test on a per-directory or per-file basis

Re: [racket-dev] DrDr the split repository

2014-12-05 Thread Jay McCarthy
files now, right? Robby On Fri, Dec 5, 2014 at 6:14 AM, Jay McCarthy jay.mccar...@gmail.com wrote: Since we split the repository, there have been significantly more errors on DrDr: http://drdr.racket-lang.org/ This is mainly because DrDr used to use a monolithic metadata file: https

Re: [racket-dev] The repository is now split

2014-12-05 Thread Jay McCarthy
list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which is great. - DC 64:33

Re: [racket-dev] new package system collections and conflicts

2014-12-03 Thread Jay McCarthy
, that's what I'll have to do. Neil V. -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which is great. - DC 64:33

Re: [racket-dev] new package system collections and conflicts

2014-11-30 Thread Jay McCarthy
is in conflict with Racket. For the purposes of conflicts, a module is a file that ends in .rkt, .ss, or .scrbl. Neil V. _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well

Re: [racket-dev] new package system collections and conflicts

2014-11-30 Thread Jay McCarthy
that ends in .rkt, .ss, or .scrbl. Neil V. _ Racket Developers list: http://lists.racket-lang.org/dev _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore

Re: [racket-dev] new package system and versions

2014-11-30 Thread Jay McCarthy
. _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which is great

Re: [racket-dev] new package system collections and conflicts

2014-11-30 Thread Jay McCarthy
On Sunday, November 30, 2014, Neil Van Dyke n...@neilvandyke.org wrote: Jay McCarthy wrote on 11/30/2014 12:13 PM: The documentation cited is making clear that there is NO connection between the name of a package and the provided modules. There is no such thing as a package namespace

Re: [racket-dev] new package system collections and conflicts

2014-11-30 Thread Jay McCarthy
to imagine the connection between the purpose of the package and a particular module provided. Jay On Sun, Nov 30, 2014 at 12:16 PM, Jay McCarthy jay.mccar...@gmail.com wrote: I do not think we should change the example. I do not want people to falsely believe that they can any expectation

Re: [racket-dev] new package system collections and conflicts

2014-11-30 Thread Jay McCarthy
On Sun, Nov 30, 2014 at 12:40 PM, Neil Van Dyke n...@neilvandyke.org wrote: Jay McCarthy wrote on 11/30/2014 12:30 PM: On Sunday, November 30, 2014, Neil Van Dyke n...@neilvandyke.org mailto:n...@neilvandyke.org wrote: Jay McCarthy wrote on 11/30/2014 12:13 PM

Re: [racket-dev] [plt] Push #29418: master branch updated

2014-11-18 Thread Jay McCarthy
] != ((intptr_t *)low)[max_size]) +break; + cnt += sizeof(intptr_t); +} + } else { +/* general case: compare bytes */ +while (max_size--) { + if (p[max_size] != low[max_size]) +break; + cnt++; +} } #endif -- Jay McCarthy http

Re: [racket-dev] fix for serve/servlet docs?

2014-11-14 Thread Jay McCarthy
this to the docs? Did I miss something? John -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which is great. - DC 64:33

Re: [racket-dev] Update libffi to 3.1

2014-10-27 Thread Jay McCarthy
://github.com/plt/racket/pull/806 Any suggestion, please talk to me :) Thank you. _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye

Re: [racket-dev] using module system for alternate namespaces

2014-10-27 Thread Jay McCarthy
[dan.liebg...@gmail.com] _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things

Re: [racket-dev] define-require-syntax issue

2014-10-22 Thread Jay McCarthy
-- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which is great. - DC 64:33 _ Racket Developers list

Re: [racket-dev] define-require-syntax issue

2014-10-22 Thread Jay McCarthy
(where I use #' maybe)? I'm don't follow what exactly goes wrong with the imported identifiers. Thanks, Dan On Wed, Oct 22, 2014 at 4:58 AM, Jay McCarthy jay.mccar...@gmail.com wrote: #lang racket/base ;; This module has a binding and an effect, so we can see that it was ;; required even

Re: [racket-dev] define-require-syntax issue

2014-10-22 Thread Jay McCarthy
the error location is the define-require-syntax declaration. Adding the /loc gets the correct usage location. Hrm. Hygiene is deep magic. Thanks, Dan On Wed, Oct 22, 2014 at 11:09 AM, Jay McCarthy jay.mccar...@gmail.com wrote: If you have (require X) then the identifiers imported from X get

Re: [racket-dev] Package build information

2014-09-10 Thread Jay McCarthy
. (It's not urgent, and if were my own repo I'd do the manual refresh. I just wanted to point it out.) [1]: https://github.com/mbutterick/describe/pull/1 -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation

[racket-dev] Package build information

2014-09-09 Thread Jay McCarthy
will be adding a UI element to summarize what you need to do with your packages. Jay -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which is great

Re: [racket-dev] How to translate DrRacket GUI to another (human) language?

2014-09-04 Thread Jay McCarthy
from Beginning student level. How do I proceed and are there any guidelines for the internationalization of DrScheme? Yours, Antti Karttunen _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io

Re: [racket-dev] [plt] Push #29214: master branch updated

2014-09-04 Thread Jay McCarthy
-Hochstadt sa...@cs.indiana.edu wrote: On Wed, Sep 3, 2014 at 10:53 AM, Jay McCarthy j...@racket-lang.org wrote: I need to revert this because it horribly breaks the bootstrapping phase. It may be possible to make the core have a package in the future, but it's not an easy change. Is this because code

[racket-dev] DrDr migration

2014-09-04 Thread Jay McCarthy
I am in the process of moving DrDr to IU. You may get some weird and delayed messages as the migration happens and problems are ironed out. I apologize for the noise. Jay -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying

Re: [racket-dev] dev Digest, Vol 68, Issue 3

2014-09-04 Thread Jay McCarthy
meun...@ccs.neu.edu To: dev@racket-lang.org Subject: Re: [racket-dev] How to translate DrRacket GUI to another (human) language? Message-ID: 20140904153532.ga31...@tekken.ccs.neu.edu Content-Type: text/plain; charset=us-ascii Jay McCarthy wrote: I also believe (and Robby can confirm

Re: [racket-dev] [plt] Push #29214: master branch updated

2014-09-03 Thread Jay McCarthy
. http://git.racket-lang.org/plt/b942a21846..92d5408aa8 =[ One Commit ]= Directory summary: 3.9% pkgs/racket-pkgs/racket-test/tests/pkg/ 96.0% racket/collects/pkg/ ~~ 92d5408 Jay McCarthy j...@racket-lang.org 2014-09-03 10:43

Re: [racket-dev] current packages' docs, errors, and conflicts

2014-08-18 Thread Jay McCarthy
? This is the case for the c and c-utils packages, which both provide the c collection. Sam -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which

Re: [racket-dev] pkg account creator not working?

2014-07-23 Thread Jay McCarthy
not working? -Ian _ Racket Developers list: http://lists.racket-lang.org/dev _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing

Re: [racket-dev] generic API names considered harmful

2014-07-05 Thread Jay McCarthy
list: http://lists.racket-lang.org/dev -- Jay McCarthy http://jeapostrophe.github.io Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which is great. - DC 64:33

[racket-dev] pkgd.racket-lang.org going down for maintenance

2014-06-16 Thread Jay McCarthy
packages These services will be available: - Browsing the package server via the Web interface - Using raco pkg (etc) to install and query package information Jay -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://jeapostrophe.github.io Wherefore

Re: [racket-dev] pkgd.racket-lang.org going down for maintenance

2014-06-16 Thread Jay McCarthy
The transition just completed and I've confirmed that it works from a few networks in Utah. It may take a while for DNS to update for you; if things are broken tomorrow, please let me know and we'll try to trouble-shoot. Jay On Mon, Jun 16, 2014 at 2:55 PM, Jay McCarthy jay.mccar...@gmail.com

Re: [racket-dev] [plt] Push #28781: master branch updated

2014-05-23 Thread Jay McCarthy
On May 23, 2014, at 3:59 PM, Greg Hendershott greghendersh...@gmail.com wrote: Feedback from a relatively naive Racket user: 1. +External effects are exemplified by input/output (or I/O). I/O is the +action of a function such as @racket[tcp-connect], which communicates +with the

Re: [racket-dev] [plt] Push #28781: master branch updated

2014-05-21 Thread Jay McCarthy
to aaa892646a. http://git.racket-lang.org/plt/dd0f0b6141..aaa892646a =[ One Commit ]= Directory summary: 100.0% pkgs/racket-pkgs/racket-doc/scribblings/reference/ ~~ aaa8926 Jay McCarthy j...@racket-lang.org 2014-05-21 10:14

[racket-dev] Separate Compilation Vulnerable to FFI... what to do?

2014-04-29 Thread Jay McCarthy
can only be implemented with a restricted form of the attack itself, so you can observe that the instantiation already happened. Jay -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93

Re: [racket-dev] actionable items, was: comments on comments on learning Racket

2014-04-28 Thread Jay McCarthy
to appear. Sam _ Racket Developers list: http://lists.racket-lang.org/dev _ Racket Developers list: http://lists.racket-lang.org/dev _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j

Re: [racket-dev] actionable items, was: comments on comments on learning Racket

2014-04-28 Thread Jay McCarthy
Of course, the big problem with different versions is that the error message may be even worse because it won't say Go choose the Racket language, since the teaching distribution may not even have that included. On Mon, Apr 28, 2014 at 9:04 AM, Jay McCarthy jay.mccar...@gmail.com wrote

Re: [racket-dev] Pre-Release Checklist for v6.0.1

2014-04-18 Thread Jay McCarthy
On Thu, Apr 17, 2014 at 4:44 PM, Ryan Culpepper ry...@ccs.neu.edu wrote: * Jay McCarthy jay.mccar...@gmail.com - Web Server Tests - XML Tests - HTML Tests - PLAI Tests - Racklog tests - Datalog tests All passed -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham

Re: [racket-dev] DrDr hung?

2014-04-05 Thread Jay McCarthy
on push 28468 for 36 hours. _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93

Re: [racket-dev] Can't log in to pkg.racket-lang.org

2014-01-27 Thread Jay McCarthy
wrote: I've put in my email and password, but clicking Log In does nothing. Neither does pressing enter. Anyone else seeing this behavior, or know what the problem is? Same here. _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j

Re: [racket-dev] DrRacket + ZeroMQ

2013-12-31 Thread Jay McCarthy
when running anyone which does not happen using Racket via command line. I already disabled the debugger as suggested by Jay McCarthy but this didn't solve the problem. Can anyone help me? Happy Holidays, Francisco Freire _ Racket Developers list: http

Re: [racket-dev] release notes

2013-12-20 Thread Jay McCarthy
because it redirects to S3, but if BYU were down then the redirect wouldn't happen. Jay -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket Developers list: http

Re: [racket-dev] release notes

2013-12-20 Thread Jay McCarthy
, but it was supposed to before. -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] release notes

2013-12-20 Thread Jay McCarthy
, Dec 20, 2013 at 3:14 PM, Jay McCarthy jay.mccar...@gmail.com wrote: On Thu, Dec 19, 2013 at 7:41 PM, Robby Findler ro...@eecs.northwestern.edu wrote: Jay, Jan Dvořák: formlet improvements * web-server/formlets supports generic input formlets and strings on all formlet default values. Jay

Re: [racket-dev] release notes

2013-12-20 Thread Jay McCarthy
that's causing them problems. In that case... On Fri, Dec 20, 2013 at 3:14 PM, Jay McCarthy jay.mccar...@gmail.com wrote: On Thu, Dec 19, 2013 at 7:41 PM, Robby Findler ro...@eecs.northwestern.edu wrote: Jay, Jan Dvořák: formlet improvements * web-server/formlets supports generic

Re: [racket-dev] [plt] Push #27967: master branch updated

2013-12-20 Thread Jay McCarthy
Jay McCarthy j...@racket-lang.org 2013-12-20 15:40 : | Fix typo on pkg site : M pkgs/plt-services/meta/pkg-index/official/static/index.html | 2 +- ~~ 6c4650e Jay McCarthy j...@racket-lang.org 2013-12-20 15:47 : | Remove secret information from pkg error messages : M racket

Re: [racket-dev] Pre-Release Checklist for v6.0, corrected url

2013-12-17 Thread Jay McCarthy
sure it is not getting my main installation. Jay On Mon, Dec 16, 2013 at 1:38 PM, Robby Findler ro...@eecs.northwestern.edu wrote: Are you running with the right version? The contract change isn't in the release build. Robby On Mon, Dec 16, 2013 at 2:23 PM, Jay McCarthy jay.mccar

Re: [racket-dev] Pre-Release Checklist for v6.0, corrected url

2013-12-16 Thread Jay McCarthy
On Mon, Dec 16, 2013 at 9:38 AM, Ryan Culpepper ry...@ccs.neu.edu wrote: * Jay McCarthy jay.mccar...@gmail.com - Web Server Tests These don't pass and have the same error that's here: http://drdr.racket-lang.org/27931/pkgs/web-server-pkgs/web-server-test/tests/web-server/run-all-tests.rkt I

Re: [racket-dev] [plt] Push #27862: master branch updated

2013-11-28 Thread Jay McCarthy
, 2013, at 8:46 PM, Jay McCarthy wrote: On Wed, Nov 27, 2013 at 6:27 PM, Robby Findler ro...@eecs.northwestern.edu wrote: On Wed, Nov 27, 2013 at 7:21 PM, Jay McCarthy j...@racket-lang.org wrote: If I have background expansion on, then when I open that file it installs

Re: [racket-dev] [plt] Push #27862: master branch updated

2013-11-27 Thread Jay McCarthy
% pkgs/plt-services/meta/pkg-index/official/static/ 17.6% pkgs/plt-services/meta/pkg-index/official/ 22.0% racket/collects/planet/private/ ~~ 2413278 Jay McCarthy j...@racket-lang.org 2013-11-27 14:51 : | moving delete button : M .../meta/pkg-index/official/static/index.html

Re: [racket-dev] [plt] Push #27862: master branch updated

2013-11-27 Thread Jay McCarthy
this happens. Robby On Wed, Nov 27, 2013 at 4:42 PM, Jay McCarthy j...@racket-lang.org wrote: There is an important change in this commit. Since we've created the release branch for 6.0, I think we should stop automatically installing and executing arbitrary code when people open files

Re: [racket-dev] [plt] Push #27862: master branch updated

2013-11-27 Thread Jay McCarthy
On Wed, Nov 27, 2013 at 6:27 PM, Robby Findler ro...@eecs.northwestern.edu wrote: On Wed, Nov 27, 2013 at 7:21 PM, Jay McCarthy j...@racket-lang.org wrote: If I have background expansion on, then when I open that file it installs the package. As I wrote in my previous message, it doesn't

Re: [racket-dev] [plt] Push #27864: master branch updated

2013-11-27 Thread Jay McCarthy
/c980182b6b..1741e1b0d1 =[ 2 Commits ]== Directory summary: 44.7% pkgs/planet-pkgs/planet-doc/planet/ 55.2% racket/collects/planet/private/ ~~ 680b6f4 Jay McCarthy j...@racket-lang.org 2013-11-27 19:09 : | Revert Remove

Re: [racket-dev] Should `dynamic-require`d libraries be in package dependencies?

2013-11-26 Thread Jay McCarthy
to make the XREPL package depend on DrRacket. Is there a best practice for these kinds of cases yet? Cheers, Asumu _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http

Re: [racket-dev] [plt] Push #27825: master branch updated

2013-11-26 Thread Jay McCarthy
: 52.6% pkgs/racket-pkgs/racket-test/tests/racket/ 45.6% pkgs/sandbox-lib/racket/ ~~ 79f8636 Jay McCarthy j...@racket-lang.org 2013-11-22 14:25 : | Ensure that threads created within call-with-limits are accounted | during the time/space limits : A pkgs/racket-pkgs/racket-test

Re: [racket-dev] [plt] Push #27825: master branch updated

2013-11-26 Thread Jay McCarthy
, Nov 26, 2013 at 10:49 AM, Jay McCarthy j...@racket-lang.org wrote: I agree that it is different. I disagree that this is a problem. The documentation says that is executes the code with a time restriction. This implies to me that (call-with-limits X #f t) should not use more than X secs

Re: [racket-dev] new package system status

2013-11-21 Thread Jay McCarthy
. This is basically how it works. The /index.html from S3 reads the /pkgs-all.json which is a JSON dump of the entire database and then renders it. If you do any active stuff, then you send requests to the dynamic server. /pkgs-all.json isn't the only available file though. -- Jay McCarthy j

Re: [racket-dev] backwards incompatibility (was Re: `define-serializable-struct` and the `deserialize-info...` export)

2013-11-08 Thread Jay McCarthy
? _ Racket Developers list: http://lists.racket-lang.org/dev _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay

Re: [racket-dev] `collection-path' Considered Brittle

2013-11-04 Thread Jay McCarthy
wording. But hopefully you could use collection-file-path in most cases instead of a collections-path function. I pushed a fix for the macro stepper, using `collections-file-path'. Vincent _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay

Re: [racket-dev] accessing @deftech terms in the reference from the guide

2013-10-23 Thread Jay McCarthy
something incorrectly. Thanks. David _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93

Re: [racket-dev] raco pkg dependency checks and exit code

2013-10-03 Thread Jay McCarthy
in but are wrong and should be CAUGHT and PUNISHED. I think that's the logic behind it. Jay Cheers, Asumu _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http

Re: [racket-dev] info.rkt `deps` and new #:version keyword: Backward compatibility?

2013-10-03 Thread Jay McCarthy
compatibility does not apply to beta software in my opinion. The next release will be the first release where the package system is not beta. 3. Instead couldn't the #version keyword simply be optional? See above. Jay -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http

Re: [racket-dev] package system, minimal builds and more

2013-10-02 Thread Jay McCarthy
this and saves everything in a temporary directory that must be manually cleaned. I did not implement that because it feels wrong to run a command like 'raco pkg clean-old-tmp-files' or something. But it sounds like you want that? Jay -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
for my functions that only need to read generic sets, unless we further subdivide and have gen:set-query gen:set-constructor gen:set-mconstruct. -Ian - Original Message - From: Jay McCarthy jay.mccar...@gmail.com To: Carl Eastlund c...@ccs.neu.edu Cc: Racket Developers dev@racket

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
are a sub-thing of immutable ones, we might lose that (depending on how things are set up). Robby On Wed, Oct 2, 2013 at 2:57 PM, Jay McCarthy jay.mccar...@gmail.com wrote: No. Mutable sets would implement gen:set and then just have a few more methods in the gen:mset interface. Structs can

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
they are for this kind of reason. Robby On Wed, Oct 2, 2013 at 3:21 PM, Jay McCarthy jay.mccar...@gmail.com wrote: Even if we were to remove set-add! from gen:set and not great gen:mset then that would not be a vaild property. Generics are a lower bound on the interface, not an upper bound, so

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
structures, with a generic interface [1]. Maybe this means we should make `immutable?` into a generic. [1] I think that part of the reason some of these are conflated is lack of generic operations. Sam Robby On Wed, Oct 2, 2013 at 3:21 PM, Jay McCarthy jay.mccar...@gmail.com wrote: Even

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
Totally agree. On Wed, Oct 2, 2013 at 2:53 PM, Sam Tobin-Hochstadt sa...@cs.indiana.edu wrote: On Wed, Oct 2, 2013 at 4:44 PM, Jay McCarthy jay.mccar...@gmail.com wrote: This is a good message, but I have one quibble. I think it makes sense to separate data immutability and logical

Re: [racket-dev] looks like pkg.racket-lang.org is hanging after making the connection again.

2013-09-30 Thread Jay McCarthy
certificate (20), continuing anyway. GET / HTTP/1.1 User-Agent: curl/7.25.0 (x86_64-apple-darwin11.3.0) libcurl/7.25.0 OpenSSL/1.0.1e zlib/1.2.8 libidn/1.22 Host: pkg.racket-lang.org Accept: */* ... and then it just waits at this point, until I give up. John -- Jay McCarthy j

[racket-dev] with-syntax and #:with are not compatible

2013-09-30 Thread Jay McCarthy
this inconsistency between #:with and with-syntax is an error and should be fixed, but I do not feel that I understand all the ways to flow to this code, so I implore Ryan to change it. Jay -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay

Re: [racket-dev] Pinging BYU people!! (was: DOS attack on planet?)

2013-09-22 Thread Jay McCarthy
into this? -- ((lambda (x) (x x)) (lambda (x) (x x))) Eli Barzilay: http://barzilay.org/ Maze is Life! _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor

Re: [racket-dev] Pinging BYU people!! (was: DOS attack on planet?)

2013-09-22 Thread Jay McCarthy
On Sun, Sep 22, 2013 at 5:31 PM, Eli Barzilay e...@barzilay.org wrote: 50 minutes ago, Jay McCarthy wrote: Next time, feel free to follow the directions on internal.racket-lang.org. I have no practical way to know whether it's actually one of your machines. (I did check that it's not an IP

Re: [racket-dev] Pinging BYU people!! (was: DOS attack on planet?)

2013-09-22 Thread Jay McCarthy
On Sun, Sep 22, 2013 at 6:53 PM, Eli Barzilay e...@barzilay.org wrote: A few minutes ago, Jay McCarthy wrote: In retrospect, I guess it's not so obvious that the package server contacts the old server regularly to build the compatibility version packages. Is this the package server

Re: [racket-dev] Installing subsets of Racket

2013-09-16 Thread Jay McCarthy
plans? Laurent _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket

Re: [racket-dev] tests not being run?

2013-09-06 Thread Jay McCarthy
the default action, which is raco test ~s. Is this correct? Thanks, Dave On 09/05/2013 08:40 AM, Jay McCarthy wrote: On Wed, Sep 4, 2013 at 1:55 PM, David Vanderson david.vander...@gmail.com wrote: I totally missed pkgs/racket-pkgs/racket-test/tests/run-automated-tests.rkt

Re: [racket-dev] tests not being run?

2013-09-05 Thread Jay McCarthy
://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] net/http-client

2013-09-04 Thread Jay McCarthy
On Fri, Aug 23, 2013 at 2:48 PM, Jay McCarthy jay.mccar...@gmail.com wrote: Based on a request back in early July to remove the restrictions that net/url puts on HTTP communication (vis a vis URL encoding), I have just pushed a new HTTP client as net/http-client. The push also changes

[racket-dev] John Carmack talks about functional programming

2013-08-28 Thread Jay McCarthy
He mentions Racket and the DrRacket OS paper (by name!) http://www.youtube.com/watch?v=1PhArSujR_A [about 9 minutes in is the Racket mention] Jay -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC

Re: [racket-dev] [racket] Functional Updates for Structs

2013-08-27 Thread Jay McCarthy
arbitrarily complex function but field-name is very limited. Probably I should just suck it up and accept a bit of ugliness. Racket Users list: http://lists.racket-lang.org/users -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http

Re: [racket-dev] generic binding forms

2013-08-26 Thread Jay McCarthy
://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] net/http-client

2013-08-26 Thread Jay McCarthy
On Mon, Aug 26, 2013 at 6:46 AM, Sam Tobin-Hochstadt sa...@cs.indiana.edu wrote: On Fri, Aug 23, 2013 at 2:48 PM, Jay McCarthy jay.mccar...@gmail.com wrote: I feel that the only thing it could do better is support two more options for #:data: - A input-port? to read from and copy

[racket-dev] net/http-client

2013-08-23 Thread Jay McCarthy
it could do better is support two more options for #:data: - A input-port? to read from and copy to the HTTP connection - A (- output-port? void) function to call with the HTTP connection's output port to stream the data But I'd like a second opinion before adding them. Jay -- Jay McCarthy j

Re: [racket-dev] Lists aren't sets, but have set-like operations

2013-08-22 Thread Jay McCarthy
://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] main-repo packages on pkg.racket-lang.org

2013-08-17 Thread Jay McCarthy
: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Updating dependency packages from other sources

2013-08-16 Thread Jay McCarthy
I think that's a better idea Matthew. On Fri, Aug 16, 2013 at 2:27 PM, Matthew Flatt mfl...@cs.utah.edu wrote: At Thu, 15 Aug 2013 11:07:07 -0400, Asumu Takikawa wrote: On 2013-08-15 08:19:06 -0600, Jay McCarthy wrote: As for what we could do going forward, I think either

Re: [racket-dev] Updating dependency packages from other sources

2013-08-15 Thread Jay McCarthy
solution. If n other packages depended on `x11` too, it seems like I'd have to re-install all n of them. Cheers, Asumu _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University

Re: [racket-dev] package name restrictions - why?

2013-07-31 Thread Jay McCarthy
Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] package scopes

2013-07-25 Thread Jay McCarthy
the default 'user under some circumstances and 'installation in others. I think it also covers the goal of 'shared better than 'shared does. _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young

Re: [racket-dev] Pre-Release Checklist for v5.3.6

2013-07-23 Thread Jay McCarthy
On Mon, Jul 22, 2013 at 1:13 PM, Ryan Culpepper ry...@ccs.neu.edu * Jay McCarthy jay.mccar...@gmail.com - Web Server Tests - XML Tests - HTML Tests - PLAI Tests - Racklog tests - Datalog tests All done -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young

Re: [racket-dev] package-system update

2013-07-14 Thread Jay McCarthy
See below Sent from my iPhone On Jul 14, 2013, at 8:03 AM, Sam Tobin-Hochstadt sa...@ccs.neu.edu wrote: First, thanks for the very informative update. On Sat, Jul 13, 2013 at 2:56 PM, Matthew Flatt mfl...@cs.utah.edu wrote: [Guess:] The Racket and Minimal Racket distributions might point

Re: [racket-dev] Why did DrDr get much slower?

2013-07-13 Thread Jay McCarthy
`filesystem-change-evt` was introduced, at least on my Linux x64 machine. Sam _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God

Re: [racket-dev] Package compatibility

2013-07-08 Thread Jay McCarthy
AM, Eli Barzilay e...@barzilay.org wrote: Yesterday, Jay McCarthy wrote: Planet attempts to solve this problem technically by (a) having all collections be prefixed by author/package-name and (b) mandating a centralized server that enforces unique authors and unique package-names per author

Re: [racket-dev] Package compatibility

2013-07-07 Thread Jay McCarthy
it on the main site. Jay Carl Eastlund _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93

Re: [racket-dev] What command should DrDr run by default?

2013-07-06 Thread Jay McCarthy
is for everything to run with `raco test`, I'll fix these tests. But what is the plan? Sam _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay

Re: [racket-dev] Package management

2013-06-30 Thread Jay McCarthy
: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] release 5.3.5

2013-06-15 Thread Jay McCarthy
://lists.racket-lang.org/dev _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93 _ Racket

Re: [racket-dev] experience using the `pkg` branch

2013-06-14 Thread Jay McCarthy
in a suggestively named directory, e.g., /var/tmp/pkg13711534991371153499937/future-visualizer/info.rkt (assuming that the package's name was future-visualizer) that might have been a useful clue. Robby On Thu, Jun 13, 2013 at 9:56 PM, Jay McCarthy jay.mccar...@gmail.com wrote: On Thu, Jun 13

Re: [racket-dev] experience using the `pkg` branch

2013-06-14 Thread Jay McCarthy
On Fri, Jun 14, 2013 at 6:19 AM, Sam Tobin-Hochstadt sa...@ccs.neu.edu wrote: On Thu, Jun 13, 2013 at 10:56 PM, Jay McCarthy jay.mccar...@gmail.com wrote: On Thu, Jun 13, 2013 at 3:56 PM, Sam Tobin-Hochstadt sa...@ccs.neu.edu wrote: * The error message when you look for a missing collection

Re: [racket-dev] experience using the `pkg` branch

2013-06-14 Thread Jay McCarthy
to install anything other than ring-0 packages. (For instance, not offering auto-install and not having them in the central documentation site.) The goal would be to make it so that 'raco setup' never errors. -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http

Re: [racket-dev] experience using the `pkg` branch

2013-06-14 Thread Jay McCarthy
to bundle up our core software. Carl Eastlund On Fri, Jun 14, 2013 at 10:13 AM, Jay McCarthy jay.mccar...@gmail.com wrote: I'll try to respond to these four messages at the same time... Sam said, In addition to the larger point Robby makes, this can be pretty confusing. For example, you

Re: [racket-dev] experience using the `pkg` branch

2013-06-13 Thread Jay McCarthy
and/or the collection being set up. Sam _ Racket Developers list: http://lists.racket-lang.org/dev -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay The glory of God is Intelligence - DC 93

  1   2   3   4   >