jackdaniel changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <http://cliki.net/> <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | SBCL 1.5.4, CMUCL 21b, ECL 16.1.3, CCL 1.11.5, ABCL 1.5.0
xkapastel has quit [Quit: Connection closed for inactivity]
EvW has joined #lisp
red-dot has joined #lisp
Arcaelyx has quit [Quit: Arcaelyx]
nullniverse has joined #lisp
nullniverse has quit [Changing host]
nullniverse has joined #lisp
emacsomancer has joined #lisp
nowhere_man has joined #lisp
analogue has quit [Remote host closed the connection]
hhh47 has joined #lisp
analogue has joined #lisp
kpoeck has quit [Remote host closed the connection]
arzoriac has joined #lisp
hhh47 has quit [Quit: hhh47]
__jrjsmrtn__ has quit [Ping timeout: 240 seconds]
raichu has joined #lisp
arzoriac has left #lisp ["rcirc on GNU Emacs 26.3"]
__jrjsmrtn__ has joined #lisp
red-dot has quit [Quit: Going offline, see ya! (www.adiirc.com)]
abhixec has joined #lisp
paul0 has joined #lisp
mathrick has joined #lisp
EvW has quit [Ping timeout: 245 seconds]
bitmapper has quit [Ping timeout: 240 seconds]
marusich has joined #lisp
marusich has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
<jeosol> (setq inferior-lisp-program "/usr/local/bin/sbcl --dynamic-space-size 10000") -- does this command start sbcl in slime with ~10G. I am running a memory intensive case and slime hangs, but with "sbcl --dynamic-space-size 10000" things work but not able to debug well
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
libertyprime has joined #lisp
elfmacs has joined #lisp
Volt_ has joined #lisp
mathrick has quit [Ping timeout: 258 seconds]
mathrick has joined #lisp
jprajzne has quit [Quit: jprajzne]
semz_ has quit [Ping timeout: 245 seconds]
wxie has joined #lisp
jprajzne has joined #lisp
georgie has joined #lisp
georgie has quit [Client Quit]
emacsomancer has quit [Remote host closed the connection]
semz_ has joined #lisp
semz_ has quit [Changing host]
semz_ has joined #lisp
rpg has joined #lisp
rpg has quit [Client Quit]
hiroaki has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
wxie has quit [Ping timeout: 245 seconds]
libertyprime has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
jsgrant_ has joined #lisp
<mgsk> jeosol: yes, you can allocate up to 10GB on the heap. Are you saying it does or does not work?
mathrick has quit [Ping timeout: 245 seconds]
techquila has joined #lisp
adam4567 has quit [Read error: Connection reset by peer]
adam4567 has joined #lisp
mindthelion has quit [Ping timeout: 246 seconds]
jprajzne has joined #lisp
analogue has quit [Quit: Leaving]
ahungry has joined #lisp
techquila has quit [Ping timeout: 268 seconds]
fragamus has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
Fare has quit [Ping timeout: 245 seconds]
puchacz has quit [Quit: Connection closed for inactivity]
Payleeee has joined #lisp
Ricchi has quit [Remote host closed the connection]
<Payleeee> Hello everybody!
<rigidus> Hi
Payleeee has quit [Client Quit]
<rigidus> lol _)
<sukaeto> aeth: Sure! I see your point. It depends on what you're doing with said HTML. HTML templating engines like Djula still have value, though (as evidenced by Djula's existence - someone wanted Jinja style templates in Lisp), because you can just have your design person write the templates without needing too much from you.
<sukaeto> whereas sqlalchemy (at least from my experience with it) is just kind of very not ideal way of allowing you to write queries in Python. There's nothing about it that sxql doesn't do better.
<sukaeto> pjb: "Just using pointers to structures for everything", while possible in Ada, is very awkward and you have to go out of your way to do it. For good reason, IMO. I wouldn't call Ada a lesser language (than Lisp, presumably you meant to say). Just . . . different.
nowhereman has joined #lisp
<sukaeto> aeth: Ada distinguishes between "Foo", "pointer to Foo", and "Foo'Class (as well as pointer to Foo'Class)" - that last one I've never seen an analogue to in any other language. Essentially, "We don't know the exact type of this thing until runtime, just that it's some descendent of Foo"
nowhere_man has quit [Ping timeout: 240 seconds]
jsgrant_ has quit [Remote host closed the connection]
raichu has quit [Ping timeout: 260 seconds]
<aeth> sukaeto: On the other hand, nothing's stopping you from, rather than text-substituting, parsing that templating engine into your html->s-expression system and thus validate the HTML
Oladon1 has joined #lisp
torbo has joined #lisp
Oladon has quit [Ping timeout: 245 seconds]
<aeth> sukaeto: #lispcafe also came up with a clever way of substituting something into a string. Basically, build a format string that takes in a keyword argument by collecting the variables and then removing the duplicates for the keywords, i.e. (&key foo bar baz ...) would be the lambda list but they might be encountered as foo bar foo foo baz bar ... in the template language
<aeth> And since "hello, {{person}}!" seems wrong to a Lisper, it could be represented as (that-macro "hello, " person "!") which will then generate a function with one keyword argument, person.
<aeth> Since then you're not magicking a variable out of nowhere
<aeth> Now, whether or not a design person would be able to tolerate (define-foo foo "<html> <body> Hello, " person "!") instead of an alternative is a different story...
<aeth> I guess the point of this is that you get a ton of flexibility... at the expense of everyone probably preferring their own solution
mathrick has joined #lisp
<pjb> you should not trust what comes out of #lispcafe. It's specifically designed for that, not trusting.
jprajzne has quit [Quit: jprajzne]
<no-defun-allowed> Would you prefer the code written there then, pjb? http://clim.rocks/gilbert/blah2.lisp
jprajzne has joined #lisp
orivej has quit [Ping timeout: 265 seconds]
<sukaeto> yeah, my experience is that design people would rather just do PHPish stuff inlined directly into the HTML. So things like Jinja work out great for them.
<sukaeto> granted, if you don't have a design person and you're stuck writing all your own HTML, then yeah. Having a sexpr representation and being able to work with it in code is great.
elfmacs has quit [Ping timeout: 268 seconds]
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
adip has quit [Ping timeout: 268 seconds]
nowhereman has quit [Ping timeout: 276 seconds]
adip has joined #lisp
nullniverse has quit [Quit: Leaving]
adam4567 has left #lisp ["ERC (IRC client for Emacs 24.5.1)"]
mathrick has quit [Ping timeout: 245 seconds]
<aeth> sukaeto: Technically speaking, you can do that in CL, too.
<aeth> sukaeto: You could write a reader macro for PHP-style CL
<beach> Good morning everyone!
<aeth> sukaeto: In fact, at least one person almost certainly made something like that when PHP was in style (although nowadays even PHP uses web frameworks with templates like Python and Ruby offer)
Lord_of_Life has quit [Ping timeout: 246 seconds]
Lord_of_Life has joined #lisp
wigust has quit [Ping timeout: 265 seconds]
wigust- has joined #lisp
nanoz has quit [Ping timeout: 246 seconds]
malaclyps[m] has quit [*.net *.split]
voidlily has quit [*.net *.split]
DrDuck has quit [*.net *.split]
dtw has quit [*.net *.split]
buffergn0me has quit [*.net *.split]
drmeister has quit [*.net *.split]
pent has quit [*.net *.split]
xristos has quit [*.net *.split]
|3b| has quit [*.net *.split]
tfb has quit [*.net *.split]
bkhl has quit [*.net *.split]
boeg has quit [*.net *.split]
p_l has quit [*.net *.split]
gjnoonan has quit [*.net *.split]
spacedbat has quit [*.net *.split]
thonkpod has quit [*.net *.split]
galdor has quit [*.net *.split]
jhei has quit [*.net *.split]
physpi has quit [*.net *.split]
phadthai has quit [*.net *.split]
chewbranca has quit [*.net *.split]
CEnnis91 has quit [*.net *.split]
postit_ has quit [*.net *.split]
asedeno_ has quit [*.net *.split]
XachX has quit [*.net *.split]
tazjin has quit [*.net *.split]
koenig has quit [*.net *.split]
swflint has quit [*.net *.split]
gendl has quit [*.net *.split]
Ober has quit [*.net *.split]
jerme_ has quit [*.net *.split]
markasoftware has quit [*.net *.split]
phadthai has joined #lisp
xristos has joined #lisp
p_l has joined #lisp
pent has joined #lisp
XachX has joined #lisp
DrDuck has joined #lisp
tfb has joined #lisp
tazjin has joined #lisp
xristos has quit [Changing host]
xristos has joined #lisp
boeg has joined #lisp
XachX has quit [Changing host]
XachX has joined #lisp
asedeno_ has joined #lisp
jhei has joined #lisp
gjnoonan has joined #lisp
buffergn0me has joined #lisp
chewbranca has joined #lisp
dtw has joined #lisp
gendl has joined #lisp
postit_ has joined #lisp
drmeister has joined #lisp
malaclyps[m] has joined #lisp
koenig has joined #lisp
physpi has joined #lisp
CEnnis91 has joined #lisp
thonkpod has joined #lisp
libertyprime has joined #lisp
Lord_of_Life has quit [Ping timeout: 240 seconds]
bkhl has joined #lisp
gravicappa has joined #lisp
voidlily has joined #lisp
galdor has joined #lisp
markasoftware has joined #lisp
|3b| has joined #lisp
spacedbat has joined #lisp
Ober has joined #lisp
swflint has joined #lisp
jerme_ has joined #lisp
Lord_of_Life has joined #lisp
abhixec has quit [Quit: leaving]
Bike has quit [Quit: Lost terminal]
gravicappa has quit [Ping timeout: 265 seconds]
jprajzne has quit [Quit: jprajzne]
clothespin_ has joined #lisp
jprajzne has joined #lisp
clothespin has quit [Ping timeout: 245 seconds]
abhixec has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
FreeBirdLjj has joined #lisp
manualcrank has quit [Quit: WeeChat 1.9.1]
mathrick has joined #lisp
_whitelogger has joined #lisp
torbo has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
Jesin has quit [Quit: Leaving]
Jesin has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
raghavgururajan has joined #lisp
akoana has left #lisp ["Leaving"]
quazimodo has quit [Ping timeout: 240 seconds]
quazimodo has joined #lisp
techquila has joined #lisp
abhixec has quit [Quit: leaving]
vlatkoB has joined #lisp
SaganMan has joined #lisp
<jeosol> mgsk: It didn't appear to work. Now I just do C-u M-x, then sbcl --dynamic-space-size 10000.
<jeosol> morning beach
dddddd has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
ggole has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
user____ has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
slyrus__ has joined #lisp
krid has quit [Ping timeout: 265 seconds]
slyrus_ has quit [Ping timeout: 240 seconds]
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
marusich has joined #lisp
Ricchi has joined #lisp
ahungry has quit [Remote host closed the connection]
_whitelogger has joined #lisp
jprajzne has quit [Quit: jprajzne]
count3rmeasure has joined #lisp
FreeBirdLjj has quit [Remote host closed the connection]
ravenousmoose has joined #lisp
rippa has joined #lisp
kalogik has joined #lisp
ravenousmoose has quit [Ping timeout: 246 seconds]
kalogik has quit [Client Quit]
nikkal has joined #lisp
SaganMan has quit [Quit: WeeChat 1.6]
SaganMan has joined #lisp
FreeBirdLjj has joined #lisp
elfmacs has joined #lisp
ravenousmoose has joined #lisp
jprajzne has joined #lisp
Ricchi has quit [Remote host closed the connection]
refpga has quit [Ping timeout: 276 seconds]
refpga has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
adip has quit [Ping timeout: 246 seconds]
nika has joined #lisp
adip has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
dale has quit [Quit: My computer has gone to sleep]
fragamus has quit [Ping timeout: 245 seconds]
eMBee has quit [Quit: leaving]
eMBee has joined #lisp
fragamus has joined #lisp
nanoz has joined #lisp
FreeBirdLjj has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
jprajzne has quit [Quit: jprajzne]
orivej has joined #lisp
adip has quit [Ping timeout: 240 seconds]
user____ has quit [Ping timeout: 268 seconds]
adip has joined #lisp
jprajzne has joined #lisp
FreeBirdLjj has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
gareppa has joined #lisp
georgie has joined #lisp
superkumasan has joined #lisp
krid has joined #lisp
count3rmeasure has quit [Quit: Leaving]
krid has quit [Ping timeout: 265 seconds]
asdf_asdf_asdf has joined #lisp
raghavgururajan has quit [Read error: Connection reset by peer]
orivej has quit [Ping timeout: 276 seconds]
nikkal has quit [Read error: Connection reset by peer]
nikkal has joined #lisp
devon has joined #lisp
cosimone has joined #lisp
orivej has joined #lisp
elfmacs has quit [Ping timeout: 268 seconds]
jprajzne has quit [Quit: jprajzne]
user_ has joined #lisp
<devon> (apropos "packages")
<devon> LOL, wrong buffer. Can slime hack -*- Package: foo -*- lines?
refpga` has joined #lisp
<asdf_asdf_asdf> devon, You set variable *print-length* on t/nil.
nikkal has quit [Quit: Konversation terminated!]
<no-defun-allowed> You can't set *print-length* to T.
<no-defun-allowed> clhs *print-length*
<asdf_asdf_asdf> Thanks @no-def
<asdf_asdf_asdf> Thanks no-defun-allowed. Yes only to nil or negative integer.
<no-defun-allowed> *positive integer.
<asdf_asdf_asdf> non-negative*
<no-defun-allowed> Good point, zero isn't positive.
devon has quit [Ping timeout: 265 seconds]
jprajzne has joined #lisp
makomo has joined #lisp
fragamus has quit [Ping timeout: 245 seconds]
cosimone has quit [Quit: Terminated!]
FreeBirdLjj has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 240 seconds]
orivej has joined #lisp
asdf_asdf_asdf has quit [Remote host closed the connection]
asdf_asdf_asdf has joined #lisp
nowhereman has joined #lisp
igemnace has joined #lisp
igemnace has quit [Client Quit]
jprajzne has quit [Quit: jprajzne]
scymtym has quit [Ping timeout: 258 seconds]
orivej has quit [Read error: Connection timed out]
gareppa has quit [Quit: Leaving]
jprajzne has joined #lisp
count3rmeasure has joined #lisp
angavrilov has quit [Remote host closed the connection]
angavrilov has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
scymtym has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
ravenousmoose has quit [Ping timeout: 276 seconds]
puchacz has joined #lisp
ravenousmoose has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
stepnem has quit [Ping timeout: 245 seconds]
stepnem has joined #lisp
varjag has joined #lisp
Inline__ has joined #lisp
Inline__ has quit [Read error: Connection reset by peer]
Inline has quit [Ping timeout: 264 seconds]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
nowhereman has quit [Ping timeout: 258 seconds]
ravenousmoose has quit [Ping timeout: 246 seconds]
shifty has joined #lisp
ravenousmoose has joined #lisp
Bike has joined #lisp
EvW1 has joined #lisp
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
count3rmeasure has quit [Ping timeout: 245 seconds]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
georgie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Fare has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
ralt has joined #lisp
dddddd has joined #lisp
xkapastel has joined #lisp
asdf_asdf_asdf has quit [Quit: asdf_asdf_asdf]
Achylles has joined #lisp
random-nick has joined #lisp
orivej has joined #lisp
Inline has joined #lisp
wigust- has quit [Quit: ZNC 1.7.4 - https://znc.in]
shifty has quit [Ping timeout: 258 seconds]
shifty has joined #lisp
lucasb has joined #lisp
superkumasan has quit [Ping timeout: 240 seconds]
analogue has joined #lisp
FreeBirdLjj has joined #lisp
asedeno_ is now known as asedeno
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
wxie has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
emacsomancer has joined #lisp
igemnace has joined #lisp
igemnace has quit [Client Quit]
analogue has quit [Ping timeout: 245 seconds]
EvW1 has quit [Ping timeout: 245 seconds]
orivej has quit [Ping timeout: 276 seconds]
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gabiruh_ has quit [Ping timeout: 246 seconds]
wxie has quit [Ping timeout: 250 seconds]
bitmapper has joined #lisp
gabiruh has joined #lisp
Achylles has quit [Ping timeout: 246 seconds]
semz_ is now known as semz
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
gabiruh has quit [Ping timeout: 268 seconds]
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
libertyprime has quit [Ping timeout: 265 seconds]
krid has joined #lisp
Fare has quit [Ping timeout: 265 seconds]
Achylles has joined #lisp
Fare has joined #lisp
jprajzne has quit [Quit: jprajzne]
ravenousmoose has joined #lisp
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
ravenousmoose has quit [Ping timeout: 246 seconds]
Krystof has quit [Ping timeout: 245 seconds]
georgie has joined #lisp
krid has quit [Ping timeout: 265 seconds]
yoeljacobsen has joined #lisp
Fare has quit [Ping timeout: 265 seconds]
jprajzne has joined #lisp
georgie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
voidlily has quit [Ping timeout: 276 seconds]
Achylles has quit [Ping timeout: 246 seconds]
jprajzne has quit [Quit: jprajzne]
shka_ has joined #lisp
jprajzne has joined #lisp
voidlily has joined #lisp
FreeBirdLjj has quit [Remote host closed the connection]
krid has joined #lisp
orivej has joined #lisp
emacsomancer has quit [Read error: Connection reset by peer]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
FreeBirdLjj has joined #lisp
yoja has joined #lisp
yoeljacobsen has quit [Ping timeout: 240 seconds]
voidlily has quit [Ping timeout: 245 seconds]
shifty has quit [Ping timeout: 245 seconds]
NickBusey has quit [Ping timeout: 245 seconds]
yoja has quit [Ping timeout: 240 seconds]
orivej has quit [Ping timeout: 240 seconds]
jprajzne has quit [Quit: jprajzne]
asdf_asdf_asdf has joined #lisp
jprajzne has joined #lisp
Aruseus has joined #lisp
khisanth_ has quit [Ping timeout: 240 seconds]
ralt has quit [Quit: Connection closed for inactivity]
Volt_ has quit [Quit: exit();]
puchacz has quit [Quit: Connection closed for inactivity]
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 265 seconds]
Lord_of_Life_ is now known as Lord_of_Life
scymtym has quit [Ping timeout: 245 seconds]
khisanth_ has joined #lisp
aindilis has quit [Ping timeout: 240 seconds]
ravenousmoose has joined #lisp
cosimone has joined #lisp
Ven`` has joined #lisp
ravenousmoose has quit [Ping timeout: 276 seconds]
dpl has joined #lisp
ralt has joined #lisp
Krystof has joined #lisp
FreeBirdLjj has quit [Remote host closed the connection]
jprajzne has quit [Remote host closed the connection]
FreeBirdLjj has joined #lisp
aindilis has joined #lisp
FreeBirdLjj has quit [Ping timeout: 276 seconds]
orivej has joined #lisp
paul0 has quit [Remote host closed the connection]
sjl has quit [Quit: WeeChat 2.2-dev]
torbo has joined #lisp
Ricchi has joined #lisp
gravicappa has joined #lisp
Ven`` has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Ven`` has joined #lisp
ravenousmoose has joined #lisp
Ven`` has quit [Client Quit]
superkumasan has joined #lisp
ravenousmoose has quit [Ping timeout: 246 seconds]
nika has quit []
user_ has quit [Ping timeout: 240 seconds]
dpl has quit [Quit: leaving]
dpl has joined #lisp
stepnem has quit [Ping timeout: 276 seconds]
stepnem_ has joined #lisp
refpga has quit [Ping timeout: 265 seconds]
cosimone has quit [Quit: Quit.]
refpga has joined #lisp
analogue has joined #lisp
cosimone has joined #lisp
ggole has quit [Ping timeout: 264 seconds]
scymtym has joined #lisp
fragamus has joined #lisp
Kevslinger has quit [Quit: Connection closed for inactivity]
techquila has quit [Ping timeout: 268 seconds]
gravicappa has quit [Ping timeout: 268 seconds]
nanoz has quit [Ping timeout: 268 seconds]
lavaflow has quit [Ping timeout: 245 seconds]
orivej has quit [Ping timeout: 258 seconds]
yoja has joined #lisp
sunwukong has joined #lisp
vlatkoB has quit [Remote host closed the connection]
orivej has joined #lisp
fragamus has quit [Ping timeout: 258 seconds]
ralt has quit [Quit: Connection closed for inactivity]
stepnem_ has quit [Ping timeout: 265 seconds]
lavaflow has joined #lisp
stepnem has joined #lisp
random-nick has quit [Ping timeout: 240 seconds]
Ven`` has joined #lisp
_whitelogger has joined #lisp
bitmapper has joined #lisp
voidlily has joined #lisp
yoja has quit [Ping timeout: 245 seconds]
shka_ has quit [Ping timeout: 245 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
fragamus has joined #lisp
sunwukong has quit [Ping timeout: 240 seconds]
atomik_dog has quit [Read error: Connection reset by peer]
fragamus has quit [Ping timeout: 276 seconds]
techquila has joined #lisp
afidegnum has joined #lisp
cosimone has quit [Quit: Quit.]
cosimone has joined #lisp
<afidegnum> hello, using elisp, i m trying to fetch the output of my python file and display but i m having a nil output, what am i missing? https://dpaste.de/4Yi0
<Shinmera> Try #emacs
random-nick has joined #lisp
fragamus has joined #lisp
shka_ has joined #lisp
moldybits has quit [Quit: WeeChat 2.4]
fragamus has quit [Ping timeout: 265 seconds]
<pjb> afidegnum: Type C-h f format RET and read.
<pjb> afidegnum: Type M-x ielm RET (format "a %s" "b" "c" "d") RET
<afidegnum> this is my new addition
<afidegnum> (defun from-py (&rest pyarg)
<afidegnum> (interactive)
<afidegnum> (insert (shell-command-to-string (format "python3 %s %s" buffer-file-name pyarg))))
<afidegnum> from-py
<afidegnum> and i have this erorr
<afidegnum> /bin/bash: -c: line 0: syntax error near unexpected token `('
<afidegnum> /bin/bash: -c: line 0: `python3 nil (/home/isodec/PycharmProjects/pelican/envtest.py mytest)'
karlosz has joined #lisp
<Shinmera> This channel is not for elisp or emacs.
<Shinmera> Please go to #emacs.
fragamus has joined #lisp
manualcrank has joined #lisp
sjl has joined #lisp
Kevslinger has joined #lisp
<pjb> or ##lisp to discuss it in general, as this is not an emacs specific problem, but a mere programming question.
<thijso> In ECL I'm getting STACK-OVERFLOW errors. Is this something like a runaway recursive thing or something? It says "Stack can probably be resized", but I've gone from 2000 to over 40000 now, and it keeps telling me this after some rather minor changes in my code
<Bike> thijso: runaway recursive function is a common cause of stack overflows, yes. can you get a backtrace?
<thijso> Well... minor, but invasive maybe. I put in verbose for logging instead of my own format t stuff
<thijso> No, backtrace is not there. It's inside a docker and non-interactive
<thijso> But I should be able to run it manually...
<thijso> lemme see
<Bike> it's possible to introduce these things in pretty complicated ways. For example, you could have some kind of object, and a function on that object. With the verbose flag on, when that function is called, the object is printed in the log. But the print-object method on that object also calls that function. Voila
<Bike> i have no idea if that's what's happening to you, but it's something i've done before
<asdf_asdf_asdf> Hi. What is (* t). I want extract void and NULL from C. Thanks.
libertyprime has joined #lisp
<thijso> Bike: seems like something like that yeah. I see a ton of #<process "WITH-TIMEOUT thread serving: \"verbose-thread\"." 0x55da3ceb5c80>'s cycling around with no output being produced...
<pjb> thijso: read the documentation, there may be a way to get the backtrace programmatically. In CCL, we can use (ccl::backtrace-as-list).
<thijso> ah, thanks, pjb
<thijso> I'll check it out
<pjb> So you could write (handler-bind (#+ecl (stack-overflow #'print-backtrace)) …)
<thijso> Shinmera: just to check: there should only be one of those threads running right?
<thijso> Oh, wait. Sorry, Shinmera, that's an internal thing from ECL thread support I think. As ECL doesn't do proper with-timeout, it fakes it with a thread. I forgot the details
wigust has joined #lisp
shka_ has quit [Ping timeout: 240 seconds]
dim has quit [Ping timeout: 268 seconds]
dale has joined #lisp
EvW has joined #lisp
<Shinmera> thijso: You can potentially have multiple controllers running, but I'm not sure of the utility of it and it doesn't happen normally.
cosimone has quit [Quit: Quit.]
cosimone has joined #lisp
analogue has quit [Quit: Leaving]
xkapastel has quit [Quit: Connection closed for inactivity]
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
Ven`` has quit [Quit: Textual IRC Client: www.textualapp.com]
karlosz has quit [Quit: karlosz]
karlosz has joined #lisp
fragamus has quit [Ping timeout: 265 seconds]
EvW has quit [Remote host closed the connection]
EvW1 has joined #lisp
jonatack has quit [Quit: jonatack]
jonatack has joined #lisp
nowhereman has joined #lisp
emacsomancer has joined #lisp
lavaflow has quit [Ping timeout: 258 seconds]
lavaflow has joined #lisp
karlosz has quit [Quit: karlosz]
refpga` has quit [Remote host closed the connection]
karlosz has joined #lisp
j`ey has joined #lisp
<LdBeth> once I thought SMGL parser is a myth
libertyprime has quit [Ping timeout: 265 seconds]
random-nick has quit [Ping timeout: 265 seconds]
georgie has joined #lisp
moldybits has joined #lisp
akoana has joined #lisp
ltriant has joined #lisp
libertyprime has joined #lisp
varjag has quit [Ping timeout: 276 seconds]
refpga has quit [Read error: Connection reset by peer]
refpga has joined #lisp
georgie_ has joined #lisp
georgie has quit [Read error: Connection reset by peer]
anewuser has joined #lisp
karlosz has quit [Quit: karlosz]
karlosz has joined #lisp
igemnace has joined #lisp
igemnace has quit [Client Quit]
adip has quit [Ping timeout: 265 seconds]
monokrom has quit [Remote host closed the connection]
adip has joined #lisp
karlosz has quit [Ping timeout: 245 seconds]
libertyprime has quit [Ping timeout: 240 seconds]
alexanderbarbosa has joined #lisp
libertyprime has joined #lisp
lavaflow has quit [Ping timeout: 276 seconds]
karlosz has joined #lisp
cosimone has quit [Remote host closed the connection]
refpga has quit [Remote host closed the connection]
cosimone has joined #lisp
asdf_asdf_asdf has quit [Quit: asdf_asdf_asdf]
libertyprime has quit [Ping timeout: 268 seconds]
libertyprime has joined #lisp
quazimodo has quit [Ping timeout: 265 seconds]
cosimone has quit [Quit: Quit.]
dpl has quit [Ping timeout: 268 seconds]
saravia has joined #lisp
nanoz has joined #lisp
lavaflow has joined #lisp
shifty has joined #lisp
karlosz has quit [Quit: karlosz]
xkapastel has joined #lisp
karlosz has joined #lisp
libertyprime has quit [Ping timeout: 268 seconds]
permagreen has quit [Remote host closed the connection]
Blukunfando has joined #lisp
EvW1 has quit [Ping timeout: 245 seconds]
SaganMan has quit [Ping timeout: 240 seconds]