samth changed the topic of #racket to: Racket v7.8 has been released: https://blog.racket-lang.org/2020/08/racket-v7-8.html -- Racket -- https://racket-lang.org -- https://pkgs.racket-lang.org -- Paste at http://pasterack.org
Fare has joined #racket
<countvajhula> does anyone know how to get scribble's @examples form to use a struct type's custom-print rendering if one is specified?
<countvajhula> i have a struct type that implements gen:custom-print, and in a REPL, it renders according to that spec
<countvajhula> but in a scribble examples form, it uses the default rendering of (transparent) structs, i.e. just printing out the fields
<countvajhula> so that the docs don't reflect the actual printed representation
mirrorbird has joined #racket
Fare has quit [Ping timeout: 260 seconds]
catonano_ has joined #racket
catonano has quit [Ping timeout: 256 seconds]
catonano_ is now known as catonano
sagax has joined #racket
<countvajhula> OK, I think it's fixed
<countvajhula> using `make-base-eval` to create the sandboxed evaluator used in examples instead of `make-evaluator` directly, did the trick
<countvajhula> though as far as I can tell I was formerly setting the parameters the same way as this doc describes:
<countvajhula> https://docs.racket-lang.org/scribble/eval.html?q=make-base-eval#%28def._%28%28lib._scribble%2Feval..rkt%29._make-base-eval%29%29
<countvajhula> maybe it has something to do with these "security guards" which i don't know anything about
tilpner_ has joined #racket
tilpner has quit [Ping timeout: 240 seconds]
tilpner_ is now known as tilpner
TCZ has quit [Quit: Leaving]
evdubs has quit [Remote host closed the connection]
Batzy has joined #racket
evdubs has joined #racket
orivej has quit [Ping timeout: 260 seconds]
FreeFull has quit []
badkins has quit [Remote host closed the connection]
badkins has joined #racket
Fernando-Basso[m has quit [Ping timeout: 244 seconds]
yurb has quit [Ping timeout: 244 seconds]
peddie has quit [Ping timeout: 244 seconds]
badkins has quit [Ping timeout: 240 seconds]
yurb has joined #racket
peddie has joined #racket
arpunk has quit [Remote host closed the connection]
arpunk has joined #racket
countvajhula has quit [Ping timeout: 256 seconds]
_whitelogger has joined #racket
magog has joined #racket
phillbush has quit [Remote host closed the connection]
countvajhula has joined #racket
countvajhula has quit [Remote host closed the connection]
countvajhula has joined #racket
<greghendershott> countvajhula: I'm not sure. And I'm not sure how much you really want to know why, if it's working. :)
<greghendershott> But probably make-base-eval is using something like https://docs.racket-lang.org/reference/Sandboxed_Evaluation.html#(def._((lib._racket%2Fsandbox..rkt)._call-with-trusted-sandbox-configuration))
<greghendershott> Which in turn allows structure inspectors to work.
<greghendershott> https://docs.racket-lang.org/reference/inspectors.html#%28tech._inspector%29
* greghendershott waves hands
endformationage has quit [Quit: WeeChat 2.9]
erkin has quit [Ping timeout: 256 seconds]
countvajhula has quit [Ping timeout: 244 seconds]
erkin has joined #racket
mzan has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
mzan has joined #racket
sword865 has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 260 seconds]
countvajhula has joined #racket
_whitelogger has joined #racket
caente has quit [Ping timeout: 252 seconds]
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
<countvajhula> for those who contribute to the racket repo - in your workflow, do you maintain a separate system-wide racket distribution from the repo? or do you just live on the bleeding edge for all your development?
<countvajhula> building racket locally for the first time and wondering if I should think about uninstalling the system-wide version and point all binaries to the repo... or if that'd be a bad idea
fredmanglis has joined #racket
fredmanglis has quit [Ping timeout: 240 seconds]
mmohammadi9812 has joined #racket
fredmanglis has joined #racket
Fare has joined #racket
narimiran has joined #racket
badkins has joined #racket
bocaneri has joined #racket
badkins has quit [Ping timeout: 264 seconds]
sagax has quit [Quit: Konversation terminated!]
<dzoe> countvajhula: that depends on intended usage - I work with about 5 versions of Racket in various subdirectories in my racket-lang meta project without any system-wide (or even user home) integration.
<dzoe> But I am mostly testing weird algorithms with weird optimizations and I do not need the whole ecosystem to work.
<dzoe> But actually raco usually works as expected and if you run into different versions of racket used to build racket packages, it yells at you and it is immediately apparent what has happened.
orivej has joined #racket
nullcone has quit [Read error: Connection reset by peer]
nullcone has joined #racket
orivej has quit [Ping timeout: 240 seconds]
catonano has quit [Quit: catonano]
ArneBab_ has quit [Quit: No Ping reply in 180 seconds.]
ArneBab has joined #racket
<countvajhula> dzoe: that's great, so do you run eg. raco by fully qualifying the path, like `racket-meta/7.8cs/bin/raco pkg install`, something like that?
sagax has joined #racket
Sgeo has quit [Read error: Connection reset by peer]
countvajhula has quit [Ping timeout: 240 seconds]
sputny has joined #racket
sputny has quit [Remote host closed the connection]
sputny has joined #racket
Fare has quit [Ping timeout: 240 seconds]
bitmapper has quit [Quit: Connection closed for inactivity]
sputny has quit [Quit: sputny]
sputny has joined #racket
sputny has quit [Quit: sputny]
mmohammadi9812 has quit [Ping timeout: 258 seconds]
Fare has joined #racket
sputny has joined #racket
sputny has quit [Client Quit]
sputny has joined #racket
badkins has joined #racket
sputny has quit [Client Quit]
sputny has joined #racket
badkins has quit [Ping timeout: 240 seconds]
sputny has quit [Remote host closed the connection]
catonano has joined #racket
countvajhula has joined #racket
countvajhula has quit [Ping timeout: 240 seconds]
Fare has quit [Ping timeout: 244 seconds]
countvajhula has joined #racket
countvajhula has quit [Ping timeout: 244 seconds]
fredmanglis has quit [Ping timeout: 260 seconds]
countvajhula has joined #racket
<dzoe> countvajhula: yes, exactly. My typical racket invocation is: joe@telperion:~/Projects/Programming/TD4$ ../racket-lang/racket/racket/bin/racket td4.rkt
<dzoe> (I am running the binaries from the build directory).
countvajhula has quit [Ping timeout: 240 seconds]
badkins has joined #racket
sputny has joined #racket
countvajhula has joined #racket
badkins has quit [Ping timeout: 265 seconds]
sputny has quit [Quit: sputny]
sputny has joined #racket
countvajhula has quit [Ping timeout: 272 seconds]
sputny has quit [Client Quit]
sputny has joined #racket
sputny has quit [Client Quit]
sputny has joined #racket
sputny has quit [Remote host closed the connection]
countvajhula has joined #racket
phillbush has joined #racket
countvajhula has quit [Ping timeout: 260 seconds]
sputny has joined #racket
sputny has quit [Client Quit]
sputny has joined #racket
sputny has quit [Client Quit]
sputny has joined #racket
countvajhula has joined #racket
sputny has quit [Client Quit]
sputny has joined #racket
countvajhula has quit [Ping timeout: 240 seconds]
sputny has quit [Ping timeout: 244 seconds]
countvajhula has joined #racket
selimcan has joined #racket
countvajhula has quit [Ping timeout: 272 seconds]
TCZ has joined #racket
Fare has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 258 seconds]
narimiran has quit [Ping timeout: 240 seconds]
countvajhula has joined #racket
countvajhula has quit [Ping timeout: 244 seconds]
countvajhula has joined #racket
countvajhula has quit [Ping timeout: 260 seconds]
sagax has quit [Remote host closed the connection]
countvajhula has joined #racket
tilpner has quit [Quit: tilpner]
phillbush has quit [Quit: Leaving]
countvajhula has quit [Ping timeout: 260 seconds]
sagax has joined #racket
tilpner has joined #racket
orivej has joined #racket
countvajhula has joined #racket
countvajhula has quit [Ping timeout: 260 seconds]
badkins has joined #racket
countvajhula has joined #racket
caente has joined #racket
countvajhula has quit [Ping timeout: 240 seconds]
Lowl3v3l has joined #racket
N0S4A2 has joined #racket
sword865 has quit [Quit: Connection closed for inactivity]
countvajhula has joined #racket
countvajhula has quit [Ping timeout: 240 seconds]
badkins has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 246 seconds]
sputny has joined #racket
countvajhula has joined #racket
dbohdan has left #racket [#racket]
<samth> dzoe: countvajhula: I highly recommend these scripts: https://github.com/takikawa/racket-dev-goodies
sputny has quit [Quit: sputny]
countvajhula has quit [Ping timeout: 272 seconds]
sputny has joined #racket
Sgeo has joined #racket
sputny has quit [Client Quit]
sputny has joined #racket
sputny has quit [Client Quit]
badkins has joined #racket
sputny has joined #racket
sputny has quit [Client Quit]
sputny has joined #racket
mirrorbird has joined #racket
<dzoe> samth: nice, thank you!
caente has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/]
caente has joined #racket
TCZ has quit [Quit: Leaving]
countvajhula has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
countvajhula has quit [Ping timeout: 244 seconds]
TCZ has joined #racket
badkins has quit [Ping timeout: 272 seconds]
badkins has joined #racket
Fare has quit [Ping timeout: 244 seconds]
arpunk has quit [Remote host closed the connection]
Fare has joined #racket
countvajhula has joined #racket
countvajhula has quit [Remote host closed the connection]
Fare has quit [Ping timeout: 240 seconds]
arpunk has joined #racket
countvajhula has joined #racket
countvajhula has quit [Remote host closed the connection]
countvajhula has joined #racket
countvajhula has quit [Remote host closed the connection]
countvajhula has joined #racket
countvajhula has quit [Remote host closed the connection]
countvajhula has joined #racket
Fare has joined #racket
countvajhula has quit [Remote host closed the connection]
tilpner_ has joined #racket
countvajhula has joined #racket
badkins has quit [Remote host closed the connection]
tilpner has quit [Read error: Connection reset by peer]
tilpner_ is now known as tilpner
badkins has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
arpunk has quit [Read error: Connection reset by peer]
countvajhula has quit [Remote host closed the connection]
arpunk has joined #racket
countvajhula has joined #racket
countvajhula has quit [Remote host closed the connection]
countvajhula has joined #racket
countvajhula has quit [Remote host closed the connection]
countvajhula has joined #racket
Fare has quit [Ping timeout: 260 seconds]
Fare has joined #racket
arpunk has quit [Read error: Connection reset by peer]
countvajhula has quit [Ping timeout: 272 seconds]
countvajhula has joined #racket
phillbush has joined #racket
arpunk has joined #racket
aeth has quit [Ping timeout: 265 seconds]
sputny has quit [Remote host closed the connection]
aeth has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
sputny has joined #racket
badkins has quit [Ping timeout: 260 seconds]
bitmapper has joined #racket
countvajhula has quit [Ping timeout: 240 seconds]
TCZ has quit [Quit: Leaving]
badkins has joined #racket
extrowerk has joined #racket
badkins has quit [Ping timeout: 258 seconds]
endformationage has joined #racket
* extrowerk still trying to get racket built on Haiku.
<extrowerk> Error [CALL] 4096 in ./../src/port.c: Bad place for function call, starting tok is _errnop.
<extrowerk> wow, this is new
countvajhula has joined #racket
badkins has joined #racket
<extrowerk> Can somebody give me some hints, what am i doing wrong here? Buildlog: http://0x0.st/iU0s.txt
vraid has joined #racket
Fare has quit [Ping timeout: 240 seconds]
<countvajhula> dzoe: 👌
badkins has quit [Remote host closed the connection]
evdubs_ has joined #racket
Fare has joined #racket
evdubs has quit [Ping timeout: 260 seconds]
<dzoe> countvajhula: yeah?
orivej has joined #racket
narimiran has joined #racket
bocaneri has quit [Remote host closed the connection]
mirrorbird has quit [Remote host closed the connection]
tilpner has quit [Remote host closed the connection]
tilpner has joined #racket
TCZ has joined #racket
zgcarvalho has joined #racket
<dzoe> samth: a1f0463e9f86ce08b143696cdf8d64dc8332ea4e fix to be how sam likes it ;-)
<dzoe> Sometimes you find funny things when you are digging through git logs ...
<dzoe> Btw, it's the first day of autumn semester here and it reminded me - again - how I would like to switch the classes from Clojure to Racket ... Clojure is fine, but those small inconsistencies drive me crazy.
<samth> extrowerk: that's a sign that there's something wrong with the preprocessor that adds GC support to the runtime
<samth> extrowerk: I strongly strongly recommend that you ask these questions either on the mailing list, on GitHub, or on slack, where the person who can answer your questions will see them
<samth> extrowerk: you might also try just building the chez scheme version which has less c code
ermo has quit [Quit: ZNC 1.8.1 - https://znc.in]
mirrorbird has joined #racket
badkins has joined #racket
rj has joined #racket
countvajhula has quit [Read error: Connection reset by peer]
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Ping timeout: 240 seconds]
badkins has joined #racket
mirrorbird has quit [Ping timeout: 244 seconds]
narimiran has quit [Ping timeout: 240 seconds]
mirrorbird has joined #racket
ermo has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
ermo has quit [Ping timeout: 240 seconds]
ermo has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
mirrorbird has quit [Quit: Leaving]
badkins has quit [Ping timeout: 240 seconds]
mirrorbird has joined #racket
selimcan has quit [Remote host closed the connection]
selimcan has joined #racket
phillbush has quit [Ping timeout: 260 seconds]
badkins has joined #racket
sputny has quit [Remote host closed the connection]
badkins has quit [Ping timeout: 256 seconds]
TCZ has quit [Quit: Leaving]
Fare has quit [Ping timeout: 260 seconds]
Fare has joined #racket
dustyweb has quit [Ping timeout: 260 seconds]
englishm has quit [Ping timeout: 240 seconds]
englishm has joined #racket
phillbush has joined #racket
mirrorbird has quit [Quit: Leaving]
countvajhula has joined #racket
<countvajhula> samth: ty
ermo has quit [Quit: ZNC 1.8.1 - https://znc.in]
ermo has joined #racket
mirrorbird has joined #racket
badkins has joined #racket
Batzy has quit [Quit: WeeChat 2.8]
phillbush has quit [Remote host closed the connection]
badkins has quit [Ping timeout: 272 seconds]
ermo has quit [Quit: ZNC 1.8.1 - https://znc.in]
ermo has joined #racket
ermo has quit [Ping timeout: 272 seconds]
ermo has joined #racket
badkins has joined #racket
Fare has quit [Ping timeout: 240 seconds]
badkins has quit [Ping timeout: 260 seconds]
Fare has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 260 seconds]
mirrorbird has quit [Quit: Leaving]
badkins has joined #racket