samth changed the topic of #racket to: Racket v7.7 has been released: https://blog.racket-lang.org/2020/05/racket-v7-7.html -- Racket -- https://racket-lang.org -- https://pkgs.racket-lang.org -- Paste at http://pasterack.org
badkins has joined #racket
catonano_ has joined #racket
catonano has quit [Ping timeout: 240 seconds]
catonano_ is now known as catonano
epony has quit [Ping timeout: 258 seconds]
epony has joined #racket
acarrico has quit [Ping timeout: 256 seconds]
epony has quit [Remote host closed the connection]
epony has joined #racket
sagax has quit [Remote host closed the connection]
tilpner has quit [Remote host closed the connection]
tilpner_ has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
tilpner_ is now known as tilpner
badkins has quit [Ping timeout: 244 seconds]
sagax has joined #racket
orivej has quit [Ping timeout: 265 seconds]
orivej has joined #racket
endformationage has quit [Quit: WeeChat 2.7.1]
badkins has joined #racket
badkins has quit [Ping timeout: 258 seconds]
prite has quit [Ping timeout: 246 seconds]
bocaneri has joined #racket
narimiran has joined #racket
nebunez has quit [Ping timeout: 246 seconds]
orivej has quit [Ping timeout: 264 seconds]
Sgeo has quit [Read error: Connection reset by peer]
vejetaryenvampir has joined #racket
vegankumpir has quit [Ping timeout: 256 seconds]
hendursa1 has joined #racket
hendursaga has quit [Ping timeout: 240 seconds]
mirrorbird has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
jellie has joined #racket
ncl3 has quit [Disconnected by services]
ncl3 has joined #racket
ncl3 is now known as _ncl3
ncl3 has joined #racket
ncl3 has quit [Client Quit]
ncl3 has joined #racket
_ncl3 has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
englishm has quit [Ping timeout: 260 seconds]
englishm has joined #racket
mirrorbird_ has joined #racket
mirrorbird has quit [Ping timeout: 244 seconds]
ncl3 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
ncl3 has joined #racket
bchar has quit [Ping timeout: 240 seconds]
edmoore has quit [Ping timeout: 272 seconds]
lexi-lambda has quit [Ping timeout: 272 seconds]
terrorjack has quit [Ping timeout: 272 seconds]
edmoore has joined #racket
lexi-lambda has joined #racket
bchar has joined #racket
terrorjack has joined #racket
jellie has quit [Ping timeout: 258 seconds]
davidl_ has quit [Ping timeout: 246 seconds]
TCZ has joined #racket
jellie has joined #racket
davidl_ has joined #racket
TCZ has quit [Quit: Leaving]
mirrorbird_ is now known as mirrorbird
davidl_ has quit [Ping timeout: 240 seconds]
davidl_ has joined #racket
jellie has quit [Read error: Connection reset by peer]
jellie has joined #racket
mirrorbird has quit [Quit: Leaving]
morbidgirl has joined #racket
davidl_ has quit [Ping timeout: 240 seconds]
orivej has joined #racket
jellie has quit [Ping timeout: 264 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 258 seconds]
srandon111 has joined #racket
hendursa1 has quit [Quit: hendursa1]
hendursaga has joined #racket
jellie has joined #racket
jellie has quit [Ping timeout: 246 seconds]
badkins has joined #racket
jellie has joined #racket
prite has joined #racket
jellie has quit [Ping timeout: 258 seconds]
davidl_ has joined #racket
jellie has joined #racket
Sgeo has joined #racket
davidl_ has quit [Ping timeout: 258 seconds]
narimiran has quit [Ping timeout: 256 seconds]
jellie has quit [Ping timeout: 246 seconds]
morbidgirl has quit [Ping timeout: 260 seconds]
acarrico has joined #racket
jellie has joined #racket
davidl_ has joined #racket
jellie has quit [Quit: WeeChat 2.9]
davidl_ has quit [Ping timeout: 240 seconds]
dddddd has quit [Remote host closed the connection]
badkins has quit [Remote host closed the connection]
dddddd has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
acarrico has quit [Ping timeout: 265 seconds]
davidl_ has joined #racket
davidl_ has quit [Ping timeout: 240 seconds]
badkins has joined #racket
orivej has quit [Ping timeout: 256 seconds]
davidl_ has joined #racket
davidl_ has quit [Ping timeout: 240 seconds]
orivej has joined #racket
morbidgirl has joined #racket
orivej has quit [Ping timeout: 240 seconds]
davidl_ has joined #racket
davidl_ has quit [Ping timeout: 240 seconds]
MetaHertz has joined #racket
endformationage has joined #racket
Batzy has joined #racket
narimiran has joined #racket
orivej has joined #racket
davidl_ 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
davidl_ has quit [Ping timeout: 246 seconds]
bocaneri has quit [Remote host closed the connection]
vejetaryenvampir has quit [Ping timeout: 240 seconds]
vejetaryenvampir has joined #racket
morbidgirl has quit [Quit: Leaving]
morbidgirl has joined #racket
ermo has quit [Quit: ZNC 1.8.1 - https://znc.in]
morbidgirl is now known as mirrorbird
mirrorbird has quit [Remote host closed the connection]
mirrorbird has joined #racket
ermo has joined #racket
htmnc has joined #racket
mirrorbird has quit [Quit: Leaving]
dbmikus has quit [Ping timeout: 240 seconds]
<htmnc> what's a good way to (syntactically/grammatically speaking) evaluate polynomials in racket? like (lambda (a b c) (lambda (x) (+ (* a (expt x 2) (* b x) c))) seems kinda cumbersome
<htmnc> esp if there's multiple exponents greater than 1 like 3,4,5 etc anyway my question is 'does anyone know where I can see people doing such computations like crc polynomials etc' so I can get a feel for how different people tackle the issue?
TCZ has joined #racket
badkins has quit [Remote host closed the connection]
<htmnc> is there a mailing list for racket questions
<dzoe> htmnc: racket-users@ - see https://lists.racket-lang.org/
<htmnc> thank y ou!
narimiran has quit [Quit: leaving]
<dzoe> And to your question - I'd probably do something based on Horner's method using fold.
<dzoe> (whichever fold suits the best)
orivej has quit [Ping timeout: 258 seconds]
Batzy has quit [Ping timeout: 240 seconds]
mirrorbird has joined #racket
<dustyweb> hm
<dustyweb> trying to figure out how to insert a draggable separator element for between panes
<dustyweb> eg the one between the editor and the repl/interactive area in drracket
ermo has quit [Quit: ZNC 1.8.1 - https://znc.in]
ermo has joined #racket
<dustyweb> ah!
<dustyweb> found it
<dustyweb> the dragable panels
TCZ has quit [Quit: Leaving]
mirrorbird has quit [Ping timeout: 272 seconds]
TCZ has joined #racket
htmnc has quit [Quit: Leaving]
badkins has joined #racket
badkins has quit [Ping timeout: 256 seconds]
orivej has joined #racket
badkins has joined #racket