Re: [racket-users] Suppress print lines from required modules

2017-08-27 Thread Matthew Butterick

> On Aug 27, 2017, at 7:30 PM, Shu-Hung You 
>  wrote:
> 
> Something along the line of (open-output-file
> "/dev/null") sounds a bit better but I'm not sure how to create a
> discard-everything output port.


`open-output-nowhere`?

https://docs.racket-lang.org/reference/port-lib.html?q=open-output-nowhere#%28def._%28%28lib._racket%2Fport..rkt%29._open-output-nowhere%29%29
 


-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] Re: Racket dotenv file loading

2017-08-27 Thread Jack Firth
On Sunday, August 27, 2017 at 7:57:52 PM UTC-7, Royall Spence wrote:
> And it's ready to consume:
> https://pkgd.racket-lang.org/pkgn/package/dotenv
> 
> This is the first Lisp-family code I've published, so that's exciting.
> Any feedback the list has to offer regarding style, approach, or
> packaging would be welcome.

Looks great! I'll keep this in mind next time I'm working with env configs. 
Here are
some comments:

- Using `for` expressions would make recursion unnecessary, and it cooperates 
well with in-lines.
- Racket style generally prefers lists, first, and rest to raw pairs and the 
c*r functions.
- You can put your test submodules anywhere, they don't have to be in main.rkt. 
So in dotenv/private/tests.rkt you don't need to define and export a suite, you 
can just use (module+ test ...). Running raco test -p  will 
run all test submodules found anywhere in the package.
- It looks like the generated scribble files got included in your repo. I 
typically add html, js, and css files to my .gitignore to avoid that.
- If you move your (require rackunit) expressions into your test submodules, 
rackunit will be a build dependency instead of a runtime dependency.
- Using @defproc[] in your scribble docs will make the exports of dotenv 
searchable.
- Contracts and contract-out make it easy to add argument checking to 
functions, I recommend using them.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] Re: Racket dotenv file loading

2017-08-27 Thread 'Royall Spence' via Racket Users
And it's ready to consume:
https://pkgd.racket-lang.org/pkgn/package/dotenv

This is the first Lisp-family code I've published, so that's exciting.
Any feedback the list has to offer regarding style, approach, or
packaging would be welcome.

On Sun, Aug 27, 2017, at 10:09 PM, 'Royall Spence' via Racket Users
wrote:
> Thanks, Jack. It sounds like a great Rackety solution and easy way to
> get into trying my own languages. I've already started work, though, and
> the 40 lines of code I've written looks like it'll do the job once I
> shake out the bugs.
> 
> On Sun, Aug 27, 2017, at 05:49 PM, Jack Firth wrote:
> > On Sunday, August 27, 2017 at 11:01:17 AM UTC-7, Royall Spence wrote:
> > > I'm starting work on a Racket library for loading .env files to override 
> > > environment variables. This is a common way of doing things for people 
> > > who want to run multiple web applications on a single server without 
> > > their environment variables competing for namespace. The classic example 
> > > is this Ruby library: https://github.com/bkeepers/dotenv
> > > 
> > > Just checking to make sure I haven't overlooked an already existing 
> > > library that provides this behavior. Should I keep going?
> > 
> > There is the Envy library for parsing environment variables, but there
> > doesn't seem to be anything for loading .env files. Personally, I think
> > this would be a great place to make a #lang that worked something like
> > this:
> > 
> > #lang dotenv
> > my-library-num-workers = 5
> > my-library-tmpdir = "/tmp/my_library"
> > 
> > ... and then if you `require` it, it sets the current environment. Or
> > maybe it gives you a function to execute a thunk with the new
> > environment. The advantage to using a #lang here instead of a file is
> > your dotenv file is you no longer need to do any parsing or file IO at
> > runtime and your env file is just a normal code module imported like any
> > other. Plus you could write a syntax highlighter to make it easy to edit
> > the env files in DrRacket.
> > 
> > -- 
> > You received this message because you are subscribed to the Google Groups
> > "Racket Users" group.
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to racket-users+unsubscr...@googlegroups.com.
> > For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> You received this message because you are subscribed to the Google Groups
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to racket-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] Suppress print lines from required modules

2017-08-27 Thread Shu-Hung You
Parameterizing current-output-port to (open-output-string) redirects
the output to a string. Something along the line of (open-output-file
"/dev/null") sounds a bit better but I'm not sure how to create a
discard-everything output port.

(define ns (make-base-namespace))

(parameterize ([current-namespace ns])
  (eval '(module a racket
   (displayln "a line from module a")
   (provide x)
   (define x 5

(printf "value of x is ~a\n"
(parameterize ([current-namespace ns]
   [current-output-port (open-output-string)])
  (dynamic-require ''a 'x)))

Shu-Hung

On Mon, Aug 28, 2017 at 10:22 AM, Sam Waxman  wrote:
> Let's say I have a module that looks like
>
> (module a racket
>(provide result)
>(print "Annoying print line!")
>(define result 2))
>
> and I'd like the value of result in another module, so in another module, I 
> write
>
> (require a)
>
> or
>
> (dynamic-require ''a 'result)
>
> In both cases, I get the value of result, but by requiring the module, the 
> print line "Annoying print line!" will show up on my screen and be part of 
> the output of the program.
>
> Is there a way to get the value of result from module a without triggering 
> the print, or hiding it in some way? I've played around with print-handlers, 
> but it seems anything I do outside of module a won't affect the printer 
> inside module a.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Suppress print lines from required modules

2017-08-27 Thread Sam Waxman
Let's say I have a module that looks like

(module a racket
   (provide result)
   (print "Annoying print line!")
   (define result 2))

and I'd like the value of result in another module, so in another module, I 
write

(require a)

or

(dynamic-require ''a 'result)

In both cases, I get the value of result, but by requiring the module, the 
print line "Annoying print line!" will show up on my screen and be part of the 
output of the program.

Is there a way to get the value of result from module a without triggering the 
print, or hiding it in some way? I've played around with print-handlers, but it 
seems anything I do outside of module a won't affect the printer inside module 
a.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] Re: Racket dotenv file loading

2017-08-27 Thread 'Royall Spence' via Racket Users
Thanks, Jack. It sounds like a great Rackety solution and easy way to
get into trying my own languages. I've already started work, though, and
the 40 lines of code I've written looks like it'll do the job once I
shake out the bugs.

On Sun, Aug 27, 2017, at 05:49 PM, Jack Firth wrote:
> On Sunday, August 27, 2017 at 11:01:17 AM UTC-7, Royall Spence wrote:
> > I'm starting work on a Racket library for loading .env files to override 
> > environment variables. This is a common way of doing things for people who 
> > want to run multiple web applications on a single server without their 
> > environment variables competing for namespace. The classic example is this 
> > Ruby library: https://github.com/bkeepers/dotenv
> > 
> > Just checking to make sure I haven't overlooked an already existing library 
> > that provides this behavior. Should I keep going?
> 
> There is the Envy library for parsing environment variables, but there
> doesn't seem to be anything for loading .env files. Personally, I think
> this would be a great place to make a #lang that worked something like
> this:
> 
> #lang dotenv
> my-library-num-workers = 5
> my-library-tmpdir = "/tmp/my_library"
> 
> ... and then if you `require` it, it sets the current environment. Or
> maybe it gives you a function to execute a thunk with the new
> environment. The advantage to using a #lang here instead of a file is
> your dotenv file is you no longer need to do any parsing or file IO at
> runtime and your env file is just a normal code module imported like any
> other. Plus you could write a syntax highlighter to make it easy to edit
> the env files in DrRacket.
> 
> -- 
> You received this message because you are subscribed to the Google Groups
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to racket-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: FW: [racket-users] Can't seem to find the blue box(es) in DrRacket anymore

2017-08-27 Thread Robby Findler
I've pushed a fix. Sorry for the delay in looking into this.

 https://github.com/racket/drracket/issues/118

Robby


On Sun, Aug 27, 2017 at 12:06 PM, Jos Koot  wrote:
>  Sorry, ignore my post.
> Jos Koot
>
> -Original Message-
> From: Jos Koot [mailto:jos.k...@gmail.com]
> Sent: domingo, 27 de agosto de 2017 19:00
> To: 'hashim muqtadir'; 'Racket Users'
> Subject: RE: [racket-users] Can't seem to find the blue box(es) in DrRacket 
> anymore
>
> I think you can toggle a switch in tab 'background expansion' of the 
> preferences menu.
> Jos
>
> -Original Message-
> From: racket-users@googlegroups.com [mailto:racket-users@googlegroups.com] On 
> Behalf Of hashim muqtadir
> Sent: domingo, 27 de agosto de 2017 8:12
> To: Racket Users
> Subject: [racket-users] Can't seem to find the blue box(es) in DrRacket 
> anymore
>
> Hello,
> I recently updated to Racket 6.10 and I cannot seem to find the blue boxes in 
> the top right of the definitions and interactions
> windows anymore. They don't show up by pressing the hotkey (f2) either. 
> There's no error or anything, just nothing happens. External
> help works, i.e. pressing f1 opens up the docs search in my browser.
>
> snip
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Re: Racket dotenv file loading

2017-08-27 Thread Jack Firth
On Sunday, August 27, 2017 at 11:01:17 AM UTC-7, Royall Spence wrote:
> I'm starting work on a Racket library for loading .env files to override 
> environment variables. This is a common way of doing things for people who 
> want to run multiple web applications on a single server without their 
> environment variables competing for namespace. The classic example is this 
> Ruby library: https://github.com/bkeepers/dotenv
> 
> Just checking to make sure I haven't overlooked an already existing library 
> that provides this behavior. Should I keep going?

There is the Envy library for parsing environment variables, but there doesn't 
seem to be anything for loading .env files. Personally, I think this would be a 
great place to make a #lang that worked something like this:

#lang dotenv
my-library-num-workers = 5
my-library-tmpdir = "/tmp/my_library"

... and then if you `require` it, it sets the current environment. Or maybe it 
gives you a function to execute a thunk with the new environment. The advantage 
to using a #lang here instead of a file is your dotenv file is you no longer 
need to do any parsing or file IO at runtime and your env file is just a normal 
code module imported like any other. Plus you could write a syntax highlighter 
to make it easy to edit the env files in DrRacket.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] European Racketeers and conferences

2017-08-27 Thread Matthias Felleisen

HI — we compared constraints with Matthew B. (London) to coordinate but we 
haven’t heard back from him whether we’ll meet in Oxford or London. Sadly the 
other 3 (Sam of Typed Racket fame is attending too) are now at a 
secret-cabal-ifip meeting seem to be off-line too. If anything gets organized 
still, we’ll get i touch with the Oxford/London people. — Matthias




> On Aug 27, 2017, at 7:16 AM, Chris Gallagher  wrote:
> 
> Hi Matthias.  I am based near Oxford and would be interested in joining an 
> informal get together while people are at ICFP. 
> 
> Kind Regards
> Chris
> 
> On Tuesday, 22 August 2017 15:51:03 UTC+1, Matthias Felleisen  wrote:
>> Matthew F, Robby, and I will be in Oxford for ICFP starting late next week. 
>> None of us thought of this before but I am sure we could at least arrange 
>> for some dinner or afternoon get-together. — Matthias
>> 
>> 
>> 
>> 
>> 
>>> On Aug 22, 2017, at 10:44 AM, Tim Jervis  wrote:
>>> 
>>> Hi Matthew,
>>> 
>>> I’m based in London and would be interested in a get-together.
>>> 
>>> Kind regards,
>>> 
>>> 
>>> 
>>> Tim
>>> 
 On 22 Aug 2017, at 15:20, Daniel Brunner  wrote:
 
 Hey Matthew,
 
 I live in Germany and use Racket for teaching students, teaching our
 apprentices (dual education system in Germany) and use it "in
 production" for some tasks.
 
 Best wishes,
 Daniel
 
 Am 22.08.2017 um 15:15 schrieb Matthew Eric Bassett:
> Hi all,
> 
> Gutted I can't make it to RacketCon this year.  Really glad to see it
> growing.
> 
> Question for y'all - how many Racketeers are active on this side of the
> Atlantic?  Enough for a specific get-together over here?  Or are there
> already appropriate venues for that that I'm unaware of (I am already
> familiar with the European lisp symposium)
> 
> Best,
> 
> 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 "Racket Users" group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to racket-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.
>>> 
>>> 
>>> Tim Jervis
>>> 
>>> http://timjervis.com/
>>> 
>>> 
>>> -- 
>>> You received this message because you are subscribed to the Google Groups 
>>> "Racket Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to racket-users+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Spacemacs Light & Dark Color Schemes for DrRacket

2017-08-27 Thread Christopher Walborn
A few years back I added a DrRacket color scheme template to the Base16 project 
and hosted a collection of these schemes which a few people have found useful. 
Base16 has since changed and I haven't kept up with it. That old collection 
should still work, but has always required some fine-detail massaging of 
individual colors to really work well together in DrRacket. I probably won't 
touch that repo again.

However, I've now ported the Spacemacs light and dark themes for Emacs to 
DrRacket color schemes. They are done manually and match the Emacs themes 
pretty closely, and I'm far more likely to update these since I tend to switch 
between them regularly.

Here's the repo, including a couple screenshots:

https://github.com/tuirgin/drracket-spacemacs-schemes

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Accessing background colors when defining new color schemes

2017-08-27 Thread Christopher Walborn
>From https://docs.racket-lang.org/drracket/color-scheme.html I see that when 
>creating a new color scheme we can specify foreground color and bold, italic, 
>underline like this within the colors hash:

#hash((name . "some name")
  (colors . ((framework:paren-match-color   ,#(68 65 85 0.5))
 (plt:module-language:test-coverage-off ,#(41 43 46) bold)
 ...)))

But I haven't figured out how to access the background color property that is 
available for plt:module-language:test-coverage-of and 
plt:htdp:test-coverage-off. Any hints?

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Racket dotenv file loading

2017-08-27 Thread 'Royall Spence' via Racket Users
I'm starting work on a Racket library for loading .env files to override 
environment variables. This is a common way of doing things for people who want 
to run multiple web applications on a single server without their environment 
variables competing for namespace. The classic example is this Ruby library: 
https://github.com/bkeepers/dotenv

Just checking to make sure I haven't overlooked an already existing library 
that provides this behavior. Should I keep going?

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


FW: [racket-users] Can't seem to find the blue box(es) in DrRacket anymore

2017-08-27 Thread Jos Koot
 Sorry, ignore my post.
Jos Koot

-Original Message-
From: Jos Koot [mailto:jos.k...@gmail.com] 
Sent: domingo, 27 de agosto de 2017 19:00
To: 'hashim muqtadir'; 'Racket Users'
Subject: RE: [racket-users] Can't seem to find the blue box(es) in DrRacket 
anymore

I think you can toggle a switch in tab 'background expansion' of the 
preferences menu.
Jos

-Original Message-
From: racket-users@googlegroups.com [mailto:racket-users@googlegroups.com] On 
Behalf Of hashim muqtadir
Sent: domingo, 27 de agosto de 2017 8:12
To: Racket Users
Subject: [racket-users] Can't seem to find the blue box(es) in DrRacket anymore

Hello,
I recently updated to Racket 6.10 and I cannot seem to find the blue boxes in 
the top right of the definitions and interactions
windows anymore. They don't show up by pressing the hotkey (f2) either. There's 
no error or anything, just nothing happens. External
help works, i.e. pressing f1 opens up the docs search in my browser.

snip

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: [racket-users] Can't seem to find the blue box(es) in DrRacket anymore

2017-08-27 Thread Jos Koot
I think you can toggle a switch in tab 'background expansion' of the 
preferences menu.
Jos

-Original Message-
From: racket-users@googlegroups.com [mailto:racket-users@googlegroups.com] On 
Behalf Of hashim muqtadir
Sent: domingo, 27 de agosto de 2017 8:12
To: Racket Users
Subject: [racket-users] Can't seem to find the blue box(es) in DrRacket anymore

Hello,
I recently updated to Racket 6.10 and I cannot seem to find the blue boxes in 
the top right of the definitions and interactions
windows anymore. They don't show up by pressing the hotkey (f2) either. There's 
no error or anything, just nothing happens. External
help works, i.e. pressing f1 opens up the docs search in my browser.

Other things I did around the same time the blue boxes disappeared were 
tinkering with the preferences a bit and 'raco pkg migrate
6.9'. But I didn't find any relevant preference that turns them off (there was 
something about blue boxes and background expansion
but turning that on/off doesn't help) and it did not seem to me that the 
migrate command would have messed anything up.

Anyone has any idea what might have happened? I'd like those back. Maybe I'm 
just missing some preference or something. I'm using a
64-bit Windows 10, in case that is relevant.

Regards,
Hashim.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Racket PPA updated for v6.10

2017-08-27 Thread Luis Sanjuán
Great! I'm sure Ubuntu users will be grateful.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] European Racketeers and conferences

2017-08-27 Thread Chris Gallagher
Hi Matthias.  I am based near Oxford and would be interested in joining an 
informal get together while people are at ICFP. 

Kind Regards
Chris

On Tuesday, 22 August 2017 15:51:03 UTC+1, Matthias Felleisen  wrote:
> Matthew F, Robby, and I will be in Oxford for ICFP starting late next week. 
> None of us thought of this before but I am sure we could at least arrange for 
> some dinner or afternoon get-together. — Matthias
> 
> 
> 
> 
> 
> > On Aug 22, 2017, at 10:44 AM, Tim Jervis  wrote:
> > 
> > Hi Matthew,
> > 
> > I’m based in London and would be interested in a get-together.
> > 
> > Kind regards,
> > 
> > 
> > 
> > Tim
> > 
> >> On 22 Aug 2017, at 15:20, Daniel Brunner  wrote:
> >> 
> >> Hey Matthew,
> >> 
> >> I live in Germany and use Racket for teaching students, teaching our
> >> apprentices (dual education system in Germany) and use it "in
> >> production" for some tasks.
> >> 
> >> Best wishes,
> >> Daniel
> >> 
> >> Am 22.08.2017 um 15:15 schrieb Matthew Eric Bassett:
> >>> Hi all,
> >>> 
> >>> Gutted I can't make it to RacketCon this year.  Really glad to see it
> >>> growing.
> >>> 
> >>> Question for y'all - how many Racketeers are active on this side of the
> >>> Atlantic?  Enough for a specific get-together over here?  Or are there
> >>> already appropriate venues for that that I'm unaware of (I am already
> >>> familiar with the European lisp symposium)
> >>> 
> >>> Best,
> >>> 
> >>> 
> >> 
> >> -- 
> >> You received this message because you are subscribed to the Google Groups 
> >> "Racket Users" group.
> >> To unsubscribe from this group and stop receiving emails from it, send an 
> >> email to racket-users+unsubscr...@googlegroups.com.
> >> For more options, visit https://groups.google.com/d/optout.
> > 
> > 
> > Tim Jervis
> > 
> > http://timjervis.com/
> > 
> > 
> > -- 
> > You received this message because you are subscribed to the Google Groups 
> > "Racket Users" group.
> > To unsubscribe from this group and stop receiving emails from it, send an 
> > email to racket-users+unsubscr...@googlegroups.com.
> > For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] Can't seem to find the blue box(es) in DrRacket anymore

2017-08-27 Thread Laurent
Same problem for me on 6.10.0.3 on Ubuntu 64bits. Unchecking then
rechecking the blue box checkbox in the preferences doesn't change
anything. I'll make a bug report.

On Sun, Aug 27, 2017 at 7:11 AM, hashim muqtadir 
wrote:

> Hello,
> I recently updated to Racket 6.10 and I cannot seem to find the blue boxes
> in the top right of the definitions and interactions windows anymore. They
> don't show up by pressing the hotkey (f2) either. There's no error or
> anything, just nothing happens. External help works, i.e. pressing f1 opens
> up the docs search in my browser.
>
> Other things I did around the same time the blue boxes disappeared were
> tinkering with the preferences a bit and 'raco pkg migrate 6.9'. But I
> didn't find any relevant preference that turns them off (there was
> something about blue boxes and background expansion but turning that on/off
> doesn't help) and it did not seem to me that the migrate command would have
> messed anything up.
>
> Anyone has any idea what might have happened? I'd like those back. Maybe
> I'm just missing some preference or something. I'm using a 64-bit Windows
> 10, in case that is relevant.
>
> Regards,
> Hashim.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to racket-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Can't seem to find the blue box(es) in DrRacket anymore

2017-08-27 Thread hashim muqtadir
Hello,
I recently updated to Racket 6.10 and I cannot seem to find the blue boxes in 
the top right of the definitions and interactions windows anymore. They don't 
show up by pressing the hotkey (f2) either. There's no error or anything, just 
nothing happens. External help works, i.e. pressing f1 opens up the docs search 
in my browser.

Other things I did around the same time the blue boxes disappeared were 
tinkering with the preferences a bit and 'raco pkg migrate 6.9'. But I didn't 
find any relevant preference that turns them off (there was something about 
blue boxes and background expansion but turning that on/off doesn't help) and 
it did not seem to me that the migrate command would have messed anything up.

Anyone has any idea what might have happened? I'd like those back. Maybe I'm 
just missing some preference or something. I'm using a 64-bit Windows 10, in 
case that is relevant.

Regards,
Hashim.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.