samth changed the topic of #racket to: Racket v7.6 has been released: https://blog.racket-lang.org/2020/02/racket-v7-6.html -- Racket -- https://racket-lang.org -- https://pkgs.racket-lang.org -- Paste at http://pasterack.org
rmnull has joined #racket
rmnull has quit [Quit: WeeChat 2.7.1]
efm has quit [Read error: Connection reset by peer]
efm has joined #racket
efm has quit [Ping timeout: 256 seconds]
jellie has quit [Ping timeout: 240 seconds]
laduke has quit [Ping timeout: 256 seconds]
laduke has joined #racket
sagax has quit [Remote host closed the connection]
libertyprime has joined #racket
libertyprime has quit [Remote host closed the connection]
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Ping timeout: 264 seconds]
FreeFull has joined #racket
efm has joined #racket
iyzsong has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 260 seconds]
mzan has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
mzan has joined #racket
jackhill has joined #racket
pilne has quit [Quit: East bound and down, loaded up and truckin']
YuGiOhJCJ has joined #racket
orivej_ has quit [Ping timeout: 240 seconds]
dataangel has left #racket ["ERC (IRC client for Emacs 26.3)"]
sauvin has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 240 seconds]
YuGiOhJCJ has quit [Ping timeout: 240 seconds]
cartwright has quit [Ping timeout: 240 seconds]
narimiran has joined #racket
cartwright has joined #racket
akegalj has joined #racket
akegalj has quit [Remote host closed the connection]
dddddd has quit [Ping timeout: 250 seconds]
lockywolf has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 256 seconds]
even4void has joined #racket
even4void has quit [Client Quit]
lockywolf_ has joined #racket
lockywolf has quit [Ping timeout: 264 seconds]
dancek has quit [Quit: WeeChat 2.3]
lockywolf_ has quit [Ping timeout: 240 seconds]
zmt00 has joined #racket
zmt01 has quit [Ping timeout: 240 seconds]
even4void has joined #racket
even4void has quit [Quit: Textual IRC Client: www.textualapp.com]
badkins has joined #racket
orivej has joined #racket
badkins has quit [Ping timeout: 264 seconds]
fridim has quit [Remote host closed the connection]
fridim has joined #racket
orivej has quit [Ping timeout: 264 seconds]
orivej has joined #racket
YuGiOhJCJ has joined #racket
orivej has quit [Ping timeout: 265 seconds]
ArthurStrong has joined #racket
ArthurStrong has left #racket [#racket]
narimiran has quit [Ping timeout: 256 seconds]
narimiran has joined #racket
iyzsong has quit [Ping timeout: 256 seconds]
_whitelogger has joined #racket
iyzsong has joined #racket
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
iyzsong has joined #racket
orivej has joined #racket
badkins has joined #racket
m1dnight has quit [Quit: WeeChat 2.4]
m1dnight_ has joined #racket
nan` has joined #racket
<nan`> hail!
jboy has quit [Quit: bye]
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
jboy has joined #racket
epony has quit [Quit: reconf]
dddddd has joined #racket
wingsorc has joined #racket
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
even4void has joined #racket
even4void has quit [Client Quit]
epony has joined #racket
orivej has quit [Ping timeout: 240 seconds]
efm has quit [Ping timeout: 264 seconds]
efm has joined #racket
nan` has quit [Ping timeout: 250 seconds]
sagax has joined #racket
efm has quit [Remote host closed the connection]
efm has joined #racket
jellie has joined #racket
jellie has quit [Ping timeout: 265 seconds]
badkins has quit [Remote host closed the connection]
true-grue has joined #racket
KDr2 has joined #racket
KDr24 has quit [Ping timeout: 240 seconds]
badkins has joined #racket
efm has quit [Read error: Connection reset by peer]
efm has joined #racket
efm has quit [Ping timeout: 250 seconds]
sauvin has quit [Read error: Connection reset by peer]
jellie has joined #racket
jellie has quit [Ping timeout: 260 seconds]
orivej has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
jellie has joined #racket
badkins has quit [Ping timeout: 258 seconds]
jellie has quit [Ping timeout: 252 seconds]
efm has joined #racket
cartwright has quit [Ping timeout: 240 seconds]
fiddlerwoaroof_ has joined #racket
idxu_ has joined #racket
fiddlerwoaroof has quit [Ping timeout: 265 seconds]
idxu has quit [Ping timeout: 265 seconds]
idxu_ is now known as idxu
fridim has quit [Ping timeout: 265 seconds]
fridim has joined #racket
cartwright has joined #racket
m1dnight_ has quit [Read error: Connection reset by peer]
m1dnight_ has joined #racket
<samth> technomancy: it'll be easier to debug if you aren't doing things with `load`
<samth> try writing a module like this: `#lang racket (require "your-module.rkt") stuff-here` and then try using the macro stepper
m1dnight_ has quit [Ping timeout: 256 seconds]
m1dnight_ has joined #racket
MustardCheese has joined #racket
<MustardCheese> Is there a hard and fast way to find what package holds a function/macro?
m1dnight_ has quit [Read error: Connection reset by peer]
narimiran has quit [Ping timeout: 240 seconds]
<samth> MustardCheese: https://docs.racket-lang.org/whereis/index.html?q=whereis#%28mod-path._whereis%29 may be useful
badkins has joined #racket
true-grue has quit [Read error: Connection reset by peer]
<MustardCheese> This is really cool, samth - thanks!
<MustardCheese> It's not really what I was looking for but it's good to know
badkins has quit [Ping timeout: 256 seconds]
<samth> MustardCheese: what are you looking for?
m1dnight_ has joined #racket
<MustardCheese> At the time I was looking for `define-syntax-class`, which didn't appear to be in syntax/parse
<MustardCheese> As it turns out, that problem was because I was requiring the module in the macro phase rather than the runtime phase
<MustardCheese> But it's a fairly common problem that I don't know what module I'm pulling from and have to dig around in the documentation for a while before I can figure it out
<samth> MustardCheese: you can jump to the definition in both drracket and in racket-mode
tilpner has quit [Remote host closed the connection]
tilpner has joined #racket
wingsorc has quit [Quit: Leaving]
lockywolf_ has quit [Read error: Connection reset by peer]
lockywolf_ has joined #racket
nullcone has quit [Quit: Connection closed for inactivity]
KDr2 has quit [Remote host closed the connection]
badkins has joined #racket
KDr2 has joined #racket
hoplaahei has joined #racket
<hoplaahei> hi. I see that Racket http-client supports CONNECT method for proxying. I would like to use SOCKS5. For a beginner programmer would this be too hard an undertaking? I'm willing to study the protocol spec and spend time on it, but no idea if I'm punching above my weight.
<hoplaahei> So I would like to add-on socks5 support, unless someone already did that via a library
badkins has quit [Remote host closed the connection]
pilne has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 250 seconds]
efm has quit [Ping timeout: 252 seconds]
srandon111 has joined #racket
efm has joined #racket
<srandon111> hello all guys i am trying racket from vim
<srandon111> wwhile with drracket i have a biltin feature to load an image... how can i define an image variable when using vim?
<srandon111> since i cannot drag and drop the image in the editor as with drracket
badkins has joined #racket
MustardCheese has quit [Ping timeout: 240 seconds]