active questions tagged erlang - Stack Overflowmost recent 30 from stackoverflow.com2009-11-22T10:44:07Zhttp://stackoverflow.com/feeds/tag/erlanghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1777778/convert-clause-to-a-fun1Convert clause to a Funbugbug2009-11-22T04:01:35Z2009-11-22T07:43:03Z
<p>How to represent this clause in one line using Fun.</p>
<pre><code>perms([]) -> [[]];
perms(L) -> [[H|T] || H <- L, T <- perms(L--[H])].
</code></pre>
http://stackoverflow.com/questions/1777853/erlang-ets-tables-between-nodes0Erlang Ets tables between Nodesunknown (google)2009-11-22T04:55:44Z2009-11-22T07:26:55Z
<p>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 the code at all. I was wondering if there's a similar way with ets tables?</p>
<p>Ideally it'd be nice to be able to have several machines running with exactly the same mnesia and ets data, without having to convert my ets tables into mnesia tables. (And thus rewriting a good amount of code.) </p>
<p>One though I had was doing an rpc:call on the ets tables for each node, but I was unsure about the impact this would have on performance. </p>
<p>If anyone has any answers please let me know. Thanks in advance!</p>
http://stackoverflow.com/questions/1601893/why-are-c-c-and-lisp-so-prevalent-in-embedded-devices-and-robots8Why are C, C++, and LISP so prevalent in embedded devices and robots?David2009-10-21T16:10:20Z2009-11-21T21:15:06Z
<p>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? </p>
<p>For example, <a href="http://www.erlang.org/" rel="nofollow">Erlang</a> would seem particularly well-suited to robotic applications, since it makes concurrent programming easier and allows hot swapping of code. <a href="http://www.python.org/" rel="nofollow">Python</a> would seem to be useful, if for no other reason than its support of multiple programming paradigms. I'm even surprised that Java hasn't made a foray into general robotic programming.</p>
<p>I'm sure one argument would be, "Some newer languages are interpreted, not compiled" - implying that compiled languages are quicker and use fewer computational resources. Is this still the case, in a time when we can put a Java Virtual Machine on a cell phone or a SunSpot? (and isn't LISP interpreted anyway?)</p>
http://stackoverflow.com/questions/1463470/interfacing-erlang-application-with-php2interfacing erlang application with phppablo2009-09-23T01:12:53Z2009-11-21T12:28:51Z
<p>Hi,</p>
<p>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 the result.</p>
<p>I've found PHP/Erlang and over PHP modules but I can't install a PHP module on this server, I can only use PHP code.</p>
<p>The only way I know to solve it is run an Erlang web server locally that the PHP will be able to talk to.</p>
<p>Is there a better way to solve it?
If using a httpd server is the best way, what Erlang server should I use?
It should be as light as possible and doesn't need features like SSL and doesn't need to handle large load.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1772316/erlang-and-java-interfacing0Erlang and Java interfacingAayush Puri2009-11-20T18:10:06Z2009-11-21T07:05:46Z
<p>I am particularly interested in knowing the performance implications of the Erlang component when doing this kind of interfacing.</p>
<p>After learning about Erlang I thought that it might be useful to code certain components of an application in Erlang where I need to use the high concurrency and throughput that it provides. Has any one tried/seen this kind of scenario before? What has been the experience so far?</p>
http://stackoverflow.com/questions/1774315/vim-settings-for-erlang2Vim settings for Erlanghyperboreean2009-11-21T02:28:57Z2009-11-21T02:31:35Z
<p>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.</p>
<p>Is there something outhere called vim-erlang, as in vim-python or something?</p>
http://stackoverflow.com/questions/1772104/how-far-should-i-take-referential-transparency2How far should I take referential transparency?Abtin Forouzandeh2009-11-20T17:35:57Z2009-11-21T01:04:35Z
<p>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.</p>
<p>The problem is, all database access is external state. This means that any method that hits the database is no longer referentially transparent.</p>
<p>Lets say I have a user object in a database and some functions that deal with authentication.</p>
<p>Referentially opaque functions might look like:</p>
<pre><code>handle_web_request(http_info) ->
is_authorized_user(http_info.userid),
...
%referentially opaque
is_authorized_user(userid) ->
User = get_user_from_db(userid),
User.is_authorized.
%referentially opaque
lots_of_other_functions(that_are_similar) ->
db_access(),
foo.
</code></pre>
<p>Referentially transparency requires that I minimize the amount of referentially opaque code, so the caller must get the object from the database and pass that in as an argument to a function:</p>
<pre><code>handle_web_request(http_info) ->
User = get_user(http_info.userid),
is_authorized_user(User),
...
%referentially opaque
get_user(userid) ->
get_user_from_db(userid).
%referentially transparent
is_authorized(userobj) ->
userobj.is_authorized.
%referentially transparent
lots_of_other_functions(that_are_similar) ->
foo.
</code></pre>
<p>The code above is obviously not production code - it is made up purely for illustrative purposes.</p>
<p>I don't want to get sucked into dogma. Do the benefits of referentially transparent code (like provable unit testing) justify the less friendly interface? Just how far should I go in the pursuit of referentially transparancy?</p>
http://stackoverflow.com/questions/1768404/how-big-can-erlang-dets-be-and-what-to-do-if-its-too-small1How big can Erlang DETS be and what to do if its too small?Arthur Ulfeldt2009-11-20T04:49:06Z2009-11-20T21:56:11Z
<p>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:</p>
<ul>
<li>just how big the total size of the binaries in the table can be. </li>
<li>how big each entry can be </li>
<li><b>what to do if the answer to the first question is less than 100G</b></li>
</ul>
http://stackoverflow.com/questions/1729705/accessviolation-when-calling-unmanaged-dll0AccessViolation when calling unmanaged dllParalife2009-11-13T14:54:36Z2009-11-20T09:12:35Z
<p>When calling an unmanaged Dll from a c# application I get an <code>AccessViolationException</code>. The strange thing is that the exported function has no arguments, so the problem is not in the Marshalling of data. The function gets no argument and just returns an integer. Also note that calling convention is not an issue. An identical function with the same zero arguments and integer return value (but different name) works just fine. What are the remaining candidate reasons that such a call could cause this exception considering the fact that marshalling and calling convention is ruled out? </p>
<p>UPDATE: The dll function is correct because if called from other unmanaged code through plain linking, then it works perfectly. </p>
<p>UPDATE 2: Everything is compiled and run on 32 bit. I tried Win XP SP2 and Vista. Here is an interesting fact: On Vista Systems it works like a charm. On XP it fails.</p>
<p>UPDATE 3: I didnt get the source code but I learned what essentially this dll does, so i tried to reproduce the problem with my own dll. Here is the story: The original dll is some kind of a wrapper to ei.lib (Erlang's c interface library). It exports some helper funcs. So to reproduce the problem I have made a wrapper dll around ei.lib which exports only one function, namely "test()". I did that so I wouldnt mess with marshalling and stuff. I wanted just to test an initialization, connecting and sending a message. So this test() func of my dll just calls <code>ei_connect_init()</code>, then <code>ei_connect()</code> and finaly <code>ei_reg_send()</code>, with arguments hardcoded inside. The problem is that if I call this dll and use the test() function from another unmanaged code, it works ok. Message is sent. But when I call it from c# through DllImport then it works only on Vista. Not on XP. On XP it fails with a AccessViolationException on the .net layer. I ve tried to trace down the problem and I see that from inside my dll, any call to <code>ei_connect()</code>, or any attempt to read <code>erl_errno</code> (these are defined in ei.lib) when running on XP and being called by managed code result in trying to read or write protected memory so the app crashes. It cant be something trivial since it works on Vista and it works when called by unmanaged code. </p>
http://stackoverflow.com/questions/1768859/erlang-building-issue-of-not-finding-ncurses-on-solaris-102Erlang: Building Issue of not finding Ncurses on Solaris 10weismat2009-11-20T07:14:40Z2009-11-20T07:36:28Z
<p>I am trying to build Erlang on Solaris 10. The build process fails with the message that it can not find libncurses.so.5.<br>
I have installed libncurses from sunfreeware.com, which I have build from scratch and has installed itself in /usr/local/lib/.<br>
I have tried to set LDFLAGS with -L/usr/local/lib/ but have still had no luck.
What am I missing so that make picks up the library?<br>
I am using GNU Make 3.81 and GCC 3.4.6.</p>
http://stackoverflow.com/questions/1700786/which-erlang-implementation-of-openid-should-i-use-if-any2Which Erlang implementation of OpenId should I use, if any?Roberto Aloi2009-11-09T12:46:23Z2009-11-19T23:06:58Z
<p>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.</p>
<p><a href="http://code.google.com/p/erlopenid/" rel="nofollow">http://code.google.com/p/erlopenid/</a></p>
<p>Any hint or suggestion on what should I use?</p>
http://stackoverflow.com/questions/1765568/init-d-script-for-a-mochiweb-app-1init.d script for a mochiweb apppablo2009-11-19T18:37:47Z2009-11-19T18:37:47Z
<p>Hi,</p>
<p>Anyone has an init.d script for a mochiweb application on ubuntu to share?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1419187/apple-push-notification-in-erlang-or-improved-in-ruby2Apple Push Notification in Erlang (or improved in Ruby?)unknown (google)2009-09-14T00:14:36Z2009-11-19T18:11:59Z
<p>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 have any code that they could help me with? </p>
<p>Here's my Ruby code. One thing I do not like about this current implementation is that it does not seem to stay connected - it disconnects 2-3 times a day, and it seems after I reconnect that the first push will not go through: </p>
<pre><code>context = OpenSSL::SSL::SSLContext.new
context.cert = OpenSSL::X509::Certificate.new(File.read(cert))
context.key = OpenSSL::PKey::RSA.new(File.read(cert))
def connect_sockets(server, context)
sock = TCPSocket.new(server, 2195)
ssl = OpenSSL::SSL::SSLSocket.new(sock,context)
ssl.connect
return sock, ssl
end
sock, ssl = connect_sockets(server, context) # this is called to initially connect and also reconnect whenever disconnected.
</code></pre>
<p>If Erlang Push isn't doable then I wouldn't mind sticking to my Ruby one as long as I can keep my connections alive, and perhaps supervise it through Erlang. Does anyone know if any of this is possible? </p>
http://stackoverflow.com/questions/1759097/passing-events-from-erlang-to-clojure5passing events from erlang to ClojureArthur Ulfeldt2009-11-18T21:07:15Z2009-11-18T23:09:29Z
<p>I'm looking for a way to pass events back and forth between Clojure and erlang.</p>
<ul>
<li>has someone done this before?</li>
<li>how should I encode the (immutable) messages in a flaxable general way?</li>
<li>Should IPC be used for this? what sort?</li>
<li>where has this gone wrong for you in the past?</li>
</ul>
http://stackoverflow.com/questions/1757171/how-to-send-a-push-notification-using-erlang2How to send a push notification using Erlang?raz0r2009-11-18T16:17:12Z2009-11-18T17:57:20Z
<p>I'm trying to send a push notification to APNs using Erlang.
This is the code I came up with so far:</p>
<pre><code>-module(apnstest2).
-export([connect/0]).
connect() ->
application:start(ssl),
ssl:seed("someseedstring"),
Address = "gateway.sandbox.push.apple.com",
Port = 2195,
Cert = "/path/to/Certificate.pem",
Key = "/path/to/Key.unenc.pem",
Options = [{certfile, Cert}, {keyfile, Key}, {mode, binary}],
Timeout = 1000,
{ok, Socket} = ssl:connect(Address, Port, Options, Timeout),
Token = "195ec05a962b24954693c0b638b6216579a0d1d74b3e1c6f534c6f8fd0d50d03",
Payload = "{\"aps\":{\"alert\":\"Just testing.\",\"sound\":\"chime\", \"badge\":10}}",
TokenLength = length(Token),
PayloadLength = length(Payload),
Packet = [<<0:8, TokenLength, Token, PayloadLength, Payload>>],
ssl:send(Socket, list_to_binary(Packet)),
ssl:close(Socket).
</code></pre>
<p>The code doesn't take advantage of Erlang's concurrency but is just a prototype. I only want to test if I can send the push in the most simple way.</p>
<p>I think the problem is in the packet being sent to the APNs.
This is the binary format of a push notification:</p>
<p><img src="http://developer.apple.com/IPhone/library/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Art/aps%5Fprovider%5Fbinary.jpg" alt="alt text"></p>
<p>How should I create such a packet in Erlang?
Could someone please take a look at my code and tell me where the problem is?<br />
Also I used Erlang's SSL application to create the connection and send the data and I don't know if this is the problem or the packet.<br />
Thanks!</p>
http://stackoverflow.com/questions/1750588/what-are-the-differences-between-the-erlang-web-gateway-interface-ewgi-and-webm4What are the differences between the Erlang Web Gateway Interface (EWGI) and Webmachine?Ben Ahlan2009-11-17T17:49:00Z2009-11-17T18:23:01Z
<p>Both <a href="http://code.google.com/p/ewgi/" rel="nofollow">EWGI</a> and <a href="http://bitbucket.org/justin/webmachine/wiki/Home" rel="nofollow">webmachine</a> provide abstractions of HTTP in Erlang. I would like to know what the key conceptual differences are in their approach?</p>
http://stackoverflow.com/questions/1746257/how-to-send-multicast-messages-and-reuse-a-port-in-erlang2How to send multicast messages and reuse a port in Erlang?fuzzy lollipop2009-11-17T02:38:32Z2009-11-17T14:33:27Z
<p>I have gotten a good start on my program, my first REAL Erlang program.
I have it listening for messages, reading them and parsing them. I also have it sending them.
The one little thing that is bothering me is I can't SEND on Port 5353, I have tried everything.
All the other applications on my machine can listen AND send on port 5353, SubEthaEdit, iTunes, iChat.
They all report Port: 5353 when sending multicast messages.
I really want my application to play nice and do the same thing, send on Port 5353.
Here is my module as it stands now.</p>
<pre><code>-module(zeroconf).
-include("zeroconf.hrl").
-export([open/0,start/0]).
-export([stop/1,receiver/0]).
-export([send/1]).
-define(ADDR, {224,0,0,251}).
-define(PORT, 5353).
send(Domain) ->
{ok,S} = gen_udp:open(0,[{broadcast,true}]), % I really want this Port to be 5353 :-(
%{ok,S} = gen_udp:open(?PORT,[{reuseaddr,true}, {ip,?ADDR}, {broadcast,true}, {multicast_ttl,4}, {multicast_loop,false}, binary]), % this doesn't complain or throw errors but it also doesn't work :-(
P = #dns_rec{header=#dns_header{},qdlist=[#dns_query{domain=Domain,type=ptr,class=in}]},
gen_udp:send(S,?ADDR,?PORT,inet_dns:encode(P)),
gen_udp:close(S).
open() ->
{ok,S} = gen_udp:open(?PORT,[{reuseaddr,true}, {ip,?ADDR}, {multicast_ttl,4}, {multicast_loop,false}, binary]),
inet:setopts(S,[{add_membership,{?ADDR,{0,0,0,0}}}]),
S.
close(S) -> gen_udp:close(S).
start() ->
S=open(),
Pid=spawn(?MODULE,receiver,[]),
gen_udp:controlling_process(S,Pid),
{S,Pid}.
stop({S,Pid}) ->
close(S),
Pid ! stop.
receiver() ->
receive
{udp, _Socket, IP, InPortNo, Packet} ->
io:format("~n~nFrom: ~p~nPort: ~p~nData: ~p~n",[IP,InPortNo,inet_dns:decode(Packet)]),
receiver();
stop -> true;
AnythingElse -> io:format("RECEIVED: ~p~n",[AnythingElse]),
receiver()
end.
</code></pre>
<p>Here is what some output looks like.</p>
<p>This is a QUERY from SubEthaEdit looking for other instances on the local network, notice that it says Port: 5353</p>
<pre><code>From: {192,168,0,105}
Port: 5353
Data: {ok,{dns_rec,{dns_header,0,true,'query',true,false,false,false,false,0},
[],
[{dns_rr,"_see._tcp.local",ptr,in,0,0,
"jhr@Blackintosh._see._tcp.local",undefined,[],
false}],
[],[]}}
</code></pre>
<p>Now here is a QUERY from my module looking for instances of iTunes on the local network, notice it says Port: 59795
With the code the way it is now, that port is random. I really want it to be 5353.</p>
<pre><code>From: {192,168,0,105}
Port: 59795
Data: {ok,{dns_rec,{dns_header,0,false,'query',false,false,false,false,false,
0},
[{dns_query,"_daap._tcp.local",ptr,in}],
[],[],[]}}
</code></pre>
<p>Does anyone have any arcane insight in to UDP multicast at all?</p>
http://stackoverflow.com/questions/1592943/jinterface-otpnode-initialization-name-or-sname-flag2Jinterface OtpNode initialization -name or -sname flagParalife2009-10-20T07:11:29Z2009-11-17T09:57:07Z
<p>When creating an OtpNode instance what kind of node is this? Is it like an erl -sname xxx or like an elr -name xxx ?</p>
http://stackoverflow.com/questions/1740297/how-do-i-build-a-dns-query-record-in-erlang1How do I build a DNS Query record in Erlang?fuzzy lollipop2009-11-16T05:47:57Z2009-11-16T22:31:24Z
<p>I am building a native Bonjour / Zeroconf library and need to build DNS query records to broadcast off to the other machines. I have tried looking thru the Erlang source code but as I am relatively new to Erlang it gets kind of dense down the bowels of all the inet_XXX.erl and .hrl files. I have a listener that works for receiving and parsing the DNS record payloads, I just can't figure out how to create the query records. What I really need to know is what I need to pass into inet_dns:encode() to get a binary I can send out. Here is what I am trying to do.</p>
<pre><code>{ok,P} = inet_dns:encode(#dns_query{domain="_daap._tcp.local",type=ptr,class=in})
</code></pre>
<p>here is the error I am getting</p>
<pre><code>10> test:send().
** exception error: {badrecord,dns_rec}
in function inet_dns:encode/1
in call from test:send/0
11>
</code></pre>
http://stackoverflow.com/questions/1735055/emacs-23-erlang-distel1Emacs 23 + Erlang + DistelAndrzej Śliwa2009-11-14T18:03:01Z2009-11-16T20:46:59Z
<p>Where I can find current example of configuration and using Distel with Emacs 23 (on Mac Snow Leaoprd). I have problem with debugging (interpret mode), I cant mark brakepoint.</p>
<p>If anyone have working configuration of distel on emacs 23, please share with me.</p>
http://stackoverflow.com/questions/78826/erlang-multicast3Erlang MulticastSargun Dhillon2008-09-17T01:06:59Z2009-11-16T04:36:03Z
<p>How do you use gen_udp in Erlang to do multicasting? I know its in the code, there is just no documentation behind it. Sending out data is obvious and simple. I was wondering on how to add memberships. Not only adding memberships at start-up, but adding memberships while running would be useful too.</p>
http://stackoverflow.com/questions/646833/flash-amf3-with-reference-tables4Flash: AMF3 with reference tables?Yurii Rashkovskii2009-03-14T22:15:05Z2009-11-16T03:35:08Z
<p><a href="http://download.macromedia.com/pub/labs/amf/amf3%5Fspec%5F121207.pdf" rel="nofollow">AMF3 specification </a> defines use of so called "reference tables" (see Section 2.2 of this specification).</p>
<p>I implemented this behavior in my AMF3 encoder/decoder I developed in Erlang, but being not very experienced with Flash API, I can hardly find how can I easily force Flash to use these reference tables when serializing objects to AMF3; for example if I use ByteArray, it seems that it just repeats full object encodings</p>
<pre><code> var ba:ByteArray = new ByteArray();
ba.writeObject("some string1");
ba.writeObject("some string1");
# =>
# <<6,25,115,111,109,101,32,115,116,114,105,110,103,49,
# 6,25,115,111,109,101,32,115,116,114,105,110,103,49>>
</code></pre>
<p>(which is clearly a repetition).</p>
<p>However, if these two strings are in a one single writeObject call, it does seem to use references:</p>
<pre><code> ba.writeObject(["some string1", "some string1"]);
# => <<9,5,1,6,25,115,111,109,101,32,115,116,114,105,110,103,49,6,0>>
</code></pre>
<p>Socket seems to behave the same way.</p>
<p>So, can I make use of reference tables in Flash code? (provided I <strong>might</strong> have a non-standard protocol between Flash application and server )</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1723557/how-to-enable-active-sockets-in-a-mochiweb-application1How to enable active sockets in a Mochiweb application?Shayne2009-11-12T16:34:28Z2009-11-12T16:34:28Z
<p>Does anyone know how to enable active instead of passive sockets in a Mochiweb application. Specifically, I am trying to adapt <a href="http://www.metabrew.com/article/a-million-user-comet-application-with-mochiweb-part-2" rel="nofollow">http://www.metabrew.com/article/a-million-user-comet-application-with-mochiweb-part-2</a> so that when a client disconnects, it will immediately "logout".</p>
<p>I have tried setting:</p>
<pre><code>start(Options) ->
{DocRoot, Options1} = get_option(docroot, Options),
Loop = fun (Req) ->
Socket = Req:get(socket),
inet:setopts(Socket, [{active, once}]),
?MODULE:loop(Req, DocRoot)
end,
</code></pre>
<p>but that seems to not be working. I still only get updates in my <code>receive</code> after I am sent a new message.</p>
<p>Thoughts? Thanks!</p>
http://stackoverflow.com/questions/1582818/what-tool-do-you-use-to-build-erlang-program5What tool do you use to build erlang program?sinnus2009-10-17T17:59:45Z2009-11-12T16:30:48Z
<p>Emake, makiefile or...?
Thank you!</p>
http://stackoverflow.com/questions/659242/whats-the-erlang-haskell-job-market-like-in-the-u-s12What's the Erlang/Haskell job market like in the U.S.?Krystof2009-03-18T17:13:00Z2009-11-12T01:49:24Z
<p>I've heard that Telecoms are the big source of Erlang jobs but I'm not sure how much of a market there is. How likely is it that someone could find a job in Erlang/Haskell if they decided to learn it? In my case I have a lot of programming experience in Java but am tired of Java and want to try something different.</p>
http://stackoverflow.com/questions/1717157/erlang-hooks-vs-genevent2Erlang: Hooks vs gen_eventsinnus2009-11-11T18:22:15Z2009-11-11T22:32:43Z
<p>Question is why some applications (like ejabberd) use own hooks module (e.g. ejabberd_hooks.erl) instead of gen_event?</p>
http://stackoverflow.com/questions/1709384/tsung-erlang-function-dynvars-escaping-quotes2Tsung Erlang function (dynvars) - escaping quotesscriptrunner2009-11-10T16:44:23Z2009-11-10T22:54:41Z
<p>New to Tsung and Erlan and have run into an issue I haven't been able to find answer to. I'm using erlang-mysql-driver in a Tsung dynvars Erlang function and I seem to be having a problem with escaped quotes.</p>
<p>I'd like to do something like this:</p>
<pre><code> <setdynvars sourcetype="eval"
code='fun({Pid,DynVars})->
mysql:start_link(p1, "localhost", "user", "pass", "db"),
Result = mysql:fetch(p1, "SELECT * FROM consumers WHERE first_name=\'Doonley\'") end.'>
<var name="myres" />
</setdynvars>
</code></pre>
<p>but I get a whitespace error:</p>
<pre><code>Douglas-Sparlings-MacBook-Pro:.tsung dsparling$ tsung start
Starting Tsung
"Log directory is: /Users/dsparling/.tsung/log/20091110-16:35"
3284- fatal: {whitespace_required_between_attributes}
["Config Error, aborting ! ",{fatal,{{whitespace_required_between_attributes},{file,"/Users/dsparling/.tsung/tsung.xml"},{line,72},{col,221}}}]
</code></pre>
<p>I actually need to use a variable for the select, but I'm not sure of the syntax. Something like the following is what I'm looking for:</p>
<pre><code> <setdynvars sourcetype="eval"
code='fun({Pid,DynVars})->
Val='Doonley",
mysql:start_link(p1, "localhost", "user", "pass", "db"),
Result = mysql:fetch(p1, "SELECT * FROM consumers WHERE first_name=?", Val) end.'>
<var name="myres" />
</setdynvars>
</code></pre>
http://stackoverflow.com/questions/1273235/designing-for-ewgi-compatibility1Designing for EWGI compatibilityZed2009-08-13T16:53:59Z2009-11-10T16:27:21Z
<p>I'm trying to understand how one should design middlewares for <a href="http://code.google.com/p/ewgi/wiki/EWGISpecification" rel="nofollow">EWGI</a> compatibility. Given that there is no EWGI compliant web server yet, I can only ask for your opinion.</p>
<p>If I understand the spec. correctly, a middleware receives an #ewgi_context{} record as input, and returns another record of the same type.</p>
<p>Question is, is the middleware going to be called twice as in <a href="http://docs.djangoproject.com/en/dev/topics/http/middleware/" rel="nofollow">django</a>, or is it supposed to call the rest of the middlewares on its own recursively?</p>
<p>Also, is there any proposed way for a middleware to notify the rest of the middlewares that its result is supposedly the final response? (e.g. the file-serving middleware hit a file, so there is no point calling the view middleware). As the result of my view is a context record, how should the rest of the middlewares (or the server) figure out it is the final response?</p>
http://stackoverflow.com/questions/1708885/multiline-regular-expression-with-erlang-re-module2Multiline Regular Expression with Erlang re modulelht2009-11-10T15:40:46Z2009-11-10T16:07:08Z
<p>Hi,</p>
<p>Failed to get Erlang re work for multiline, please help!</p>
<pre><code>> re:run("hello,\nworld", "o,.*w", [multiline]).
nomatch
> re:run("hello,\nworld", "o,.*w", [multiline, {newline, lf}]).
nomatch
> {ok, MP} = re:compile("o,.*w", [multiline]).
{ok,{re_pattern,0,0,
<<69,82,67,80,55,0,0,0,2,0,0,0,7,0,0,0,0,0,0,0,111,0,
119,...>>}}
> re:run("hello,\nworld", MP).
nomatch
> re:run("hello,\nworld", ",\nw").
{match,[{5,3}]}
</code></pre>
http://stackoverflow.com/questions/1706747/what-is-the-bif-to-remove-an-item-from-a-list-3what is the BIF to remove an item from a list Haiyuan Zhang2009-11-10T09:49:05Z2009-11-10T12:57:05Z
<p>Hi Guys,</p>
<p>as title, thanks. </p>