Not Too Active Huh?
-
- Posts: 8
- Joined: Mon Jan 08, 2018 3:32 am
Not Too Active Huh?
So, I just noticed that many of the "Latest Posts" are around 2015-2016, with some going back to 2012 (and before)!
Re: Not Too Active Huh?
That's because Lisp isn't very wide spread used as lets say Python. Also "Lisp" is fragmented in several dialects too.
I for myself use Racket and Common Lisp for side projects now and seeked only in the beginning for help in forums. That settled a bit and I think I'm not alone with it.
Happy coding!
I for myself use Racket and Common Lisp for side projects now and seeked only in the beginning for help in forums. That settled a bit and I think I'm not alone with it.
Happy coding!
Re: Not Too Active Huh?
Like the Algol community isn't fragmented.. Pascal, Java, C#, C, C++, Python, Ruby, Perl, PHP, JavaScript.. I haven't seem them unite but focus on their own dialect. Kind of like the Lisp community.gekkonier wrote:That's because Lisp isn't very wide spread used as lets say Python. Also "Lisp" is fragmented in several dialects too.
...
The main difference is that the algol community is much larger than the lisp community and it seems like there are more lisp action on Stack Overflow than in this forum.
I'm the author of two useless languages that uses BF as target machine.
Currently I'm planning a Scheme compiler :p
Currently I'm planning a Scheme compiler :p
-
- Posts: 8
- Joined: Mon Jan 08, 2018 3:32 am
Re: Not Too Active Huh?
This forum looks like it was really lively, lots of posts and replies, between 2010-2015 and then suddenly it just drops off; some of the "Most Active Posts" and "Most Recent" are from 2015 !!
I always seem to come to these things late.
Well, I have an 80+ member group on Facebook that is specifically for ZIL so we have a nice base but its always great to have a forum like this to communicate with the non-Facebook folk.
I always seem to come to these things late.
Well, I have an 80+ member group on Facebook that is specifically for ZIL so we have a nice base but its always great to have a forum like this to communicate with the non-Facebook folk.
Re: Not Too Active Huh?
I noticed not only such forum's as this here are left places.
It also happened to a german forum for ruby which was once crowded.
Maybe a forum isn't that interesting anymore in times of facebook, reddit & co.
It also happened to a german forum for ruby which was once crowded.
Maybe a forum isn't that interesting anymore in times of facebook, reddit & co.
Re: Not Too Active Huh?
Many of the forums I'm a member have similar issues. It's not that Lisp has become obsolete
Facebook probably would like to control all your messaging needs, but their app has its pros and cons. I learned that the hard way when they suggested I use facebook instead of mail. The interface was horrible.
Perhaps I'm getting old
Facebook probably would like to control all your messaging needs, but their app has its pros and cons. I learned that the hard way when they suggested I use facebook instead of mail. The interface was horrible.
Perhaps I'm getting old
I'm the author of two useless languages that uses BF as target machine.
Currently I'm planning a Scheme compiler :p
Currently I'm planning a Scheme compiler :p
-
- Posts: 8
- Joined: Mon Jan 08, 2018 3:32 am
Re: Not Too Active Huh?
I have to be honest, i'm a fan of Facebook. For me it works. Don't get me wrong I think i'd prefer to use something like this forum but if you want to mingle with the crowd then you have to follow the crowd, and the crowd are on FB these days.
Re: Not Too Active Huh?
You may be getting old Sylwester, but their interface was and is horrible lol. I can't get used to it either.
My browsing experience improved with this VPN by a lot.
Re: Not Too Active Huh?
Moar Facebook integration with Common Lisp!
Now you can see all your Facebook friends in the REPL:
Code: Select all
(defun facebook ()
(loop :for n :from 0 :to (+ 5 (random 5))
:collect (list (intern (format nil "~a~a~a"
(aref #(+ - *) (random 3))
(aref #(\. _) (random 2))
(aref #(+ - *) (random 3)))))))
Code: Select all
CL-USER> (facebook)
((+.-) (+.+) (+_*) (+.-) (-_-) (*_-) (*.+) (*_*) (*.-))