1
vote
2answers
37 views
Convert clause to a Fun
How to represent this clause in one line using Fun.
perms([]) -> [[]];
perms(L) -> [[H|T] || H <- L, T <- perms(L--[H])].
0
votes
2answers
16 views
Erlang Ets tables between Nodes
I've got an ejabberd server with a good amount of custom modules running. I have several mnesia tables and I know these can be easily copied between nodes without any change to th …
8
votes
14answers
613 views
Why are C, C++, and LISP so prevalent in embedded devices and robots?
It seems that the software language skills most sought for embedded devices and robots are C, C++, and LISP. Why haven't more recent languages made inroads into these applications …
2
votes
5answers
194 views
interfacing erlang application with php
Hi,
I have a website built with PHP.
I have an Erlang application running as a daemon on the same server.
I need to call functions on the Erlang application from PHP and get back …
0
votes
1answer
60 views
Erlang and Java interfacing
I am particularly interested in knowing the performance implications of the Erlang component when doing this kind of interfacing.
After learning about Erlang I thought that it mig …
2
votes
2answers
48 views
Vim settings for Erlang
Does anyone want to share their erlang vim settings? It seems I can't make it work at all and the worst part is that it doesn't auto-indent automatically.
Is there something outhe …
2
votes
2answers
92 views
How far should I take referential transparency?
I am building a website using erlang, mnesia, and webmachine. Most of the documentation I have read praises the virtues of having referentially transparent functions.
The problem …
1
vote
3answers
57 views
How big can Erlang DETS be and what to do if its too small?
All I need is a large persistent lookup table in Erlang and dets seems like just the thing though I need a definative answer to:
just how big the total size of the binaries in th …
0
votes
4answers
105 views
AccessViolation when calling unmanaged dll
When calling an unmanaged Dll from a c# application I get an AccessViolationException. The strange thing is that the exported function has no arguments, so the problem is not in th …
2
votes
1answer
29 views
Erlang: Building Issue of not finding Ncurses on Solaris 10
I am trying to build Erlang on Solaris 10. The build process fails with the message that it can not find libncurses.so.5.
I have installed libncurses from sunfreeware.com, which I …
2
votes
1answer
82 views
Which Erlang implementation of OpenId should I use, if any?
I'd need an Erlang implementation of the OpenId protocol.
I found the following, but it seems to be a project on its early stage.
http://code.google.com/p/erlopenid/
Any hint or …
-1
votes
0answers
40 views
init.d script for a mochiweb app
Hi,
Anyone has an init.d script for a mochiweb application on ubuntu to share?
Thanks
2
votes
3answers
275 views
Apple Push Notification in Erlang (or improved in Ruby?)
I currently have an Apple Push Notification running on my server in Ruby. I'd like to get one going in Erlang as I'd like to use a supervisor to keep watch over it. Does anyone h …
5
votes
2answers
80 views
passing events from erlang to Clojure
I'm looking for a way to pass events back and forth between Clojure and erlang.
has someone done this before?
how should I encode the (immutable) messages in a flaxable general w …
2
votes
2answers
75 views
How to send a push notification using Erlang?
I'm trying to send a push notification to APNs using Erlang.
This is the code I came up with so far:
-module(apnstest2).
-export([connect/0]).
connect() ->
application:sta …
