Search the web
Sign In
New User? Sign Up
bangalore-lisp · The Bangalore Common Lisp Study Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 436 - 466 of 501   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
436
I want to consider joining their team. I remember someone here used to work in that Lisp team. Someone please speak up! Thanks!...
Thomas Elam
tomelam
Offline Send Email
May 4, 2007
11:56 am
437
Hi all, I am interested to know how much development anyone is doing based on lisp. Wondering what is happening with lisp in bangalore. Thanks and Regards, -vk...
Mr vijay kumar
vijaykerb
Offline Send Email
May 26, 2007
1:08 pm
438
Vijay, I was doing a few projects in Common Lisp, but it hardly seemed the company could digest them. The projects were a success in my eyes, but I don't think...
Thomas Elam
tomelam
Offline Send Email
May 26, 2007
6:49 pm
439
Tom, Thats true. Maybe pple are not much used to more declarative languages. Project managers are used to c, java or sorts and thats what wins the race. But I...
Mr vijay kumar
vijaykerb
Offline Send Email
May 29, 2007
1:39 pm
440
Hi All, There has been no much response on whats happening with lisp/prolog usage in bangalore. Think its very dormant here... Thanks, -vijay ... Download...
Mr vijay kumar
vijaykerb
Offline Send Email
May 30, 2007
6:36 am
441
Lisp inspires and informs, even in Bangalore! ... -- Lisp humour: LISP> (setf god (symbol-value god)) Warning: Declaring GOD special. Error: GOD is unbound....
Thomas Elam
tomelam
Offline Send Email
May 30, 2007
3:59 pm
442
... Whatever little sound that comes out of the lispers gets lost in the noise that the J2EE crowd makes :) Also I guess it is the secret sauce which nobody...
Krishna
v.krishnakumar@...
Send Email
May 30, 2007
4:27 pm
443
... True. But again, lispers have their own level of thought processes that go compared to a java guy. True java is sellable now, where as lisp sort of is a ...
Mr vijay kumar
vijaykerb
Offline Send Email
May 30, 2007
5:56 pm
444
And Lisp will still be around 100 years from now because its 7 magic axioms are like a law of nature. Java won't be around 100 years from now, if the past 50...
Thomas Elam
tomelam
Offline Send Email
May 31, 2007
5:59 pm
446
"Programmer Job Qualifications. You should have extensive experience coding in languages including C/C++, javascript, and java." ... No Thanks. "Knowledge of...
sanjay.pande
Offline Send Email
Jul 12, 2007
2:47 am
447
Alok, I would also like to know why, since you say you want hackers, are you telling what languages they have to use? Are you the bigger hacker? I have created...
Thomas Elam
tomelam
Offline Send Email
Jul 12, 2007
4:10 am
448
Hi I need to implement a macro similar to the return statement in C. For example, if I call (return nil) inside a function named foo, it should translate to...
Gautham Ganapathy
gauthamg123
Offline Send Email
Aug 21, 2007
2:28 pm
449
... Something like this: http://www.lisp.org/HyperSpec/Body/mac_return.html -- Roshan Mathews...
Roshan Mathews
roshmathews
Offline Send Email
Aug 22, 2007
6:45 am
450
... ok. i assumed that return had to be used with block. didn't see the Notes section Thanks and regards Gautham...
Gautham Ganapathy
gauthamg123
Offline Send Email
Aug 22, 2007
1:18 pm
451
... This can be done by the following macro: (defmacro xreturn(x) (block nil (return x))) Hope this solves the problem. Thanks Samik ... Once upon a time there...
samik chakraborty
samik_126
Offline Send Email
Sep 5, 2007
5:15 am
452
... This can be done by the following macro: (defmacro xreturn(x) (block nil (return x))) Hope this solves the problem. Thanks Samik ... Download prohibited?...
samik chakraborty
samik_126
Offline Send Email
Sep 5, 2007
10:21 am
453
Hi all, I have joined this group and am very new to the LISP programming. Q 1) I want to know how can i call any function? I am using LispWorking as a...
pramod shinde
prmdshinde
Offline Send Email
Sep 10, 2007
1:03 am
454
Hi all, I have joined this group and am very new to the LISP programming. Q 1) I want to know how can i call any function? I am using LispWorks as a...
pramod shinde
prmdshinde
Offline Send Email
Sep 10, 2007
1:11 am
455
With all due respect: RTFM. There are any number of lisp tutorials which should see you past newbie-hood. --chandra...
Chandrashekara K A
chandra_ka
Offline Send Email
Sep 10, 2007
4:30 am
456
Hi Promod, Here are the answers to the best of my knowledge: Q1. Yes you can call a function from any REPL without any problem. I use SBCL+XEmacs in windows...
samik chakraborty
samik_126
Offline Send Email
Sep 10, 2007
4:30 am
457
... Did you evaluate that function definition? Maybe you can try typing the function definition in at the prompt and then calling it. If that works, then it...
Roshan Mathews
roshmathews
Offline Send Email
Sep 10, 2007
7:28 am
458
Thanks samik and chandrashekhara!! Pramod K.Shinde ... From: samik chakraborty <samik_126@...> To: bangalore-lisp@yahoogroups.com Sent: Sunday,...
pramod shinde
prmdshinde
Offline Send Email
Sep 11, 2007
1:03 am
459
Hi all , Can anybody write the recursive function LISP function that will reverse elements of the list(please don't use built-in reverse function).? I have...
pramod shinde
prmdshinde
Offline Send Email
Sep 16, 2007
9:22 pm
460
Hi Pramod, Sorry to spell your name incorrect last time. The following code uses a recursive call to do a reverse of a list only problem is the tr variable it...
samik chakraborty
samik_126
Offline Send Email
Sep 17, 2007
7:12 am
461
Hi Promode, This is an easy way of doing a reverse without using car, cdr or ca*d*r family how ever it does not use any recursion. You can think about it. But...
samik chakraborty
samik_126
Offline Send Email
Sep 17, 2007
7:13 am
462
check the following code .. (defun rev(a) (if (or (null a) (equal a '())) '() (append (rev (cdr a)) (list (first a))))) -- ... Sometimes I wish I was a little...
Rajaram Gaunker
zimbabao
Online Now Send Email
Sep 17, 2007
11:51 am
463
Thanks it works..., Is it the same way by which i can find mirror image of the list. ... Expected result is : (((e d)c)(b a)) Pramod K.Shinde ... From: samik...
pramod shinde
prmdshinde
Offline Send Email
Sep 17, 2007
9:33 pm
464
Thanks samik, i m able to do the reverse function: (defun rev (x) (if (endp x) nil (append (rev (cdr x)) (list (car x))))) ... (d a c b a) Pramod K.Shinde ... ...
pramod shinde
prmdshinde
Offline Send Email
Sep 18, 2007
3:53 am
465
... See what happens when I try to compile your MY-REVERSE - ; While compiling MY-REVERSE: Warning: Free reference to undeclared variable TEMP-RET assumed...
Chaitanya Gupta
icehotcg
Offline Send Email
Sep 18, 2007
5:18 am
466
Thanks a lot to all, This mail-chain has produced at least three ways of doing the same thing and all of them are different and elegant. Great going guys......
samik chakraborty
samik_126
Offline Send Email
Sep 18, 2007
6:58 am
Messages 436 - 466 of 501   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help