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

2015-01-14 Thread Jay McCarthy
g 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 wrote: > How does this fit with backward compatibility? > > Sam > > On Wed, Jan 14, 2015 at 2:26 PM, Jay McCarthy > wrote: > > Branch: refs/heads/master >

Re: [racket-dev] collects search order

2014-12-12 Thread Jay McCarthy
; Is there a better way to prioritize my local collects dir per invocation? > > -- > Dan Liebgold[dan.liebg...@gmail.com] > > _ > Racket Developers list: > http://lists.racket-lang.org/dev > -- Jay McCarthy http://jeapostrophe.github

Re: [racket-dev] DrDr & the split repository

2014-12-10 Thread Jay McCarthy
On Tue, Dec 9, 2014 at 12:12 AM, Asumu Takikawa 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-fi

Re: [racket-dev] Multiple 'raco make' processes

2014-12-09 Thread Jay McCarthy
ing/rebuilding are shared across the instances... what >> >>> happens? Does raco make have lock to ensure no contention? Or does each >> >>> process potentially redo some work? >> >>> >> >>> -- >> >>> Dan Liebgold[dan.liebg...@gmail.com] &g

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

2014-12-05 Thread Jay McCarthy
"pkgs.racket-lang.org". You'll need to use `raco pkg >>>> update` to get those updates! >>>> >>>> For now, use `git pull` to update core Racket and the handful of >>>> packages in "pkgs". Use `raco pkg update` to update anything else.

Re: [racket-dev] DrDr & the split repository

2014-12-05 Thread Jay McCarthy
? > > Robby > > > On Fri, Dec 5, 2014 at 6:14 AM, Jay McCarthy 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 mono

[racket-dev] DrDr & the split repository

2014-12-05 Thread Jay McCarthy
s how DrDr tests programs) to support all these options. They can be test on a per-directory or per-file basis. The documentation for this is here: http://docs.racket-lang.org/raco/test.html?q=raco%20test#%28part._test-config%29 Jay -- Jay McCarthy http://jeapostrophe.github.io &

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

2014-12-03 Thread Jay McCarthy
> substantial compromises to facilitate that low friction. > > For third-party developers like me, I can layer something to work around > some of the drawbacks, and, pragmatically, that's what I'll have to do. > > Neil V. > -- Jay McCarthy http://jeapostrophe.github.io

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 wrote: > > Jay McCarthy wrote on 11/30/2014 12:30 PM: >> >> On Sunday, November 30, 2014, Neil Van Dyke > <mailto:n...@neilvandyke.org>> wrote: >> >> >> Jay McCarthy wrote on 11/30/2014 12:13 PM:

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

2014-11-30 Thread Jay McCarthy
ata/fib-heap" or something where it may to be easier 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 wrote: > I do not think we should change the example. I do not want people to falsely &

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

2014-11-30 Thread Jay McCarthy
On Sunday, November 30, 2014, Neil Van Dyke 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 pa

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

2014-11-30 Thread Jay McCarthy
d if #1 is revisited. > > I think PLaneT got both of these a lot closer to right, at least for > third-party packages. > > Neil V. > > _ > Racket Developers list: > http://lists.racket-lang.org/dev > -- Jay McCarthy http://jeapostrophe.github.io

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

2014-11-30 Thread Jay McCarthy
tains the module > > > file "data/matrix.rkt", then tic-tac-toe and factory-optimize are in > > > conflict. > > > > > > A package may also be in conflict with Racket itself, if it contains a > > > module file that is part of the base Racket implemen

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

2014-11-30 Thread Jay McCarthy
t;data/matrix.rkt", then tic-tac-toe and factory-optimize are in conflict. >> >> A package may also be in conflict with Racket itself, if it contains a >> module file that is part of the base Racket implementation. For example, >> any package that contains "rack

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

2014-11-18 Thread Jay McCarthy
tion, gc); > + gcMARK2(c->meta_continuation_src, gc); >gcMARK2(c->common_dw, gc); >gcMARK2(c->save_overflow, gc); >gcMARK2(c->runstack_copied, gc); > > racket/src/racket/src/schpriv.h > ~~~ > --- OLD/racket/src/racket/src/schpriv

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

2014-11-14 Thread Jay McCarthy
ot;distribution root" is short for > > (collection-path "web-server" "default-web-root") > > would it make sense to add this to the docs? Did I miss something? > > John > -- Jay McCarthy http://jeapostrophe.github.io "Wherefore, be not

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

2014-10-27 Thread Jay McCarthy
#x27;base > 'm1) > > (my-eval 'a) > > > Is there any example of doing something like this using the module system > without polluting the top level namespace? Am I correct in assuming that > this will not work under separate module compilation? > > -- > Dan Lieb

Re: [racket-dev] Update libffi to 3.1

2014-10-27 Thread Jay McCarthy
tps://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

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

2014-10-22 Thread Jay McCarthy
the ..syntax/loc form if I name the wrong file at my usage point 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 McC

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

2014-10-22 Thread Jay McCarthy
ace-context's > increased thoroughness is necessary. > > So, is the problem that the identifiers imported by the require usage get > the lexical context of the 'define-require-syntax' declaration (where I use > #' maybe)? I'm don't follow what exac

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

2014-10-22 Thread Jay McCarthy
erating the right marks on the (file ...) form. > > -- > Dan Liebgold[dan.liebg...@gmail.com] > > _ > Racket Developers list: > http://lists.racket-lang.org/dev > -- Jay McCarthy http://jeapostrophe.github.io "Wherefore, be not we

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

2014-10-16 Thread Jay McCarthy
On Thu, Oct 16, 2014 at 9:13 AM, Ryan Culpepper wrote: > * Jay McCarthy > - Web Server Tests > - XML Tests > - HTML Tests > - PLAI Tests > - Racklog tests > - Datalog tests All passed -- Jay McCarthy http://jeapostrophe.github.io "Wherefore,

Re: [racket-dev] pkgs.racket-lang.org

2014-09-26 Thread Jay McCarthy
[Firefox on Fedora 20, x86_64] > > Best regards, > Jan Dvorak > > > > _________ > 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

Re: [racket-dev] Package build information

2014-09-10 Thread Jay McCarthy
per hour, > IIRC. > > (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 w

[racket-dev] Package build information

2014-09-09 Thread Jay McCarthy
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

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

2014-09-04 Thread Jay McCarthy
>> 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

[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 l

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

2014-09-04 Thread Jay McCarthy
ash. Jay On Wed, Sep 3, 2014 at 6:22 PM, Sam Tobin-Hochstadt wrote: > On Wed, Sep 3, 2014 at 10:53 AM, Jay McCarthy 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, b

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

2014-09-04 Thread Jay McCarthy
arting 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 Mc

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

2014-09-03 Thread Jay McCarthy
ttp://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 McC

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

2014-08-18 Thread Jay McCarthy
>> A package "X" that provides a collection "X" of the same name should >> probably also call its documentation "X". > > What should we suggest when two packages both have collections named > "X"? This is the case for the "c" and "c

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

2014-07-23 Thread Jay McCarthy
me >> a code. Is something in the pipeline not working? >> -Ian >> _ >> Racket Developers list: >> http://lists.racket-lang.org/dev > _ > Racket Developers list: > http://lists.racket-lang.org/dev -- Jay M

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

2014-07-17 Thread Jay McCarthy
t; - Teachpack Docs: check teachpack docs in the bundles > - Try teaching-languages testing framework (check-expect) > Updates: > - Teachpack Updates: update HISTORY > (updates should show v6.1 as the most current version; email me > to pick the changes when they'

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

2014-07-05 Thread Jay McCarthy
meone reading the code to look up the > identifier in Racket doc search, compared looking up a unique API identifier > like "make-foo" or "foo-make". > > Neil V. > > _ > Racket Developers list: > http://lists.racket-lang.org/dev -- J

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 wrote: >

[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 Assistant Professor / Brigham Young University http://jeapostrophe.github.io "Wherefore,

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

2014-06-01 Thread Jay McCarthy
ary to conflict with racket/contract. > > Robby > > > On Sun, Jun 1, 2014 at 6:57 PM, Matthias Felleisen > wrote: >> >> I suggested exactly that name in a private message to Robby. >> >> >> >> On Jun 1, 2014, at 7:49 PM, Jay McCarthy wrote: >&

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

2014-06-01 Thread Jay McCarthy
;(syntax-case stx () > [(_ ctc e) > (quasisyntax/loc stx > > racket/collects/racket/contract/region.rkt > ~~ > --- OLD/racket/collects/racket/contract/region.rkt > +++ NEW/racket/collects/racket/contract/region.rkt

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 > 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 operating system

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

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

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

2014-04-29 Thread Jay McCarthy
at is implemented it seems like that feature can only be implemented with a restricted form of the attack itself, so you can observe that the instantiation already happened. Jay -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay &qu

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 wrote: >

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

2014-04-28 Thread Jay McCarthy
ases, the language dialog needs 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 Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glory of God is Intelligence" - D&C 93 _ Racket Developers list: http://lists.racket-lang.org/dev

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 wrote: > * Jay McCarthy > - Web Server Tests > - XML Tests > - HTML Tests > - PLAI Tests > - Racklog tests > - Datalog tests All passed -- Jay McCarthy Assistant Professor / Brigham Young University http://fa

Re: [racket-dev] DrDr hung?

2014-04-05 Thread Jay McCarthy
for 36 > hours. > _ > Racket Developers list: > http://lists.racket-lang.org/dev -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glory of God is Intelligence" - D&C 93 __

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

2014-01-27 Thread Jay McCarthy
; 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:

Re: [racket-dev] Pre-Release Checklist for v6.0, Second Call

2013-12-31 Thread Jay McCarthy
et" build instead, install test packages > manually using "raco pkg install". > > ------ > > * Matthew Flatt > - Run COM tests > > * Robby Findler > - DrRacket Tests > > * Jay McCarthy > - W

Re: [racket-dev] DrRacket + ZeroMQ

2013-12-31 Thread Jay McCarthy
t DrRacket > crashes 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 > >

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

2013-12-20 Thread Jay McCarthy
/ > > ~~ > > abc8b30 Jay McCarthy 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 2013-12-20 15:47 > : > | Remove secret info

Re: [racket-dev] release notes

2013-12-20 Thread Jay McCarthy
Ah. I think you should do it :) On Fri, Dec 20, 2013 at 2:36 PM, Robby Findler wrote: > I mean that I think these comments should go into a HISTORY.txt file > somewhere. Shall I put them in one, or do you mind doing it? > > Robby > > > On Fri, Dec 20, 2013 at 3:31 PM,

Re: [racket-dev] release notes

2013-12-20 Thread Jay McCarthy
In that case... > > On Fri, Dec 20, 2013 at 3:14 PM, Jay McCarthy > wrote: >> >> On Thu, Dec 19, 2013 at 7:41 PM, Robby Findler >> wrote: >> > Jay, Jan Dvořák: formlet improvements >> >> * web-server/formlets supports generic input formlets and st

Re: [racket-dev] release notes

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

Re: [racket-dev] release notes

2013-12-20 Thread Jay McCarthy
he documentation exclusively should link to. pkg. still works fine because it redirects to S3, but if BYU were down then the redirect wouldn't happen. Jay -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glory of God is Intelligence" - D&C 93 _ Racket Developers list: http://lists.racket-lang.org/dev

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

2013-12-17 Thread Jay McCarthy
I'm pretty sure it is not getting my main installation. Jay On Mon, Dec 16, 2013 at 1:38 PM, Robby Findler 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 McCarth

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 wrote: > * Jay McCarthy > - 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 don't know wh

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

2013-11-28 Thread Jay McCarthy
Felleisen > wrote: >> >> >> Am I naive or isn't any download of any package opening the door to such >> tricks? >> >> >> On Nov 27, 2013, at 8:46 PM, Jay McCarthy wrote: >> >> > On Wed, Nov 27, 2013 at 6:27 PM, Robby Findler >&g

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

2013-11-27 Thread Jay McCarthy
.1741e1b0d1 > > =[ 2 Commits ]== > Directory summary: > 44.7% pkgs/planet-pkgs/planet-doc/planet/ > 55.2% racket/collects/planet/private/ > > ~~~~~~ > > 680b6f4 Jay McCarthy 2013-11-27 19:09 > : > | Rev

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 wrote: > > > > On Wed, Nov 27, 2013 at 7:21 PM, Jay McCarthy wrote: >> >> If I have background expansion on, then when I open that file it >> installs the package. >> > > As I wrote in my previous messa

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

2013-11-27 Thread Jay McCarthy
y been > explicitly installed"? If that's what you mean, then I think I'm also > missing how this happens. > > Robby > > > On Wed, Nov 27, 2013 at 4:42 PM, Jay McCarthy wrote: >> >> There is an important change in this commit. Since we've create

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

2013-11-27 Thread Jay McCarthy
rectory summary: > 57.6% 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 2013-11-27 14:51 > : > | moving delete button > : > M

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

2013-11-26 Thread Jay McCarthy
> > Robby > > > > On Tue, Nov 26, 2013 at 10:49 AM, Jay McCarthy 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 im

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

2013-11-26 Thread Jay McCarthy
org wrote: >> jay has updated `master' from e0026f5de4 to 79f8636e1e. >> http://git.racket-lang.org/plt/e0026f5de4..79f8636e1e >> >> =[ One Commit ]===== >> Directory summary: >> 52.6% pkgs/racket-pkgs/racket-test/tests/racket/ >> 45.6% pkgs/sandbox-l

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

2013-11-26 Thread Jay McCarthy
DrRacket > (not listed as a dependency), but it doesn't make much sense to make the > XREPL package depend on DrRacket. > > Is there a best practice for these kinds of cases yet? > > Cheers, > Asumu > _____ > Racket Developers list: &g

Re: [racket-dev] new package system status

2013-11-21 Thread Jay McCarthy
undreds not > thousands of packages. 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

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

2013-11-08 Thread Jay McCarthy
le-struct`. >> That problem is easier to address: `deserialize` can try a >> `deserialze-info` submodule first, and if the export isn't found, then >> it can try the original module. >> >> Ok? >> >> _ >> R

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

2013-11-04 Thread Jay McCarthy
' is > legacy. I'll think of a stronger 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 > ______

Re: [racket-dev] how to test rackunit

2013-11-02 Thread Jay McCarthy
nning body] >f88 >loop >loop >loop >f88 > > /home/dtp/src/dtp-racket/pkgs/compiler-pkgs/compiler-lib/compiler/commands/test.rkt: > [running body] >/home/dtp/src/dtp-racket/racket/collects/raco/raco.rkt: [running body] >/home/dtp/src/dtp-racket/racket/collects/raco/main.rkt: [running body] > > > 0 success(es) 3 failure(s) 2 error(s) 5 test(s) run > 5 > raco test: > "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/standalone-check-test.rkt" > Oh HAI! > I didn't run > raco test: > "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/standalone-test-case-test.rkt" > raco test: "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/standalone.rkt" > raco test: > "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/test-case-test.rkt" > raco test: > "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/test-suite-test.rkt" > raco test: "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/test-test.rkt" > raco test: "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/text-ui-test.rkt" > raco test: > "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/text-ui-util-test.rkt" > 55/340 test failures > raco test: "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/tl.rkt" > raco test: "pkgs/rackunit-pkgs/rackunit-test/tests/rackunit/util-test.rkt" > _ > Racket Developers list: > http://lists.racket-lang.org/dev -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glory of God is Intelligence" - D&C 93 _ Racket Developers list: http://lists.racket-lang.org/dev

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

2013-10-23 Thread Jay McCarthy
essible? > This > is not a big deal, I just wanted to be sure I wasn't doing something > incorrectly. > > Thanks. > > David > > _ > Racket Developers list: > http://lists.racket-lang.org/dev -- Jay McCarthy Assist

[racket-dev] PLT Package Catalog changes

2013-10-11 Thread Jay McCarthy
ts, but it's possible that there will be weirdness until the DNS entries are out there. I've tested the JS code with most major browsers on Linux and I believe I use all standard things (jquery, etc) that are cross-browser, but please inform me of any problems you find. Jay -- Jay McCart

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

2013-10-03 Thread Jay McCarthy
"IIUC"s above.) I do not think so, the old format is supposed to work (see lines 192 to 195 of pkg/lib) and described as a valid, but deprecated use in the current documentation. > 2. If so, is it really the intent to break backward compatibility? The concept of backwards compatibil

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

2013-10-03 Thread Jay McCarthy
ould put. In the second case, you put them 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 Assista

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 wrote: > On Wed, Oct 2, 2013 at 4:44 PM, Jay McCarthy wrote: >> This is a good message, but I have one quibble. >> >> I think it makes sense to separate data immutability and logical >> immutability.

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
ith subtyping, as > in this discussion? > > Personally, I think I prefer separate unrelated data 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 &g

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
are for this kind of reason. > > Robby > > > On Wed, Oct 2, 2013 at 3:21 PM, Jay McCarthy 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 inte

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
ets 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 wrote: >> >> No. Mutable sets would implement gen:set and then just have a few more >> methods

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
s 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" > To: "Carl Eastlund" > Cc: "Racket Devel

Re: [racket-dev] Generics updates

2013-10-02 Thread Jay McCarthy
ith immutable, mutable, and weak variants that inter-operate. > > If there are no serious issues brought up in the next day or two, I'll push > it to the development branch, since our current release process isn't > following HEAD. > > Carl Eastlund > > __

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

2013-10-02 Thread Jay McCarthy
etes the things it downloaded. Apt does not do 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

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

2013-09-30 Thread Jay McCarthy
from the implementation of syntax parse. I believe 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 Assistant Professor / Brigham Young Univ

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

2013-09-30 Thread Jay McCarthy
.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 Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glory of God is Intelligence" - D&C 93 _ Racket Developers list: http://lists.racket-lang.org/dev

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 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. > >

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 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 chec

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

2013-09-22 Thread Jay McCarthy
ot; (which are answered >> with a 403 to that IP). >> >> Can someone at BYU look into this? > > -- > ((lambda (x) (x x)) (lambda (x) (x x))) Eli Barzilay: > http://barzilay.org/ Maze is Life! > _

Re: [racket-dev] Installing subsets of Racket

2013-09-16 Thread Jay McCarthy
know > how this could actually be ensured without a good amount of magic. > > Merely preventing downloads does not sound like a good option though. > > I bet you've already discussed this far and wide, so are there any plans? > > Laurent > >

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

2013-09-06 Thread Jay McCarthy
kgs/racket-pkgs/racket-test/tests/file/sha1.rkt" > > This tells DrDr to do 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

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

2013-09-05 Thread Jay McCarthy
gt; Am I missing something? If not, should I fix the files to be run with >> 'raco test _'? >> >> Thanks, >> Dave >> _ >> Racket Developers list: >> http://lists.racket-lang.org/dev >> > > > > _ > Racket Developers list: > http://lists.racket-lang.org/dev > > -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glory of God is Intelligence" - D&C 93 _ Racket Developers list: http://lists.racket-lang.org/dev

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

2013-09-04 Thread Jay McCarthy
onal arg in the > various uses of `make-pipe`? Otherwise IIUC this will suck everything > into RAM, which might not be so great with very large request or > response entities. > Matthew changed this a few days ago. Jay > > > On Fri, Aug 23, 2013 at 2:48 PM, Jay Mc

[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 Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glory of God is Intelligence"

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

2013-08-27 Thread Jay McCarthy
pe or field names, just accessors and updaters. So I have no trouble >> extracting the needed data, but I there aren't any nice functional updaters >> generated. I could write something like >> >> (create-trans output-type >>(wire source through pipe

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

2013-08-26 Thread Jay McCarthy
On Mon, Aug 26, 2013 at 6:46 AM, Sam Tobin-Hochstadt wrote: > > On Fri, Aug 23, 2013 at 2:48 PM, Jay McCarthy > 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 to the

Re: [racket-dev] generic binding forms

2013-08-26 Thread Jay McCarthy
9 > I can't define a ~lambda that works with values because > functions in racket can't receive values. Anyone have any ideas? > > Side observation: Trying to get things to work with multiple return > values was a pain because they don't compose (as in, functions can >

[racket-dev] net/http-client

2013-08-23 Thread Jay McCarthy
the only thing 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 addi

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

2013-08-22 Thread Jay McCarthy
t;J. Ian Johnson" < i...@ccs.neu.edu > >> >> > Cc: "dev" < dev@racket-lang.org > >> >> > Sent: Wednesday, August 21, 2013 6:58:56 PM GMT -05:00 US/Canada >> >> > Eastern >> >> > Subject: Re: [racket-dev] Lists aren't sets, but ha

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

2013-08-17 Thread Jay McCarthy
> including one triggered by notifications from Github. In any case, >> copying from the git repo to ".zip" files is expected to be a stop-gap >> until we're ready to split the main repository (which is some time >> away, I think). >> >> __

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

2013-08-17 Thread Jay McCarthy
> when half of a local directory in "/tmp" has been erased. Yes, exactly. The idea is that if a directory is expected to hang around then you --link it but if it isn't then you --copy it. I imagined that local FS would only be used for development or after some sort of external s

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 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 of thes

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

2013-08-15 Thread Jay McCarthy
'd be > a conflicting package. > > What are the right steps to install over dependency packages? I don't > think manually uninstalling and re-installing is a good solution. If n > other packages depended on `x11` too, it seems like I'd have to > re-install all n of t

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

2013-07-31 Thread Jay McCarthy
> Cheers, > Tony > > _ > Racket Developers list: > http://lists.racket-lang.org/dev -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glory of God is Intelligence" - D&C 93 _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] package scopes

2013-07-25 Thread Jay McCarthy
t v6.0 and v6.1 can give the installations the > same name. > > I think this change would make the 'user installation scope the right > default for pretty much everyone, instead of trying to make the default > 'user under some circumstances and 'installation in others.

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 > * Jay McCarthy > - Web Server Tests > - XML Tests > - HTML Tests > - PLAI Tests > - Racklog tests > - Datalog tests All done -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu

  1   2   3   4   5   6   >