Since 4/5/2012 5:54:31 AM, avshabanov has written 7 articles and participated in 7 conversations. avshabanov signature: avshabanov
avshabanov's articles:
Items(7) /1
when string is not a string775 (5/12/2010 10:18:25 PM) comp.lang.javascript Curious javascript sample.
Consider the following code:
var s = "asd"
var f = function() { return typeof(this) }
An expression typeof(s) returns true (as it is expected), but
f.call(s) returns false!... Alex
logging arguments values496 (12/10/2009 6:30:38 PM) comp.lang.lisp Hi all,
I am writing a macro helper for defining functions with transparently
added logging:
(defmacro fun (name (&rest arglist) &rest body)
(let ((func-result (gensym "func-result-")))
`(defun ,... alex_sv
.rsrc files creator096 (10/26/2009 3:36:42 PM) comp.sys.mac.programmer.tools Hi!
I am developing cross-platform applications for Mac. I need to include
EULA (a.k.a. SLA) to the DMG file.
This SLA should be written in Russian. All the standard
SLAResources.rsrc templates I found in... alex_sv
approach to writing recursive macros816 (10/23/2009 3:45:41 PM) comp.lang.lisp Hi all, I need to write a some sort of "functional replacer" macro, that accepts certain list (which in fact just an ordinary function call), symbol to replace and a list to be pasted instead of that symbol. I... alex_sv
[emacs+slime] effective debugging523 (10/18/2009 11:55:25 AM) comp.lang.lisp Hi all, I am new to emacs+slime (I used to work with vim and came to emacs world a few days ago). I've read few tutorials and now working in emacs seems comfortable enough. But I think that I use slime extreme... alex_sv
case sensitiveness for reader/printer1026 (10/12/2009 3:00:51 PM) comp.lang.lisp Hi all, I know that clisp behaves in a case sensitive way when being started with -modern option passed via the command line. On the other side sbcl does not support -modern option at all - or any other comman... alex_sv
portable way of strict type checking in defun4328 (10/12/2009 10:24:36 AM) comp.lang.lisp Hi all, could you please clarify - is there a portable way of introducing strict typechecking in lisp code? I've found that "declare" statement makes it possible, but in sbcl and not in clisp: =============... alex_sv
avshabanov's replies:
Items(5) /1
portable way of strict type checking in defun4328 (10/12/2009 10:24:36 AM) comp.lang.lisp Hi all, could you please clarify - is there a portable way of introducing strict typechecking in lisp code? I've found that "declare" statement makes it possible, but in sbcl and not in clisp: =============... avshabanov(14)
case sensitiveness for reader/printer1026 (10/12/2009 3:00:51 PM) comp.lang.lisp Hi all, I know that clisp behaves in a case sensitive way when being started with -modern option passed via the command line. On the other side sbcl does not support -modern option at all - or any other comman... avshabanov(14)
[emacs+slime] effective debugging523 (10/18/2009 11:55:25 AM) comp.lang.lisp Hi all, I am new to emacs+slime (I used to work with vim and came to emacs world a few days ago). I've read few tutorials and now working in emacs seems comfortable enough. But I think that I use slime extreme... avshabanov(14)
approach to writing recursive macros816 (10/23/2009 3:45:41 PM) comp.lang.lisp Hi all, I need to write a some sort of "functional replacer" macro, that accepts certain list (which in fact just an ordinary function call), symbol to replace and a list to be pasted instead of that symbol. I... avshabanov(14)