chunk_id
large_stringlengths
7
11
question_id
large_stringlengths
4
8
language
large_stringclasses
1 value
chunk_index
int64
0
7
chunk_text
large_stringlengths
163
2.82k
sparse_text
large_stringlengths
129
3.52k
dense_vector
listlengths
3.58k
3.58k
sparse_indices
listlengths
10
234
sparse_values
listlengths
10
234
export_source
large_stringclasses
1 value
36930678_c0
36930678
erlang
0
Title: Using cowboy_static to serve gzip compressed files Problem title: Using cowboy_static to serve gzip compressed files Tags: erlang, cowboy Problem: Using cowboy_static to serve gzip compressed files We are using cowboy version 1.0.3 and we would like to serve compressed gzip versions of our files. We set the flag...
Using cowboy_static to serve gzip compressed files Using cowboy_static to serve gzip compressed files erlang cowboy Using cowboy_static Using cowboy_static to serve gzip compressed files We are using cowboy version 1.0.3 and we would like to serve compressed gzip versions of our files. We set the flag as noted in the d...
[ -0.0205078125, 0.00201416015625, 0.0308837890625, 0.007080078125, -0.0128173828125, 0.0201416015625, -0.01202392578125, 0.001251220703125, 0.0081787109375, -0.03369140625, -0.01318359375, 0.000820159912109375, 0.0113525390625, 0.030029296875, -0.00396728515625, 0.00860595703125, -0.0...
[ 345, 552, 434, 30885, 201939, 21265, 50836, 375, 11856, 102158, 706, 72, 3066, 17368, 11389, 170179, 1884, 5423, 49938, 209806, 60322, 149976, 88996, 959, 8035, 10002, 35863, 132283 ]
[ 0.001190185546875, 0.050933837890625, 0.11279296875, 0.2294921875, 0.2239990234375, 0.1458740234375, 0.1859130859375, 0.088134765625, 0.1759033203125, 0.1458740234375, 0.0111083984375, 0.054962158203125, 0.2066650390625, 0.0350341796875, 0.06494140625, 0.1104736328125, 0.016708374023...
embed
22189296_c0
22189296
erlang
0
Title: List accumulators in Erlang Problem title: List accumulators in Erlang Tags: erlang Problem: List accumulators in Erlang Here is the code I have found while reading Joe's Erlang book. But I am unable to understand. odds_and_evens_acc(L) -> odds_and_evens_acc(L, [], []). odds_and_evens_acc([H|T], Odds, Evens) -> ...
List accumulators in Erlang List accumulators in Erlang erlang List Erlang odds_and_evens_acc Odds Evens List accumulators in Erlang Here is the code I have found while reading Joe's Erlang book. But I am unable to understand. Please help me on this.
[ -0.00311279296875, 0.032958984375, -0.005645751953125, -0.007659912109375, -0.0216064453125, 0.02783203125, -0.0260009765625, 0.01312255859375, 0.0113525390625, -0.0172119140625, 0.03466796875, -0.00860595703125, 0.02294921875, 0.0244140625, 0.01123046875, 0.01531982421875, -0.007781...
[ 32036, 183278, 22230, 1004, 3066, 23, 72, 103044, 2940, 26301, 7, 10060, 67948, 31267, 18151, 14037, 16454, 40207, 12877, 2886, 28219, 4358 ]
[ 0.1458740234375, 0.1942138671875, 0.1639404296875, 0.13623046875, 0.281494140625, 0.01531982421875, 0.0755615234375, 0.197021484375, 0.02386474609375, 0.1341552734375, 0.0040283203125, 0.08502197265625, 0.1884765625, 0.1590576171875, 0.1998291015625, 0.04998779296875, 0.0175170898437...
embed
76498421_c1
76498421
erlang
1
: data1 Why is this happening? If I call each send one by one, it works as expected, but not if submit these two as a single "command". Note : I've also tried waiting between connecting and sending because I read that there might be race conditions because of the gen_tcp:controlling_process() Code signals: Why, LSock, ...
: data1 Why is this happening? If I call each send one by one, it works as expected, but not if submit these two as a single "command". Note : I've also tried waiting between connecting and sending because I read that there might be race conditions because of the gen_tcp:controlling_process() Code signals: Why, LSock, ...
[ 0.005584716796875, 0.00946044921875, -0.0142822265625, 0.00518798828125, 0.009033203125, -0.0101318359375, 0.0234375, 0.00732421875, 0.016845703125, -0.040283203125, 0.0269775390625, -0.0006256103515625, -0.007476806640625, 0.0079345703125, 0.005523681640625, 0.01177978515625, 0.0090...
[ 2053, 418, 44084, 83, 903, 123087, 11782, 12638, 25379, 390, 1632, 442, 43240, 237, 84751, 959, 137447, 6097, 6626, 11001, 277, 12018, 37842, 89289, 17721, 37067, 214, 135834, 13648, 186, 45712, 27289, 9226, 121422, 81988, 2069, 63923, 28864,...
[ 0.171142578125, 0.1214599609375, 0.1141357421875, 0.048248291015625, 0.08575439453125, 0.117919921875, 0.1827392578125, 0.07354736328125, 0.1695556640625, 0.0582275390625, 0.07232666015625, 0.014190673828125, 0.1195068359375, 0.0171966552734375, 0.1019287109375, 0.06732177734375, 0.1...
embed
25258748_c0
25258748
erlang
0
Title: Port Erlang permutation function to Java 8 with lambda expressions and Streams Problem title: Port Erlang permutation function to Java 8 with lambda expressions and Streams Tags: erlang, java-8, java Problem: Port Erlang permutation function to Java 8 with lambda expressions and Streams Is it possible to write t...
Port Erlang permutation function to Java 8 with lambda expressions and Streams Port Erlang permutation function to Java 8 with lambda expressions and Streams erlang java-8 java Port Erlang Java Streams java-8 Port Erlang permutation function to Java 8 with lambda expressions and Streams Is it possible to write the foll...
[ -0.000732421875, 0.033203125, 0.0036468505859375, -0.0096435546875, -0.00146484375, 0.00311279296875, -0.022216796875, 0.00335693359375, 0.006622314453125, -0.03515625, 0.004791259765625, 0.0107421875, 0.02880859375, 0.018310546875, -0.017578125, 0.0107421875, -0.02294921875, -0.00...
[ 13791, 1004, 3066, 117, 561, 32354, 47, 41925, 382, 678, 21, 6492, 85, 125195, 115061, 72, 79, 330, 17376, 22062, 7722, 33022, 25632, 18151, 4734, 136, 75973, 32036, 142158, 3220, 80308, 908, 14311 ]
[ 0.140625, 0.146240234375, 0.2437744140625, 0.061737060546875, 0.125732421875, 0.08251953125, 0.0950927734375, 0.178466796875, 0.193603515625, 0.0750732421875, 0.033050537109375, 0.1396484375, 0.1104736328125, 0.1396484375, 0.15869140625, 0.060760498046875, 0.03631591796875, 0.09155...
embed
26171668_c0
26171668
erlang
0
Title: Erlang timer counter (timer:tc) rounding to nearest 1000? Problem title: Erlang timer counter (timer:tc) rounding to nearest 1000? Tags: erlang, parallel-processing, timer Problem: Erlang timer counter (timer:tc) rounding to nearest 1000? I am trying to time how long an execution takes. (I'm comparing times of a...
Erlang timer counter (timer:tc) rounding to nearest 1000? Erlang timer counter (timer:tc) rounding to nearest 1000? erlang parallel-processing timer Erlang timer:tc Erlang timer counter (timer:tc) rounding to nearest 1000? I am trying to time how long an execution takes. (I'm comparing times of an execution depending o...
[ 0.0125732421875, -0.0031890869140625, -0.016357421875, -0.0169677734375, 0.0115966796875, -0.00994873046875, -0.005889892578125, -0.01275634765625, -0.004241943359375, -0.0284423828125, -0.00128936767578125, 0.037353515625, 0.01458740234375, 0.0225830078125, 0.0086669921875, 0.00683593...
[ 1004, 3066, 21991, 105416, 137644, 18, 238, 68807, 47, 43573, 525, 4382, 72, 95103, 63923, 214, 31577, 1733, 4989, 71924, 1830, 51776, 37397, 20028, 9433, 5623, 7710, 12, 30646, 68163, 11522, 61689, 219, 149016, 5809, 22304 ]
[ 0.1239013671875, 0.2186279296875, 0.30078125, 0.2193603515625, 0.258544921875, 0.05535888671875, 0.10455322265625, 0.1484375, 0.041290283203125, 0.115478515625, 0.062744140625, 0.194580078125, 0.078369140625, 0.12109375, 0.064208984375, 0.016937255859375, 0.03326416015625, 0.162475...
embed
395433_c0
395433
erlang
0
Title: How to ensure fast startup times of mnesia Problem title: How to ensure fast startup times of mnesia Tags: erlang, mnesia Problem: How to ensure fast startup times of mnesia Erlang with mnesia/dets is famous for it slow startup times after a crash. Basically the same issue as with fsck on older filesystems. But ...
How to ensure fast startup times of mnesia How to ensure fast startup times of mnesia erlang mnesia How How to ensure fast startup times of mnesia Erlang with mnesia/dets is famous for it slow startup times after a crash. Basically the same issue as with fsck on older filesystems. But I also experience slow startup tim...
[ 0.017333984375, 0.0223388671875, 0.0164794921875, -0.0069580078125, -0.02001953125, -0.015869140625, -0.0184326171875, 0.006500244140625, -0.006866455078125, -0.05322265625, 0.0184326171875, 0.00164031982421875, -0.006195068359375, 0.01416015625, 0.01226806640625, 0.0137939453125, -0...
[ 11249, 47, 63284, 4271, 73882, 20028, 111, 49097, 3478, 72, 3066, 1004, 678, 64, 3667, 7, 170277, 100, 72803, 7103, 150631, 31089, 1238, 2594, 114210, 11435, 16751, 16981, 20324, 8633, 18, 34695, 1672, 382, 136043, 5316, 12918, 98, 37623, ...
[ 0.0809326171875, 0.061737060546875, 0.203369140625, 0.17822265625, 0.270263671875, 0.1710205078125, 0.0170135498046875, 0.21728515625, 0.268310546875, 0.1180419921875, 0.2822265625, 0.1666259765625, 0.061431884765625, 0.015716552734375, 0.2064208984375, 0.0850830078125, 0.12268066406...
embed
27667955_c0
27667955
erlang
0
Title: How to find erlang processes lingering on old code? Problem title: How to find erlang processes lingering on old code? Tags: erlang Problem: How to find erlang processes lingering on old code? Using Erlang's code change capabilities, sometimes I got false using code:soft_purge(module), meaning some other process...
How to find erlang processes lingering on old code? How to find erlang processes lingering on old code? erlang How How to find erlang processes lingering on old code? Using Erlang's code change capabilities, sometimes I got false using code:soft_purge(module), meaning some other process still hangs on the old code. Is ...
[ -0.000782012939453125, 0.021240234375, -0.01123046875, 0.0126953125, -0.016357421875, 0.0014495849609375, 0.0023193359375, 0.004547119140625, -0.00173187255859375, -0.049560546875, -0.00909423828125, -0.0087890625, -0.00084686279296875, 0.0113525390625, 0.022705078125, 0.02978515625, ...
[ 11249, 47, 7413, 72, 3066, 9433, 90, 38786, 4209, 98, 10332, 18151, 1004, 15549, 130732, 68018, 98320, 61306, 4717, 429, 83279, 3789, 7464, 10756, 7, 3917, 54608, 50155, 28560, 7565, 3714, 78701, 4358 ]
[ 0.050018310546875, 0.0272216796875, 0.1490478515625, 0.13818359375, 0.263671875, 0.1666259765625, 0.1287841796875, 0.1580810546875, 0.1739501953125, 0.06170654296875, 0.14990234375, 0.167724609375, 0.1256103515625, 0.1063232421875, 0.078125, 0.036102294921875, 0.18505859375, 0.1754...
embed
35367759_c0
35367759
erlang
0
Title: What is the match/3 function in the context of the Phoenix Framework? Problem title: What is the match/3 function in the context of the Phoenix Framework? Tags: phoenix-framework, elixir, erlang Problem: What is the match/3 function in the context of the Phoenix Framework? I'm working through the Phoenix Framewo...
What is the match/3 function in the context of the Phoenix Framework? What is the match/3 function in the context of the Phoenix Framework? phoenix-framework elixir erlang What Phoenix Framework What is the match/3 function in the context of the Phoenix Framework? I'm working through the Phoenix Framework documentation...
[ 0.0133056640625, 0.0162353515625, 0.025390625, -0.015625, 0.005401611328125, 0.00494384765625, -0.01385498046875, 0.00830078125, 0.0108642578125, -0.02685546875, 0.0045166015625, -0.033935546875, 0.003662109375, -0.0076904296875, 0.004669189453125, 0.010986328125, -0.004913330078125,...
[ 4865, 70, 14858, 18113, 32354, 43701, 133720, 202220, 53073, 33, 4084, 160328, 18244, 15296, 38308, 72, 3066, 83, 209806, 56709, 1916, 41392, 1815 ]
[ 0.047027587890625, 0.0284576416015625, 0.21728515625, 0.28369140625, 0.2178955078125, 0.132568359375, 0.2169189453125, 0.2213134765625, 0.011962890625, 0.0380859375, 0.0750732421875, 0.079345703125, 0.08837890625, 0.004425048828125, 0.1494140625, 0.0343017578125, 0.177490234375, 0....
embed
49195034_c0
49195034
erlang
0
Title: Is there a way to access the state of a GenServer? Problem title: Is there a way to access the state of a GenServer? Tags: erlang, erlang-otp, elixir Problem: Is there a way to access the state of a GenServer? Is there a built in way to see the current state of a GenServer? You can always implement a simple call...
Is there a way to access the state of a GenServer? Is there a way to access the state of a GenServer? erlang erlang-otp elixir GenServer Is there a way to access the state of a GenServer? Is there a built in way to see the current state of a GenServer? You can always implement a simple call to return the state, but is ...
[ 0.0033721923828125, 0.01544189453125, -0.00139617919921875, -0.00177001953125, -0.0087890625, 0.00830078125, -0.01025390625, -0.0030517578125, -0.0079345703125, -0.041748046875, 0.0216064453125, 0.0115966796875, 0.01348876953125, 0.0203857421875, -0.01190185546875, -0.00008964538574218...
[ 2685, 3917, 47, 17203, 11341, 111, 15937, 193348, 10, 72, 3066, 818, 254, 15296, 38308, 70, 88303, 1957, 43581, 11343, 29479, 8781, 11782, 30646, 189534, 11675, 3522, 39642, 17137, 831, 6713, 51042, 86685, 136, 2363, 37202, 7722, 1543, 4192...
[ 0.02239990234375, 0.107421875, 0.0548095703125, 0.17822265625, 0.197509765625, 0.03863525390625, 0.1771240234375, 0.2578125, 0.01300048828125, 0.045379638671875, 0.228515625, 0.0491943359375, 0.0751953125, 0.029998779296875, 0.1524658203125, 0.047607421875, 0.05914306640625, 0.1418...
embed
64824420_c2
64824420
erlang
2
]] Ev now is [[{1,2},{1,3},{1,4},{4,4}],[{2,1},{2,3}],[{3,1},{3,2},{3,4}],[{4,1},{4,3}]] But what I want is: Ev now is [[{1,2},{1,3},{1,4},{4,4}],[{2,1},{2,3}],[{3,1},{3,2},{3,4}],[{4,1},{4,3}]] Ev now is [[{1,2},{1,3},{1,4}],[{2,1},{2,3}],[{3,1},{3,2},{3,4}],[{4,1},{4,3}]] Ev now is [[{1,2},{1,3},{1,4},{2,2}],[{2,1},{...
]] Ev now is [[{1,2},{1,3},{1,4},{4,4}],[{2,1},{2,3}],[{3,1},{3,2},{3,4}],[{4,1},{4,3}]] But what I want is: Ev now is [[{1,2},{1,3},{1,4},{4,4}],[{2,1},{2,3}],[{3,1},{3,2},{3,4}],[{4,1},{4,3}]] Ev now is [[{1,2},{1,3},{1,4}],[{2,1},{2,3}],[{3,1},{3,2},{3,4}],[{4,1},{4,3}]] Ev now is [[{1,2},{1,3},{1,4},{2,2}],[{2,1},{...
[ -0.015625, 0.01373291015625, 0.0169677734375, -0.0155029296875, 0.00372314453125, -0.0030670166015625, 0.00141143798828125, -0.0089111328125, 0.006439208984375, -0.0262451171875, 0.01904296875, 0.0203857421875, 0.006103515625, -0.001678466796875, -0.000919342041015625, -0.0002012252807...
[ 86245, 8385, 5036, 83, 110558, 133063, 418, 363, 163324, 124093, 304, 155761, 82449, 617, 4966, 2367, 87, 3444, 12, 81206, 13648, 15549, 12989, 28864, 26073, 5623, 7710, 297, 11249, 1004, 3066, 29954, 2681, 966, 532, 271, 5303, 927, 32036, ...
[ 0.120361328125, 0.30712890625, 0.17626953125, 0.1475830078125, 0.006103515625, 0.208740234375, 0.0574951171875, 0.1473388671875, 0.2318115234375, 0.2666015625, 0.010955810546875, 0.153564453125, 0.1982421875, 0.08489990234375, 0.151611328125, 0.11376953125, 0.050262451171875, 0.201...
embed
21421629_c0
21421629
erlang
0
Title: Erlang ordered and key-value data struct Problem title: Erlang ordered and key-value data struct Tags: key-value, data-structures, erlang Problem: Erlang ordered and key-value data struct I want to implement a real-time score ranking( ordered ). I hope I can get every player's score fast( key-value ). Here playe...
Erlang ordered and key-value data struct Erlang ordered and key-value data struct key-value data-structures erlang Erlang Erlang ordered and key-value data struct I want to implement a real-time score ranking( ordered ). I hope I can get every player's score fast( key-value ). Here player_id is key and score is value. ...
[ 0.0174560546875, 0.00439453125, -0.00274658203125, -0.0264892578125, 0.0230712890625, -0.01202392578125, -0.0081787109375, 0.001312255859375, -0.0078125, -0.007476806640625, 0.040283203125, 0.009033203125, 0.01123046875, -0.009033203125, 0.01080322265625, -0.003448486328125, -0.02038...
[ 1004, 3066, 12989, 297, 136, 22799, 27494, 2053, 36716, 137656, 72, 3444, 29479, 2773, 6032, 47763, 77918, 15673, 2046, 11907, 58585, 4271, 532, 83, 34292, 3509, 10644, 83435, 4343, 5303, 756, 5423, 7103, 959, 670, 23658, 3789, 86869, 2967 ...
[ 0.1201171875, 0.254150390625, 0.216796875, 0.1077880859375, 0.051788330078125, 0.171630859375, 0.1771240234375, 0.1451416015625, 0.21533203125, 0.1494140625, 0.051910400390625, 0.0538330078125, 0.10400390625, 0.056732177734375, 0.079833984375, 0.1429443359375, 0.195068359375, 0.067...
embed
38343529_c0
38343529
erlang
0
Title: In Erlang is there a tool to generate all the message passing among processes? Problem title: In Erlang is there a tool to generate all the message passing among processes? Tags: erlang Problem: In Erlang is there a tool to generate all the message passing among processes? It would be very helpful to see that pr...
In Erlang is there a tool to generate all the message passing among processes? In Erlang is there a tool to generate all the message passing among processes? erlang Erlang In Erlang is there a tool to generate all the message passing among processes? It would be very helpful to see that process A(gen_server) use gen_ca...
[ 0.023193359375, 0.0306396484375, -0.0233154296875, 0.0169677734375, -0.00604248046875, -0.004730224609375, -0.01544189453125, 0.01116943359375, -0.01202392578125, -0.009033203125, 0.016357421875, 0.006103515625, 0.00994873046875, 0.033203125, 0.01519775390625, 0.01409912109375, -0.00...
[ 1004, 3066, 10, 55516, 139392, 756, 70, 26008, 452, 6953, 54940, 9433, 47, 90, 72, 98893, 1957, 62, 1409, 39642, 4527, 9226, 55741, 25379, 335, 8180, 313, 903, 8562, 40, 944, 3956, 117233 ]
[ 0.131591796875, 0.26513671875, 0.05633544921875, 0.247802734375, 0.220703125, 0.095703125, 0.0401611328125, 0.1759033203125, 0.0814208984375, 0.07342529296875, 0.1373291015625, 0.15478515625, 0.05572509765625, 0.012298583984375, 0.051483154296875, 0.0638427734375, 0.0411376953125, ...
embed
36470869_c0
36470869
erlang
0
Title: ejabberd takes more than 30 minutes to detect user session termination? Problem title: ejabberd takes more than 30 minutes to detect user session termination? Tags: xmpp, erlang, ejabberd, chat Problem: ejabberd takes more than 30 minutes to detect user session termination? I am using ejabberd-16.02. I have the ...
ejabberd takes more than 30 minutes to detect user session termination? ejabberd takes more than 30 minutes to detect user session termination? xmpp erlang ejabberd chat ejabberd takes more than 30 minutes to detect user session termination? I am using ejabberd-16.02. I have the following issue: if user come online and...
[ 0.0181884765625, 0.032958984375, 0.00921630859375, -0.008544921875, -0.02685546875, -0.01080322265625, 0.00830078125, 0.017822265625, -0.01953125, -0.0213623046875, 0.0026397705078125, -0.0162353515625, 0.000713348388671875, 0.0113525390625, 0.010498046875, 0.0028076171875, 0.0302734...
[ 28, 145, 102459, 71, 51776, 1286, 3501, 496, 14633, 96391, 38937, 56002, 29527, 1363, 1022, 39, 6366, 72, 3066, 3245, 47, 17368, 13528, 14664, 31089, 2174, 1380, 1118, 136, 68673, 15504, 5773, 707, 110, 33120, 65918, 959, 4420, 13438, 107...
[ 0.1114501953125, 0.1556396484375, 0.23486328125, 0.1807861328125, 0.0994873046875, 0.08343505859375, 0.07183837890625, 0.183837890625, 0.2042236328125, 0.1964111328125, 0.12841796875, 0.1845703125, 0.190673828125, 0.0928955078125, 0.009033203125, 0.0225677490234375, 0.15771484375, ...
embed
6857618_c0
6857618
erlang
0
Title: Erlang / Removing warnings when some behavior callback functions are not implemented Problem title: Erlang / Removing warnings when some behavior callback functions are not implemented Tags: erlang Problem: Erlang / Removing warnings when some behavior callback functions are not implemented What is the best prac...
Erlang / Removing warnings when some behavior callback functions are not implemented Erlang / Removing warnings when some behavior callback functions are not implemented erlang Erlang Removing Warning code_change gen_event Erlang / Removing warnings when some behavior callback functions are not implemented What is the ...
[ -0.0003108978271484375, 0.00604248046875, 0.0042724609375, 0.00958251953125, -0.0048828125, -0.00124359130859375, -0.006988525390625, -0.00885009765625, -0.0024566650390625, 0.004364013671875, -0.012939453125, -0.01507568359375, -0.01141357421875, 0.030029296875, 0.0108642578125, -0.00...
[ 1004, 3066, 853, 432, 6496, 1631, 6977, 3229, 123166, 11782, 12620, 32354, 959, 29479, 72, 5550, 592, 18151, 152028, 9226, 90141, 2965, 41361, 49146, 2301, 18, 3871, 756 ]
[ 0.1444091796875, 0.269287109375, 0.0178985595703125, 0.10064697265625, 0.07879638671875, 0.1541748046875, 0.1358642578125, 0.031951904296875, 0.1932373046875, 0.1260986328125, 0.196533203125, 0.1448974609375, 0.09661865234375, 0.1446533203125, 0.0804443359375, 0.14453125, 0.087280273...
embed
54100538_c0
54100538
erlang
0
Title: Multiple Erlang VMs running on Windows Server, how to pre-allocate cpu cores to each VM Problem title: Multiple Erlang VMs running on Windows Server, how to pre-allocate cpu cores to each VM Tags: erlang, elixir Problem: Multiple Erlang VMs running on Windows Server, how to pre-allocate cpu cores to each VM I ha...
Multiple Erlang VMs running on Windows Server, how to pre-allocate cpu cores to each VM Multiple Erlang VMs running on Windows Server, how to pre-allocate cpu cores to each VM erlang elixir Multiple Erlang VMs Windows Server Multiple Erlang VMs running on Windows Server, how to pre-allocate cpu cores to each VM I have ...
[ 0.00396728515625, 0.00408935546875, -0.004669189453125, 0.0286865234375, -0.00830078125, -0.0311279296875, 0.00830078125, 0.008544921875, 0.000579833984375, -0.0184326171875, -0.00070953369140625, 0.011474609375, 0.041748046875, 0.03173828125, 0.017822265625, 0.01251220703125, 0.0143...
[ 19335, 8705, 1004, 3066, 43084, 7, 51042, 3773, 22687, 3642, 47, 479, 64688, 33478, 1766, 48052, 12638, 98, 72, 15296, 38308, 87, 765, 48716, 36279, 3444, 14012, 11814, 390, 116071, 418, 5608, 4527, 4734, 116, 304, 30607, 39527 ]
[ 0.1300048828125, 0.1253662109375, 0.1397705078125, 0.2491455078125, 0.234375, 0.0684814453125, 0.0880126953125, 0.1217041015625, 0.1644287109375, 0.048583984375, 0.060791015625, 0.156494140625, 0.1512451171875, 0.12158203125, 0.164306640625, 0.1732177734375, 0.106689453125, 0.02830...
embed
34390452_c0
34390452
erlang
0
Title: Erlang: Will adding type spec to code make dialyzer more effective? Problem title: Erlang: Will adding type spec to code make dialyzer more effective? Tags: erlang, dialyzer Problem: Erlang: Will adding type spec to code make dialyzer more effective? I have a project that doesn't have -spec or -type in code, cur...
Erlang: Will adding type spec to code make dialyzer more effective? Erlang: Will adding type spec to code make dialyzer more effective? erlang dialyzer Erlang Will Erlang: Will adding type spec to code make dialyzer more effective? I have a project that doesn't have -spec or -type in code, currently dialyzer can find s...
[ -0.0003643035888671875, 0.004180908203125, 0.00482177734375, 0.0118408203125, -0.021240234375, 0.004669189453125, -0.025146484375, 0.016357421875, -0.00250244140625, -0.00872802734375, 0.0133056640625, -0.0303955078125, -0.006988525390625, -0.004119873046875, 0.0062255859375, 0.0324707...
[ 1004, 3066, 20255, 154107, 10644, 48502, 47, 18151, 3249, 879, 538, 4383, 1286, 60266, 72, 13452, 22027, 18, 765, 20, 16711, 707, 50986, 7413, 1631, 2684, 36279, 139392, 18499, 55516, 12765, 36766, 54567, 3674 ]
[ 0.0675048828125, 0.213134765625, 0.06298828125, 0.14697265625, 0.2176513671875, 0.251220703125, 0.07745361328125, 0.17724609375, 0.0679931640625, 0.13427734375, 0.1470947265625, 0.181640625, 0.1085205078125, 0.146484375, 0.035400390625, 0.07586669921875, 0.0201873779296875, 0.02864...
embed
15164476_c0
15164476
erlang
0
Title: How to get a bit of a decimal integer in erlang Problem title: How to get a bit of a decimal integer in erlang Tags: erlang Problem: How to get a bit of a decimal integer in erlang Given a number, for example 16877, I want to test a bit position (pos) to see if 0 or 1. For instance, I know that the above number ...
How to get a bit of a decimal integer in erlang How to get a bit of a decimal integer in erlang erlang How Pos Bit How to get a bit of a decimal integer in erlang Given a number, for example 16877, I want to test a bit position (pos) to see if 0 or 1. For instance, I know that the above number is digit wise reppresente...
[ -0.018310546875, -0.006683349609375, -0.0035552978515625, 0.006744384765625, 0.00616455078125, 0.016845703125, -0.00213623046875, -0.007110595703125, 0.0128173828125, -0.00390625, 0.0115966796875, 0.0179443359375, -0.0419921875, 0.0118408203125, 0.0198974609375, -0.00159454345703125, ...
[ 11249, 47, 2046, 10, 4785, 111, 32380, 2749, 892, 1505, 72, 3066, 23, 13498, 27774, 14012, 611, 182055, 3444, 3034, 19069, 7522, 1957, 2174, 757, 707, 615, 36917, 153939, 90825, 55247, 209, 28568, 159019, 35046, 3864, 106, 116, 138, 10193...
[ 0.0266571044921875, 0.003631591796875, 0.130126953125, 0.0236968994140625, 0.2227783203125, 0.1044921875, 0.1878662109375, 0.1324462890625, 0.1209716796875, 0.1307373046875, 0.1304931640625, 0.2305908203125, 0.039794921875, 0.1461181640625, 0.1600341796875, 0.07745361328125, 0.088256...
embed
13668583_c0
13668583
erlang
0
Title: How to start Erlang shell from inside Vim Problem title: How to start Erlang shell from inside Vim Tags: erlang, vim Problem: How to start Erlang shell from inside Vim I want to use Vim as the editor for my Erlang coding. I managed to install the plugin for Erlang in vim, and I want to know if it is possible to ...
How to start Erlang shell from inside Vim How to start Erlang shell from inside Vim erlang vim inside How Erlang Vim How to start Erlang shell from inside Vim I want to use Vim as the editor for my Erlang coding. I managed to install the plugin for Erlang in vim, and I want to know if it is possible to compile the curr...
[ 0.0007476806640625, 0.0179443359375, -0.0108642578125, -0.00136566162109375, 0.001800537109375, 0.0186767578125, -0.0299072265625, -0.0013427734375, -0.035888671875, -0.024169921875, -0.0019378662109375, 0.0194091796875, 0.018798828125, 0.032958984375, -0.0023345947265625, -0.015991210...
[ 11249, 47, 4034, 1004, 3066, 128019, 1295, 46132, 582, 39, 72, 119916, 3444, 4527, 237, 30391, 552, 6238, 145755, 20600, 69993, 7722, 9969, 1340, 43581, 373, 18234, 85269, 4439, 831, 17368, 68847, 313, 997, 339, 22799, 162515, 30700, 23 ]
[ 0.08935546875, 0.047943115234375, 0.17626953125, 0.173095703125, 0.299072265625, 0.281005859375, 0.0985107421875, 0.1878662109375, 0.2086181640625, 0.205078125, 0.07373046875, 0.253662109375, 0.0208587646484375, 0.04034423828125, 0.06134033203125, 0.1788330078125, 0.104248046875, 0...
embed
18459633_c0
18459633
erlang
0
Title: How Erlang processes access mailbox concurrently Problem title: How Erlang processes access mailbox concurrently Tags: locking, erlang, concurrency Problem: How Erlang processes access mailbox concurrently There are lots of info regarding how to use erlang mailbox, but seldom to find a paper or document describe...
How Erlang processes access mailbox concurrently How Erlang processes access mailbox concurrently locking erlang concurrency How Erlang How Erlang processes access mailbox concurrently There are lots of info regarding how to use erlang mailbox, but seldom to find a paper or document describe how erlang actual access ma...
[ 0.0067138671875, 0.00836181640625, 0.01361083984375, 0.017822265625, 0.01129150390625, -0.00775146484375, 0.0069580078125, 0.031494140625, -0.0019073486328125, -0.0233154296875, 0.0255126953125, 0.01544189453125, 0.006561279296875, 0.00372314453125, 0.0196533203125, 0.00701904296875, ...
[ 11249, 1004, 3066, 9433, 17203, 6648, 11728, 133244, 56776, 72, 108636, 982, 3004, 3642, 4527, 15122, 12937, 98363, 8561, 70796, 28032, 43084, 100094, 8110, 214, 74213, 22631, 111670, 26008, 9114, 2481, 55300, 50155, 84700, 73 ]
[ 0.0341796875, 0.1273193359375, 0.242431640625, 0.1219482421875, 0.1461181640625, 0.07086181640625, 0.1824951171875, 0.1947021484375, 0.127685546875, 0.0972900390625, 0.128173828125, 0.070068359375, 0.047760009765625, 0.03436279296875, 0.05047607421875, 0.00848388671875, 0.00863647460...
embed
28808073_c0
28808073
erlang
0
Title: Erlang how to check the first value of command line? Problem title: Erlang how to check the first value of command line? Tags: erlang, string Problem: Erlang how to check the first value of command line? This following line give me what user has been wrote in Command prompt Y= io:get_line("Send message --> "). M...
Erlang how to check the first value of command line? Erlang how to check the first value of command line? erlang string Erlang io:get_line Send Erlang how to check the first value of command line? This following line give me what user has been wrote in Command prompt My question is, I want to write a if condition that ...
[ -0.012451171875, -0.00634765625, -0.0208740234375, 0.044921875, 0.005340576171875, 0.0018157958984375, 0.007049560546875, 0.019775390625, -0.00836181640625, -0.0172119140625, 0.0164794921875, -0.0032806396484375, 0.0196533203125, 0.00092315673828125, -0.0008697509765625, 0.026611328125...
[ 1004, 3066, 3642, 47, 12765, 70, 5117, 34292, 111, 75101, 13315, 72, 79315, 22995, 3794, 2256, 24044, 25632, 2367, 38937, 1556, 2809, 54397, 23, 123573, 105876, 3444, 33022, 2174, 35431, 30957, 4904, 4369, 237, 10750, 18499, 26008, 157666, ...
[ 0.1114501953125, 0.2303466796875, 0.0440673828125, 0.0364990234375, 0.2095947265625, 0.0540771484375, 0.15478515625, 0.1915283203125, 0.103271484375, 0.16748046875, 0.1629638671875, 0.07501220703125, 0.0908203125, 0.1239013671875, 0.09027099609375, 0.1507568359375, 0.0157623291015625...
embed
34180159_c0
34180159
erlang
0
Title: tsung jabber/xmpp request message to a single node Problem title: tsung jabber/xmpp request message to a single node Tags: xmpp, tsung, erlang, load-testing Problem: tsung jabber/xmpp request message to a single node i would like to send XMPP-Messages to specific XMPP-User. Unfortunately the tsung request "jabbe...
tsung jabber/xmpp request message to a single node tsung jabber/xmpp request message to a single node xmpp tsung erlang load-testing no_ack tsung jabber/xmpp request message to a single node i would like to send XMPP-Messages to specific XMPP-User. Unfortunately the tsung request "jabber" with typ "chat" only allows br...
[ 0.007110595703125, 0.033203125, -0.00482177734375, -0.0108642578125, -0.007568359375, 0.023193359375, 0.004150390625, -0.000644683837890625, 0.007354736328125, -0.04638671875, 0.03076171875, -0.04052734375, -0.00921630859375, 0.007293701171875, -0.0019683837890625, -0.01348876953125, ...
[ 808, 77524, 79, 102459, 425, 39, 6366, 50336, 26008, 47, 11001, 110, 112, 1022, 72, 3066, 72367, 6954, 2594, 1884, 25379, 1193, 9088, 683, 594, 6011, 29458, 1062, 2189, 145, 11417, 21393, 4734, 114864, 226347, 89914, 756, 1118, 72095, 350...
[ 0.040863037109375, 0.1898193359375, 0.1241455078125, 0.254150390625, 0.032470703125, 0.052215576171875, 0.1820068359375, 0.197998046875, 0.140625, 0.0771484375, 0.1595458984375, 0.1224365234375, 0.1529541015625, 0.04888916015625, 0.0140838623046875, 0.1719970703125, 0.1048583984375, ...
embed
40843213_c1
40843213
erlang
1
86.eu-central-1.compute.internal'.\n'ip-10-0-5-10.eu-central-1.compute.internal'.\n\n"} is there a specific folder that I have to run erl from? In the browser, I can see the app working normally, but I am not sure about the cluster.. please help! As I am using AWS, here is the security group I am on currently: Code sig...
86.eu-central-1.compute.internal'.\n'ip-10-0-5-10.eu-central-1.compute.internal'.\n\n"} is there a specific folder that I have to run erl from? In the browser, I can see the app working normally, but I am not sure about the cluster.. please help! As I am using AWS, here is the security group I am on currently: Code sig...
[ 0.017578125, 0.004791259765625, -0.01513671875, 0.0172119140625, 0.0125732421875, 0.005706787109375, -0.0118408203125, -0.020263671875, 0.00142669677734375, -0.024169921875, -0.00244140625, -0.01153564453125, 0.002197265625, 0.01611328125, 0.006134033203125, 0.00811767578125, -0.0084...
[ 17281, 4615, 58905, 5759, 58875, 6743, 10433, 6236, 3442, 52486, 2389, 10342, 9193, 83, 2685, 10, 29458, 78303, 87, 765, 47, 11675, 72, 141, 1295, 31842, 831, 1957, 4027, 20697, 3638, 959, 9077, 70, 234737, 22936, 4358, 17368, 62, 52143, ...
[ 0.26123046875, 0.169189453125, 0.1878662109375, 0.1378173828125, 0.0687255859375, 0.1402587890625, 0.12060546875, 0.1380615234375, 0.13671875, 0.1409912109375, 0.083251953125, 0.06219482421875, 0.1326904296875, 0.049468994140625, 0.060211181640625, 0.0220489501953125, 0.1461181640625...
embed
44405852_c0
44405852
erlang
0
Title: Shift from Cowboy to Phoenix Problem title: Shift from Cowboy to Phoenix Tags: elixir, erlang, phoenix-framework, cowboy Problem: Shift from Cowboy to Phoenix I have a cowboy project with schemas and handlers specified. But, there is no support for sessions and CSRF protection in cowboy. So, I need to shift this...
Shift from Cowboy to Phoenix Shift from Cowboy to Phoenix elixir erlang phoenix-framework cowboy Cowboy Shift Phoenix Plug.Adapter.cowboy.Handler Shift from Cowboy to Phoenix I have a cowboy project with schemas and handlers specified. But, there is no support for sessions and CSRF protection in cowboy. So, I need to s...
[ -0.01434326171875, 0.0247802734375, -0.0047607421875, -0.000186920166015625, -0.020751953125, -0.004058837890625, -0.024658203125, 0.004150390625, -0.014892578125, -0.0242919921875, 0.0096435546875, -0.003448486328125, -0.00113677978515625, 0.023681640625, -0.006622314453125, -0.009948...
[ 8294, 2480, 1295, 1311, 434, 30885, 47, 133720, 15296, 38308, 72, 3066, 53073, 33, 4084, 160328, 18244, 552, 194351, 22409, 2631, 720, 587, 135679, 603, 13452, 61903, 35863, 58735, 110, 8060, 104227, 136, 198956, 919, 48431, 23, 3871, 12292...
[ 0.1943359375, 0.18017578125, 0.1634521484375, 0.114501953125, 0.170166015625, 0.286376953125, 0.17431640625, 0.311767578125, 0.09619140625, 0.21484375, 0.08087158203125, 0.2470703125, 0.08203125, 0.07958984375, 0.0977783203125, 0.133056640625, 0.055389404296875, 0.0850830078125, ...
embed
22390757_c0
22390757
erlang
0
Title: Matching N digits using binaries Problem title: Matching N digits using binaries Tags: erlang, pattern-matching Problem: Matching N digits using binaries I have a packet coming from a socket which is composed by two subsections, the first composed by 4 numerical digits and the latter composed by 16 alphanumerica...
Matching N digits using binaries Matching N digits using binaries erlang pattern-matching binaries Matching Packet1 Packet2 th58i4kr04o3 Matching N digits using binaries I have a packet coming from a socket which is composed by two subsections, the first composed by 4 numerical digits and the latter composed by 16 alph...
[ -0.006317138671875, 0.0023345947265625, -0.0135498046875, 0.015869140625, 0.007110595703125, 0.017822265625, -0.0101318359375, 0.00799560546875, 0.0113525390625, -0.02099609375, 0.0162353515625, -0.023193359375, -0.01165771484375, 0.010498046875, 0.0184326171875, -0.00115966796875, 0...
[ 67407, 214, 541, 153939, 17368, 23035, 10484, 72, 3066, 103510, 98753, 56607, 126, 304, 10057, 5019, 7709, 31, 363, 43824, 38162, 1295, 221, 27853, 150350, 6626, 1614, 7, 58994, 5117, 201, 54744, 390, 611, 144, 68743, 15537, 12056, 11249, ...
[ 0.241943359375, 0.07818603515625, 0.1549072265625, 0.1881103515625, 0.09716796875, 0.2236328125, 0.1844482421875, 0.076416015625, 0.2095947265625, 0.2005615234375, 0.2042236328125, 0.1453857421875, 0.086181640625, 0.015350341796875, 0.1353759765625, 0.0435791015625, 0.05487060546875,...
embed
18844889_c0
18844889
erlang
0
Title: Is there any erlang web framework which provides the same functionalities as in Dropwizard framework? Problem title: Is there any erlang web framework which provides the same functionalities as in Dropwizard framework? Tags: java, erlang, dropwizard, chicagoboss Problem: Is there any erlang web framework which p...
Is there any erlang web framework which provides the same functionalities as in Dropwizard framework? Is there any erlang web framework which provides the same functionalities as in Dropwizard framework? java erlang dropwizard chicagoboss Dropwizard Is there any erlang web framework which provides the same functionalit...
[ -0.01007080078125, 0.0159912109375, -0.0128173828125, -0.01336669921875, -0.030517578125, 0.007568359375, -0.006744384765625, -0.017822265625, -0.00135040283203125, 0.01025390625, 0.00897216796875, -0.0025482177734375, -0.00122833251953125, -0.00482177734375, 0.00921630859375, 0.009338...
[ 2499, 72, 3066, 1467, 170846, 87344, 5701, 123309, 130403, 44239, 5861, 79, 330, 36069, 87904, 519, 16091, 7, 959, 4127, 4165, 149307, 1295, 47 ]
[ 0.022705078125, 0.1085205078125, 0.263916015625, 0.1292724609375, 0.2310791015625, 0.045501708984375, 0.049560546875, 0.1427001953125, 0.13232421875, 0.1314697265625, 0.1856689453125, 0.048980712890625, 0.1187744140625, 0.1279296875, 0.05877685546875, 0.07421875, 0.1143798828125, 0...
embed
65048369_c0
65048369
erlang
0
Title: Specifying method based on arity in Erlang Problem title: Specifying method based on arity in Erlang Tags: syntax, function-call, erlang, arity Problem: Specifying method based on arity in Erlang I am having an Erlang module that exports two methods with the same name but different arity: proc/1 and proc/2 . Whe...
Specifying method based on arity in Erlang Specifying method based on arity in Erlang syntax function-call erlang arity Specifying Erlang MFA MODULE Specifying method based on arity in Erlang I am having an Erlang module that exports two methods with the same name but different arity: proc/1 and proc/2 . When using the...
[ -0.00811767578125, 0.0242919921875, -0.01141357421875, -0.005126953125, -0.0031890869140625, -0.01220703125, -0.00634765625, -0.01531982421875, -0.005584716796875, -0.01202392578125, 0.009521484375, -0.031494140625, -0.0174560546875, 0.007598876953125, 0.014404296875, -0.01226806640625...
[ 24990, 151138, 55300, 35509, 187, 2481, 1004, 3066, 6002, 86531, 32354, 85763, 72, 276, 14676, 98610, 88996, 31255, 6626, 150624, 5701, 9351, 12921, 10402, 11583, 136, 12477, 3173, 3642, 40140, 18929, 5608, 11814, 707 ]
[ 0.1839599609375, 0.11785888671875, 0.23046875, 0.08953857421875, 0.1878662109375, 0.2398681640625, 0.1866455078125, 0.291748046875, 0.038665771484375, 0.0931396484375, 0.10772705078125, 0.1041259765625, 0.103271484375, 0.039306640625, 0.1925048828125, 0.10321044921875, 0.163330078125...
embed
27930074_c0
27930074
erlang
0
Title: Top level assignment Problem title: Top level assignment Tags: functional-programming, erlang Problem: Top level assignment I was trying to create a function using a higher-order function in Erlang. To my surprisement, this seems to not be okay. Here's a simplified example of the error I'm getting. -module(test)...
Top level assignment Top level assignment functional-programming erlang Top io:format test.erl:4 test.erl:7 Top level assignment I was trying to create a function using a higher-order function in Erlang. To my surprisement, this seems to not be okay. Here's a simplified example of the error I'm getting. And in erl: Do ...
[ 0.006622314453125, 0.0159912109375, -0.004638671875, -0.004180908203125, -0.006500244140625, -0.00457763671875, 0.0177001953125, 0.0003108978271484375, 0.00921630859375, -0.03076171875, 0.01129150390625, -0.0159912109375, 0.0054931640625, 0.0020904541015625, 0.0218505859375, -0.0057067...
[ 4792, 17366, 95486, 674, 123309, 28966, 72, 3066, 22995, 51727, 3034, 56, 141, 617, 966, 31577, 28282, 32354, 17368, 77546, 80596, 1004, 55640, 903, 37202, 959, 186, 68403, 112892, 1029, 27781, 18499, 20949, 6528, 16940, 75723, 16274 ]
[ 0.179931640625, 0.207275390625, 0.192626953125, 0.08197021484375, 0.1505126953125, 0.1004638671875, 0.07598876953125, 0.26025390625, 0.154296875, 0.1861572265625, 0.1583251953125, 0.0697021484375, 0.1346435546875, 0.1258544921875, 0.12060546875, 0.08941650390625, 0.1339111328125, 0...
embed
3583450_c0
3583450
erlang
0
Title: Should separate Erlang applications share the same VM on the same machine? Problem title: Should separate Erlang applications share the same VM on the same machine? Tags: couchdb, erlang Problem: Should separate Erlang applications share the same VM on the same machine? I have a CouchDB instance running on one m...
Should separate Erlang applications share the same VM on the same machine? Should separate Erlang applications share the same VM on the same machine? couchdb erlang Should Erlang Should separate Erlang applications share the same VM on the same machine? I have a CouchDB instance running on one machine, and thus with it...
[ 0.0004024505615234375, -0.0036773681640625, 0.004608154296875, 0.0206298828125, -0.0018463134765625, -0.00537109375, -0.007415771484375, -0.006378173828125, 0.006744384765625, -0.02490234375, -0.00090789794921875, -0.010498046875, 0.01611328125, 0.021484375, -0.00653076171875, 0.004547...
[ 151117, 84797, 1004, 3066, 86685, 12008, 5701, 43084, 36279, 31816, 206, 48073, 72, 1311, 12665, 39463, 110527, 51042, 1632, 10002, 9433, 38415, 11522, 170198, 4034, 110, 112 ]
[ 0.0557861328125, 0.204833984375, 0.1302490234375, 0.264404296875, 0.1793212890625, 0.1605224609375, 0.1134033203125, 0.2286376953125, 0.1259765625, 0.0938720703125, 0.0509033203125, 0.1820068359375, 0.066650390625, 0.05035400390625, 0.141357421875, 0.2119140625, 0.1004638671875, 0....
embed
23276932_c0
23276932
erlang
0
Title: How to get and display the entire html url on screen through httpc: request in erlang? Problem title: How to get and display the entire html url on screen through httpc: request in erlang? Tags: erlang Problem: How to get and display the entire html url on screen through httpc: request in erlang? do process (Url...
How to get and display the entire html url on screen through httpc: request in erlang? How to get and display the entire html url on screen through httpc: request in erlang? erlang How Url Status Header Body httpc:request io:format How to get and display the entire html url on screen through httpc: request in erlang? d...
[ 0.018310546875, 0.00787353515625, 0.015869140625, 0.0196533203125, 0.01141357421875, 0.00119781494140625, 0.0096435546875, -0.00543212890625, -0.006622314453125, -0.02783203125, -0.0087890625, -0.036865234375, -0.0380859375, -0.0089111328125, 0.0296630859375, -0.004150390625, -0.0002...
[ 11249, 2046, 136, 44116, 64194, 7693, 25002, 49119, 1621, 238, 50336, 72, 3066, 98, 8305, 12, 23, 4143, 141, 56504, 44816, 56, 43960, 107, 75616, 22995, 51727, 140992, 47, 3642 ]
[ 0.0273284912109375, 0.0933837890625, 0.05078125, 0.1656494140625, 0.153076171875, 0.2059326171875, 0.2235107421875, 0.1673583984375, 0.08966064453125, 0.08294677734375, 0.187255859375, 0.0963134765625, 0.276611328125, 0.033843994140625, 0.02581787109375, 0.0182342529296875, 0.0061645...
embed
24543887_c0
24543887
erlang
0
Title: How to match RFC3339 timestamp using Regex? Problem title: How to match RFC3339 timestamp using Regex? Tags: erlang, regex Problem: How to match RFC3339 timestamp using Regex? I want i check the format of timestamp which is described in RFC3339 . Here is the examples: "1996-12-19T16%3A39%3A57-08%3A00" "1996-12-1...
How to match RFC3339 timestamp using Regex? How to match RFC3339 timestamp using Regex? erlang regex Regex How RFC3339 How to match RFC3339 timestamp using Regex? I want i check the format of timestamp which is described in RFC3339 . Here is the examples: I have run one re pattern, but it only works for the first and s...
[ -0.00982666015625, 0.00933837890625, 0.019775390625, 0.0218505859375, 0.0059814453125, -0.026611328125, -0.0257568359375, 0.0301513671875, -0.002471923828125, -0.007476806640625, 0.00958251953125, -0.025634765625, -0.010498046875, -0.00457763671875, 0.015380859375, 0.0159912109375, 0...
[ 11249, 47, 14858, 627, 27529, 363, 131518, 1733, 590, 2676, 17368, 11678, 3355, 72, 3066, 6835, 3444, 12765, 9384, 151552, 27781, 11675, 456, 103510, 43240, 17932 ]
[ 0.07037353515625, 0.03814697265625, 0.19384765625, 0.039642333984375, 0.1856689453125, 0.080322265625, 0.26220703125, 0.10400390625, 0.157958984375, 0.1402587890625, 0.0614013671875, 0.1270751953125, 0.2061767578125, 0.009246826171875, 0.1527099609375, 0.08544921875, 0.00534057617187...
embed
24988993_c0
24988993
erlang
0
Title: Erlang 17 recommend to use map replace record,but how to make mnesia support map? Problem title: Erlang 17 recommend to use map replace record,but how to make mnesia support map? Tags: erlang, dictionary Problem: Erlang 17 recommend to use map replace record,but how to make mnesia support map? In joe's "Big chan...
Erlang 17 recommend to use map replace record,but how to make mnesia support map? Erlang 17 recommend to use map replace record,but how to make mnesia support map? erlang dictionary Erlang Erlang 17 recommend to use map replace record,but how to make mnesia support map? In joe's "Big changes to Erlang" http://joearms.g...
[ -0.004547119140625, 0.0022125244140625, 0.00421142578125, 0.025634765625, 0.00103759765625, -0.01336669921875, -0.01287841796875, 0.00830078125, -0.0133056640625, -0.0289306640625, 0.0106201171875, -0.0162353515625, 0.0013885498046875, -0.00799560546875, 0.035888671875, -0.000644683837...
[ 1004, 3066, 729, 67330, 4527, 22288, 91995, 17164, 8789, 3642, 3249, 49097, 3478, 8060, 72, 10763, 741, 13, 129933, 65572, 47, 513, 4432, 15769, 32102, 32976, 152028, 188, 56, 36663, 7, 186, 115923, 93766, 237, 44948, 162520, 11249, 27198 ]
[ 0.1446533203125, 0.27734375, 0.1890869140625, 0.105712890625, 0.08489990234375, 0.2425537109375, 0.1737060546875, 0.1943359375, 0.005126953125, 0.047821044921875, 0.0853271484375, 0.2020263671875, 0.234619140625, 0.22802734375, 0.0894775390625, 0.0638427734375, 0.02789306640625, 0....
embed
16498502_c2
16498502
erlang
2
, handle_cast, handle_info, code_change, Host, gen_server:start_link, MODULE, gen_server:call, Port, Sock, gen_tcp:connect, _From, State, Username, Password, NewState, Output, string:join, LOGIN, Response, Data, Result, Resp, LIST, MailBox, SELECT, Num, _Command, _State, not_valid, _Info, _Reason, _OldVsn, _Extra, Sock...
, handle_cast, handle_info, code_change, Host, gen_server:start_link, MODULE, gen_server:call, Port, Sock, gen_tcp:connect, _From, State, Username, Password, NewState, Output, string:join, LOGIN, Response, Data, Result, Resp, LIST, MailBox, SELECT, Num, _Command, _State, not_valid, _Info, _Reason, _OldVsn, _Extra, Sock...
[ 0.004791259765625, 0.01544189453125, 0.01092529296875, 0.034912109375, 0.015380859375, 0.002960205078125, -0.01483154296875, -0.004364013671875, 0.027587890625, -0.00052642822265625, 0.001434326171875, -0.01220703125, -0.00982666015625, 0.007659912109375, -0.0213623046875, -0.002670288...
[ 6, 4, 34831, 55741, 7319, 18151, 152028, 100932, 9226, 39642, 12, 17137, 10187, 98610, 129984, 85763, 13791, 1061, 2594, 121422, 135457, 168407, 22836, 53400, 11627, 170461, 2356, 135206, 13, 13538, 7077, 79315, 513, 22215, 108526, 92748, 11809...
[ 0.0167999267578125, 0.0596923828125, 0.214111328125, 0.1878662109375, 0.1715087890625, 0.1505126953125, 0.186767578125, 0.1744384765625, 0.198974609375, 0.19140625, 0.048095703125, 0.136474609375, 0.1627197265625, 0.102294921875, 0.1182861328125, 0.1456298828125, 0.1380615234375, 0...
embed
59295061_c2
59295061
erlang
2
, gen_statem, State, Last, init_state, When, sitting_home, None, Reason, callback_mode, Callback, Stacktrace, call_callback_mode, gen_statem.erl, proc_lib, init_p_do_apply, proc_lib.erl, CRASH, REPORT, Dec-2019::00:14:42.717000, fsm:init, registered_name, fsm:callback_mode, gen_statem:call_callback_mode, gen_statem:ent...
, gen_statem, State, Last, init_state, When, sitting_home, None, Reason, callback_mode, Callback, Stacktrace, call_callback_mode, gen_statem.erl, proc_lib, init_p_do_apply, proc_lib.erl, CRASH, REPORT, Dec-2019::00:14:42.717000, fsm:init, registered_name, fsm:callback_mode, gen_statem:call_callback_mode, gen_statem:ent...
[ -0.01953125, 0.0013275146484375, -0.008544921875, 0.0034637451171875, 0.007049560546875, -0.006988525390625, -0.00787353515625, -0.013916015625, 0.01318359375, -0.0177001953125, 0.0057373046875, 0.004638671875, 0.00048828125, 0.006561279296875, -0.000965118408203125, -0.0166015625, -...
[ 6, 4, 9226, 454, 7, 138776, 22836, 21672, 23, 217, 61340, 14847, 129842, 29552, 438, 86, 236267, 11782, 12620, 61170, 26265, 6512, 32111, 99407, 85763, 56, 141, 10402, 5612, 254, 246, 9007, 538, 154791, 12927, 145269, 25755, 148548, 6632, ...
[ 0.0148773193359375, 0.0595703125, 0.1925048828125, 0.06341552734375, 0.08099365234375, 0.25732421875, 0.1925048828125, 0.177734375, 0.105712890625, 0.1756591796875, 0.1947021484375, 0.1217041015625, 0.2484130859375, 0.1905517578125, 0.0546875, 0.0703125, 0.21826171875, 0.142578125,...
embed
8385936_c0
8385936
erlang
0
Title: Getting a GUI frontend for erlang programming? Problem title: Getting a GUI frontend for erlang programming? Tags: user-interface, erlang Problem: Getting a GUI frontend for erlang programming? I've been looking into Erlang lately, and it looks great. I have one big problem though. I would like to have a Graphic...
Getting a GUI frontend for erlang programming? Getting a GUI frontend for erlang programming? user-interface erlang Getting GUI Getting a GUI frontend for erlang programming? I've been looking into Erlang lately, and it looks great. I have one big problem though. I would like to have a Graphic userinterface for my soft...
[ 0.0130615234375, 0.000072479248046875, 0.01336669921875, -0.0036163330078125, 0.01275634765625, 0.0021209716796875, 0.0235595703125, 0.006866455078125, 0.0162353515625, -0.0419921875, 0.00885009765625, -0.016845703125, -0.00408935546875, 0.007110595703125, 0.005279541015625, 0.00662231...
[ 210732, 10, 195490, 12912, 3611, 100, 72, 3066, 56037, 449, 38937, 10433, 40404, 16487, 1004, 37838, 33342, 6782, 1632, 6957, 2967, 2806, 1884, 765, 189682, 10975, 13, 162, 47, 4527, 88996, 12601, 41421, 172121, 111481, 182809, 678, 36880, ...
[ 0.1580810546875, 0.09912109375, 0.291748046875, 0.1512451171875, 0.228271484375, 0.112548828125, 0.1368408203125, 0.294921875, 0.135009765625, 0.0762939453125, 0.1500244140625, 0.1375732421875, 0.166015625, 0.0264129638671875, 0.15185546875, 0.010528564453125, 0.1162109375, 0.03784...
embed
59219229_c0
59219229
erlang
0
Title: Setting up Erlang node fails with "Can't set long node name! Please check your configuration" Problem title: Setting up Erlang node fails with "Can't set long node name! Please check your configuration" Tags: erlang, erlang-shell, elixir Problem: Setting up Erlang node fails with "C...
Setting up Erlang node fails with "Can't set long node name! Please check your configuration" Setting up Erlang node fails with "Can't set long node name! Please check your configuration" erlang erlang-shell elixir Setting Erlang Can Please error_logger Setting up Erlang node fails with "C...
[ -0.0009002685546875, 0.0150146484375, 0.004241943359375, 0.0155029296875, 0.014404296875, -0.01483154296875, -0.00946044921875, -0.01055908203125, -0.0021514892578125, 0.00714111328125, -0.0027923583984375, -0.006591796875, 0.013427734375, 0.0048828125, 0.030517578125, -0.0125122070312...
[ 503, 1257, 1004, 3066, 110, 112, 35782, 54694, 3768, 18, 5423, 4989, 9351, 12765, 180346, 30607, 72, 128019, 15296, 38308, 19514, 4171, 18499, 365, 21407 ]
[ 0.08258056640625, 0.0699462890625, 0.12841796875, 0.271728515625, 0.156982421875, 0.11834716796875, 0.1319580078125, 0.06414794921875, 0.0584716796875, 0.036865234375, 0.142333984375, 0.128173828125, 0.1282958984375, 0.120361328125, 0.173828125, 0.0938720703125, 0.06585693359375, 0...
embed
1779191_c0
1779191
erlang
0
Title: How to push Erlang to my workplace Problem title: How to push Erlang to my workplace Tags: erlang Problem: How to push Erlang to my workplace I think Erlang is very well suited for server systems developed in my workplace (currently developed in Java). I am a bit skeptical how this would be accepted both by deve...
How to push Erlang to my workplace How to push Erlang to my workplace erlang How Erlang How to push Erlang to my workplace I think Erlang is very well suited for server systems developed in my workplace (currently developed in Java). I am a bit skeptical how this would be accepted both by developers (who have no idea a...
[ 0.006439208984375, 0.010009765625, 0.000091552734375, 0.018310546875, -0.006072998046875, 0.0108642578125, -0.0027923583984375, -0.01068115234375, 0.01025390625, -0.0184326171875, 0.0005950927734375, 0.006256103515625, 0.00982666015625, 0.0166015625, 0.0301513671875, 0.00543212890625, ...
[ 11249, 47, 25944, 1004, 3066, 759, 4488, 23935, 72, 5351, 4552, 5299, 14947, 10723, 76519, 126809, 23, 41925, 4785, 49242, 70760, 68186, 106001, 6528, 123309, 31095, 25647, 51515, 31089, 47644, 113490, 5426, 24041, 215543, 20100, 4527, 540, 5...
[ 0.09033203125, 0.1337890625, 0.2080078125, 0.1661376953125, 0.323974609375, 0.041168212890625, 0.138427734375, 0.2008056640625, 0.109375, 0.03277587890625, 0.00732421875, 0.030120849609375, 0.1126708984375, 0.13623046875, 0.0968017578125, 0.08233642578125, 0.005889892578125, 0.1555...
embed
76580665_c2
76580665
erlang
2
ellman-group1-sha1", Code signals: RuntimeError, Elixir, sshex, Unable, FibreTestUi.Ssh, SSHEx.connect, Password, modify_algorithms, diffie-hellman-group-exchange-sha1, public_key, list_port_status, SSHEx.cmd, exec_timeout, Timeout, Did, sshex.ex:100, iex:2, diffie-hellman-group1-sha1, Connection, Version, Encryption, ...
ellman-group1-sha1", Code signals: RuntimeError, Elixir, sshex, Unable, FibreTestUi.Ssh, SSHEx.connect, Password, modify_algorithms, diffie-hellman-group-exchange-sha1, public_key, list_port_status, SSHEx.cmd, exec_timeout, Timeout, Did, sshex.ex:100, iex:2, diffie-hellman-group1-sha1, Connection, Version, Encryption, ...
[ -0.007415771484375, 0.0164794921875, -0.01708984375, 0.024169921875, -0.00848388671875, -0.0111083984375, -0.0224609375, -0.005584716796875, 0.01141357421875, -0.0091552734375, -0.014404296875, 0.023681640625, 0.01708984375, 0.005889892578125, -0.004180908203125, 0.01092529296875, -0...
[ 88, 73094, 51588, 20268, 2420, 418, 830, 28864, 26073, 7, 28398, 6032, 18468, 31611, 25318, 38308, 91, 7816, 425, 992, 2886, 3698, 4134, 111337, 1062, 14, 1495, 159, 12927, 19279, 135457, 170461, 2811, 100628, 2783, 71337, 478, 79544, 669, ...
[ 0.07275390625, 0.254150390625, 0.221435546875, 0.0867919921875, 0.1483154296875, 0.06884765625, 0.0302734375, 0.19921875, 0.2327880859375, 0.0203094482421875, 0.1241455078125, 0.1376953125, 0.11181640625, 0.1488037109375, 0.092529296875, 0.23876953125, 0.017547607421875, 0.13684082...
embed
78672057_c0
78672057
erlang
0
Title: Optimise count(*) query for pagination Problem title: Optimise count(*) query for pagination Tags: postgresql, pagination, erlang Problem: Optimise count(*) query for pagination What is the best approach to do pagination ,if I dont want to use select count(*) to get the total number of records at the same time i...
Optimise count(*) query for pagination Optimise count(*) query for pagination postgresql pagination erlang Optimise Optimise count(*) query for pagination What is the best approach to do pagination ,if I dont want to use select count(*) to get the total number of records at the same time i want to show page no. also ho...
[ 0.01141357421875, 0.015625, -0.0022430419921875, -0.017822265625, 0.01953125, -0.032470703125, -0.01397705078125, -0.015625, 0.027099609375, -0.052734375, 0.019287109375, -0.0341796875, 0.01953125, 0.0277099609375, -0.0128173828125, 0.00093841552734375, -0.019287109375, 0.016601562...
[ 43938, 3075, 54529, 88746, 41, 1294, 100, 12978, 1363, 1305, 17562, 99247, 72, 3066, 2965, 51515, 54, 13319, 3444, 36849, 2046, 3622, 14012, 115923, 7639, 9191, 110, 3642, 15572, 10484, 17368, 9405, 71924, 123997, 2053, 22799, 3509, 55300, ...
[ 0.18359375, 0.1214599609375, 0.1876220703125, 0.0970458984375, 0.1201171875, 0.0501708984375, 0.0562744140625, 0.257080078125, 0.1123046875, 0.0218353271484375, 0.109619140625, 0.1123046875, 0.05828857421875, 0.1832275390625, 0.0950927734375, 0.1143798828125, 0.037017822265625, 0.0...
embed
41336947_c3
41336947
erlang
3
',{2,5,29,14}, false, Code signals: pem, Erlang, x509, rsa:2048, key.pem, cert.pem, XXX, PrivateKey, RSAPrivateKey, PrivateKeyInfo, PemBin, file:read_file, BEGIN, PRIVATE, KEY, nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDMd0dnMS9t27wo, nhloldtGYbT3C, RSAEntry, public_key:pem_decode, not_encrypted, public_key:pe...
',{2,5,29,14}, false, Code signals: pem, Erlang, x509, rsa:2048, key.pem, cert.pem, XXX, PrivateKey, RSAPrivateKey, PrivateKeyInfo, PemBin, file:read_file, BEGIN, PRIVATE, KEY, nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDMd0dnMS9t27wo, nhloldtGYbT3C, RSAEntry, public_key:pem_decode, not_encrypted, public_key:pe...
[ -0.00628662109375, 0.00897216796875, 0.007598876953125, 0.0230712890625, 0.01324462890625, 0.010009765625, 0.019775390625, 0.00144195556640625, 0.00933837890625, 0.033935546875, 0.01434326171875, -0.0118408203125, 0.0037841796875, 0.00689697265625, -0.0078125, 0.01318359375, -0.02612...
[ 242, 4, 71928, 4235, 2592, 8152, 98320, 28864, 26073, 7, 12, 32490, 1004, 3066, 1022, 2525, 1126, 24666, 16619, 9285, 22799, 5, 72508, 35649, 44585, 86111, 162429, 130424, 33163, 24836, 93147, 24199, 571, 73, 11435, 39116, 29822, 9622, 1085...
[ 0.1373291015625, 0.051300048828125, 0.195068359375, 0.233642578125, 0.205810546875, 0.0168304443359375, 0.212890625, 0.2587890625, 0.29541015625, 0.0885009765625, 0.055419921875, 0.2091064453125, 0.14501953125, 0.303466796875, 0.048736572265625, 0.16748046875, 0.1910400390625, 0.16...
embed
10307575_c0
10307575
erlang
0
Title: passing runtime arguments to erlang when running rebar eunit Problem title: passing runtime arguments to erlang when running rebar eunit Tags: erlang, rebar, eunit Problem: passing runtime arguments to erlang when running rebar eunit In my startup script, I am starting erlang with: erl -args_file vm.args Current...
passing runtime arguments to erlang when running rebar eunit passing runtime arguments to erlang when running rebar eunit erlang rebar eunit args_file vm.args passing runtime arguments to erlang when running rebar eunit In my startup script, I am starting erlang with: Currently, while trying to run unit tests with reba...
[ 0.018798828125, 0.009033203125, 0.005706787109375, -0.01483154296875, 0.00119781494140625, -0.0103759765625, -0.012451171875, 0.0147705078125, -0.01611328125, -0.0087890625, 0.01116943359375, -0.00019073486328125, -0.01153564453125, 0.01611328125, 0.0029144287109375, 0.0203857421875, ...
[ 452, 6953, 11675, 6032, 10750, 7, 47, 72, 3066, 3229, 51042, 456, 1299, 1175, 6773, 79459, 29822, 81, 39, 61477, 73882, 26499, 72134, 678, 25072, 109921, 3917, 27875, 114122, 20, 35829, 9433, 101630, 5773, 4358 ]
[ 0.07623291015625, 0.0258636474609375, 0.09228515625, 0.15625, 0.2125244140625, 0.030303955078125, 0.041717529296875, 0.1287841796875, 0.27783203125, 0.011932373046875, 0.0692138671875, 0.1077880859375, 0.199951171875, 0.1094970703125, 0.2021484375, 0.163818359375, 0.177001953125, 0...
embed
31388643_c2
31388643
erlang
2
_NIF_TERM load_info){ DATA_RESOURCE = enif_open_resource_type(env, "mutArray", "DATA_RESOURCE", &cleanup, Code signals: Segmentation, enif_free, erl_nif.h, ErlNifResourceType, DATA_RESOURCE, ERL_NIF_TERM, DATA, new3DimArray, ErlNifEnv, enif_alloc_resource, enif_get_int, enif_alloc, enif_make_resource, get_nif, enif_get...
_NIF_TERM load_info){ DATA_RESOURCE = enif_open_resource_type(env, "mutArray", "DATA_RESOURCE", &cleanup, Code signals: Segmentation, enif_free, erl_nif.h, ErlNifResourceType, DATA_RESOURCE, ERL_NIF_TERM, DATA, new3DimArray, ErlNifEnv, enif_alloc_resource, enif_get_int, enif_alloc, enif_make_resource, get_nif, enif_get...
[ 0.0155029296875, 0.0145263671875, -0.005035400390625, 0.0208740234375, 0.01214599609375, -0.01953125, 0.0208740234375, 0.01361083984375, 0.0081787109375, -0.026611328125, 0.00225830078125, -0.0169677734375, 0.007080078125, -0.0159912109375, -0.006500244140625, 0.0008087158203125, 0.0...
[ 101, 7787, 919, 14755, 594, 72367, 7319, 391, 17758, 34465, 76234, 10854, 2203, 22, 3190, 59636, 107, 60427, 454, 50986, 33, 334, 14311, 7614, 7092, 397, 619, 11030, 66, 2037, 28864, 26073, 7, 38462, 674, 2320, 32087, 72, 141, 93, 420, ...
[ 0.03594970703125, 0.1900634765625, 0.2274169921875, 0.2086181640625, 0.0753173828125, 0.24853515625, 0.2413330078125, 0.101806640625, 0.1890869140625, 0.167236328125, 0.236083984375, 0.1302490234375, 0.0364990234375, 0.07501220703125, 0.161376953125, 0.1680908203125, 0.0948486328125,...
embed
16454523_c1
16454523
erlang
1
statement to generate the secret code and compare it to the guess: -module(console_io). -export([display/1, display_welcome_message/0, gets/1]). display(Message) -> io:format(Message). gets(Message) -> {ok, [X]} = io:fread(Message, "~s"), Code = secret_code:generate, Code -- [X]. display_welcome_message() -> display("...
statement to generate the secret code and compare it to the guess: -module(console_io). -export([display/1, display_welcome_message/0, gets/1]). display(Message) -> io:format(Message). gets(Message) -> {ok, [X]} = io:fread(Message, "~s"), Code = secret_code:generate, Code -- [X]. display_welcome_message() -> display("...
[ 0.002197265625, 0.0238037109375, -0.00180816650390625, 0.002685546875, 0.036376953125, 0.00095367431640625, 0.00860595703125, -0.003204345703125, 0.0030517578125, -0.0211181640625, -0.00433349609375, 0.0101318359375, 0.0086669921875, -0.0022430419921875, 0.003631591796875, -0.004180908...
[ 63805, 47, 139392, 70, 23410, 18151, 136, 69101, 442, 57767, 20, 83279, 40777, 846, 180758, 3827, 20706, 11583, 44116, 8420, 45738, 74157, 429, 107838, 62163, 6011, 22995, 51727, 685, 1542, 12176, 712, 2306, 28864, 40899, 48281, 67, 1456, 5...
[ 0.2049560546875, 0.178955078125, 0.2178955078125, 0.042877197265625, 0.26953125, 0.235107421875, 0.01715087890625, 0.2381591796875, 0.001617431640625, 0.263671875, 0.010467529296875, 0.12890625, 0.1385498046875, 0.1929931640625, 0.1925048828125, 0.004791259765625, 0.135986328125, 0...
embed
20148016_c1
20148016
erlang
1
and Tsung, so perhaps I've misinterpreted how these commands need to be structured, or what Tsung's eval in ts_utils needs to be fed. It seems to use the standard Erlang scan, parse and eval methods, so I'd imagine that it most certainly supports branching operations and functions. So my question itself boils down to:...
and Tsung, so perhaps I've misinterpreted how these commands need to be structured, or what Tsung's eval in ts_utils needs to be fed. It seems to use the standard Erlang scan, parse and eval methods, so I'd imagine that it most certainly supports branching operations and functions. So my question itself boils down to:...
[ -0.003021240234375, 0.0263671875, 0.00165557861328125, -0.00083160400390625, 0.012451171875, 0.0033416748046875, 0.0067138671875, -0.017333984375, 0.01092529296875, -0.0308837890625, 0.01055908203125, 0.0155029296875, 0.00848388671875, -0.0032958984375, 0.01544189453125, 0.017944335937...
[ 136, 384, 77524, 95134, 1239, 158288, 6097, 75101, 7, 3871, 45646, 71, 28, 1405, 61636, 1003, 7870, 27117, 51158, 37202, 4527, 5570, 1004, 3066, 44954, 366, 184, 150624, 28987, 442, 68782, 8060, 32845, 59207, 41018, 32354, 9655, 7565, 903, ...
[ 0.06591796875, 0.1142578125, 0.3037109375, 0.0249786376953125, 0.0173492431640625, 0.112060546875, 0.032501220703125, 0.244140625, 0.0433349609375, 0.046539306640625, 0.125732421875, 0.013946533203125, 0.048309326171875, 0.207763671875, 0.154541015625, 0.1802978515625, 0.146362304687...
embed
38454483_c0
38454483
erlang
0
Title: Tuple as Key for ets table? Problem title: Tuple as Key for ets table? Tags: erlang, ets Problem: Tuple as Key for ets table? I want to store tuples regarding information on other network participants in an ETS table. I would like to use a tuple of {ip_address(), port_number()} (return of inet:peername(Socket) a...
Tuple as Key for ets table? Tuple as Key for ets table? erlang ets Tuple Key ip_address port_number inet:peername Socket Tuple as Key for ets table? I want to store tuples regarding information on other network participants in an ETS table. I would like to use a tuple of {ip_address(), port_number()} (return of inet:pe...
[ 0.0194091796875, 0.0167236328125, -0.0018463134765625, -0.0125732421875, 0.00830078125, -0.01239013671875, -0.01025390625, -0.001953125, -0.008544921875, -0.0277099609375, 0.012451171875, 0.030029296875, -0.000885009765625, 0.03173828125, -0.01348876953125, 0.013916015625, -0.0025024...
[ 1371, 8705, 237, 26824, 100, 82, 7, 23180, 72, 3066, 254, 107421, 11469, 2606, 1297, 126, 1081, 11627, 1061, 27853, 3444, 4343, 370, 99726, 118861, 4677, 3789, 33120, 56480, 83435, 1884, 4527, 3442, 65395, 56, 8912, 22799, 112820, 161, 16...
[ 0.1649169921875, 0.2449951171875, 0.10028076171875, 0.20654296875, 0.055450439453125, 0.17431640625, 0.1571044921875, 0.2030029296875, 0.05548095703125, 0.18115234375, 0.032867431640625, 0.102783203125, 0.112548828125, 0.04345703125, 0.0260162353515625, 0.038055419921875, 0.052307128...
embed
31153396_c0
31153396
erlang
0
Title: Choosing Erlang webserver Problem title: Choosing Erlang webserver Tags: erlang, cowboy, webmachine, webserver, yaws Problem: Choosing Erlang webserver Yep, subjective question. But here are a lot of such questions that got good answers. So now I have to try to develop some REST API with Erlang, as I got from go...
Choosing Erlang webserver Choosing Erlang webserver erlang cowboy webmachine webserver yaws Choosing Erlang Choosing Erlang webserver Yep, subjective question. But here are a lot of such questions that got good answers. So now I have to try to develop some REST API with Erlang, as I got from google I have to install so...
[ -0.00927734375, 0.0034942626953125, -0.004913330078125, 0.0174560546875, -0.01104736328125, 0.015380859375, -0.0281982421875, 0.011474609375, -0.01055908203125, -0.0032196044921875, -0.000606536865234375, -0.0155029296875, 0.02294921875, -0.0018157958984375, 0.00360107421875, 0.0105590...
[ 4960, 232, 214, 1004, 3066, 1467, 39642, 72, 552, 434, 30885, 103149, 151, 19725, 254, 28368, 5844, 9655, 5915, 111, 17582, 4127, 35166, 5036, 765, 9790, 85493, 627, 21828, 61687, 678, 26484, 20600, 1311, 4002, 2369, 2501, 318, 14051, 756...
[ 0.0650634765625, 0.077392578125, 0.0218505859375, 0.1815185546875, 0.303466796875, 0.1121826171875, 0.2318115234375, 0.10302734375, 0.024078369140625, 0.1041259765625, 0.258056640625, 0.21435546875, 0.115478515625, 0.20751953125, 0.00152587890625, 0.0596923828125, 0.011688232421875, ...
embed
40468653_c0
40468653
erlang
0
Title: how to check if a string is a composition of another string? Problem title: how to check if a string is a composition of another string? Tags: erlang Problem: how to check if a string is a composition of another string? I would like to know how check if a string is a composition of another in the case bellow : i...
how to check if a string is a composition of another string? how to check if a string is a composition of another string? erlang string:substr how to check if a string is a composition of another string? I would like to know how check if a string is a composition of another in the case bellow : I have done this : but I...
[ -0.01806640625, -0.00616455078125, 0.011474609375, 0.058837890625, -0.0211181640625, 0.015380859375, 0.0067138671875, 0.000782012939453125, 0.0247802734375, -0.0146484375, 0.00286865234375, 0.00634765625, -0.002593994140625, -0.00494384765625, 0.00439453125, -0.004486083984375, 0.024...
[ 3642, 47, 12765, 2174, 79315, 83, 10, 166577, 111, 15700, 72, 3066, 196842, 42, 1884, 3714, 7225, 41566, 765, 903, 21342, 175199, 10588 ]
[ 0.0748291015625, 0.08154296875, 0.2005615234375, 0.0963134765625, 0.245361328125, 0.1005859375, 0.0880126953125, 0.217529296875, 0.100341796875, 0.116455078125, 0.0274658203125, 0.1485595703125, 0.0672607421875, 0.0908203125, 0.01055908203125, 0.007781982421875, 0.0175018310546875, ...
embed
4736036_c0
4736036
erlang
0
Title: erlang send socket cyrillic data Problem title: erlang send socket cyrillic data Tags: erlang, unicode, tcp, sockets, erlang-otp Problem: erlang send socket cyrillic data I'm trying to send data from the server written in Erlang: gen_tcp:send(Socket, "Server connection refused \r\n"). It's ok. But when I try to ...
erlang send socket cyrillic data erlang send socket cyrillic data erlang unicode tcp sockets erlang-otp gen_tcp:send Socket Server erlang send socket cyrillic data I'm trying to send data from the server written in Erlang: It's ok. But when I try to send data with non-latin symbols, e. g. cyrillic, I see the error repo...
[ 0.007354736328125, 0.0228271484375, -0.0069580078125, 0.006195068359375, -0.0107421875, -0.0213623046875, 0.005279541015625, 0.021728515625, -0.0322265625, -0.0111083984375, 0.02783203125, -0.003936767578125, 0.0093994140625, 0.01129150390625, -0.007232666015625, 0.0120849609375, 0.0...
[ 72, 3066, 25379, 221, 27853, 19932, 15601, 9120, 2053, 60347, 112, 121422, 818, 254, 9226, 39285, 1061, 22687, 31577, 1295, 10723, 59121, 23, 1004, 3664, 9790, 678, 351, 2335, 73, 26582, 1957, 18499, 13416, 4527, 175399, 79315, 124850, 1829...
[ 0.115966796875, 0.27685546875, 0.1103515625, 0.08880615234375, 0.1820068359375, 0.055419921875, 0.1435546875, 0.1434326171875, 0.1524658203125, 0.10748291015625, 0.0704345703125, 0.096435546875, 0.0711669921875, 0.080322265625, 0.0704345703125, 0.0948486328125, 0.06256103515625, 0....
embed
4761727_c0
4761727
erlang
0
Title: Erlang, lists: find element with maximum defined by a fun Problem title: Erlang, lists: find element with maximum defined by a fun Tags: list, erlang Problem: Erlang, lists: find element with maximum defined by a fun The lists module provides a function to find the maximum of a list, lists:max(List) . Is there a...
Erlang, lists: find element with maximum defined by a fun Erlang, lists: find element with maximum defined by a fun list erlang Erlang lists:max List lists:maxfun Fun Erlang, lists: find element with maximum defined by a fun The lists module provides a function to find the maximum of a list, lists:max(List) . Is there ...
[ 0.004669189453125, 0.0024871826171875, 0.01953125, 0.0019683837890625, -0.0034332275390625, 0.0184326171875, 0.00115966796875, -0.00023365020751953125, -0.0009918212890625, -0.018798828125, 0.00640869140625, -0.019775390625, -0.0098876953125, -0.027587890625, 0.01312255859375, -0.01379...
[ 1004, 3066, 5303, 7, 12, 7413, 12830, 678, 38132, 61924, 7477, 72, 24084, 32036, 16498, 28670, 88996, 87344, 32354, 47, 111, 154663, 2071, 2685, 1884, 97249, 34475, 5608, 11814, 100, 756, 48325, 18389, 8337, 903, 4420, 64457, 34292, 27781 ]
[ 0.158203125, 0.303466796875, 0.242919921875, 0.140625, 0.01348876953125, 0.1416015625, 0.1641845703125, 0.030914306640625, 0.2548828125, 0.13525390625, 0.201416015625, 0.07958984375, 0.216796875, 0.209228515625, 0.264892578125, 0.1787109375, 0.17333984375, 0.074462890625, 0.21752...
embed
27203104_c0
27203104
erlang
0
Title: Erlang Syntax error before end Problem title: Erlang Syntax error before end Tags: erlang, syntax, case Problem: Erlang Syntax error before end I'm trying to make a dots and boxes game, however when I try to execute this code that evaluates whether a wall has been drawn, I get a 'syntax error before end' error. ...
Erlang Syntax error before end Erlang Syntax error before end erlang syntax case Erlang Syntax Start Steps array:get Rooms Erlang Syntax error before end I'm trying to make a dots and boxes game, however when I try to execute this code that evaluates whether a wall has been drawn, I get a 'syntax error before end' erro...
[ -0.00848388671875, 0.0263671875, -0.0162353515625, -0.0004291534423828125, -0.0164794921875, 0.0022735595703125, -0.0123291015625, -0.01019287109375, 0.002532958984375, -0.00579833984375, 0.01171875, 0.0166015625, 0.004058837890625, -0.02490234375, 0.021240234375, -0.0208740234375, 0...
[ 1004, 3066, 19010, 86531, 18499, 8108, 3564, 72, 6002, 7225, 13794, 50478, 10298, 53, 3794, 38484, 7, 31577, 54, 933, 136, 16530, 6712, 9790, 71924, 18151, 151575, 36766, 58982, 1556, 2809, 79442, 19, 12654 ]
[ 0.11865234375, 0.26708984375, 0.1488037109375, 0.2060546875, 0.197265625, 0.1536865234375, 0.181396484375, 0.050262451171875, 0.121337890625, 0.044158935546875, 0.0274200439453125, 0.10186767578125, 0.048492431640625, 0.0254669189453125, 0.05938720703125, 0.189208984375, 0.0146789550...
embed
47233852_c0
47233852
erlang
0
Title: Colon in Erlang Cowboy Problem title: Colon in Erlang Cowboy Tags: url, cowboy, router, erlang Problem: Colon in Erlang Cowboy I am using leptus , which is based on Cowboy , as a RESTful server. I have a problem with router. In my code: post("/restconf/operations/nm-restful:create-mp", Req, State) -> {200, {json...
Colon in Erlang Cowboy Colon in Erlang Cowboy url cowboy router erlang Colon Erlang Cowboy nm-restful:create-mp Req State Colon in Erlang Cowboy I am using leptus , which is based on Cowboy , as a RESTful server. I have a problem with router. In my code: In Cowboy, when there is a colon, it will do binding. But what if...
[ -0.013916015625, -0.0133056640625, 0.00113677978515625, 0.00189971923828125, -0.007354736328125, -0.00341796875, 0.0201416015625, -0.006744384765625, 0.0030975341796875, -0.0252685546875, 0.00286865234375, -0.03515625, 0.005279541015625, 0.0113525390625, 0.004058837890625, -0.002426147...
[ 156637, 23, 1004, 3066, 1311, 434, 30885, 25002, 552, 122188, 72, 39, 56644, 7844, 7612, 2182, 2676, 853, 864, 22836, 17368, 29963, 2143, 35509, 237, 627, 21828, 10723, 2967, 18151, 360, 3229, 2685, 10, 46512, 1221, 54, 128239, 2367, 2174...
[ 0.2607421875, 0.05340576171875, 0.16455078125, 0.27392578125, 0.058624267578125, 0.14013671875, 0.25244140625, 0.177978515625, 0.0247955322265625, 0.2161865234375, 0.09906005859375, 0.028167724609375, 0.1336669921875, 0.147705078125, 0.0986328125, 0.02008056640625, 0.113037109375, ...
embed
16759456_c0
16759456
erlang
0
Title: How can one update an ETS table via mysql triggers Problem title: How can one update an ETS table via mysql triggers Tags: erlang, ets, mysql, triggers Problem: How can one update an ETS table via mysql triggers I need to update an ETS table from changes made to a mysql table: the mysql table is accessible from ...
How can one update an ETS table via mysql triggers How can one update an ETS table via mysql triggers erlang ets mysql triggers How ETS How can one update an ETS table via mysql triggers I need to update an ETS table from changes made to a mysql table: the mysql table is accessible from within the erlang application. I...
[ 0.00070953369140625, 0.021728515625, -0.00640869140625, -0.0240478515625, 0.0098876953125, 0.0264892578125, -0.023193359375, 0.00750732421875, 0.006134033203125, -0.020751953125, 0.01251220703125, 0.00701904296875, -0.005706787109375, 0.01507568359375, 0.0296630859375, 0.00765991210937...
[ 11249, 831, 1632, 28350, 142, 83435, 23180, 1829, 759, 7, 99247, 185553, 72, 3066, 82, 3871, 1295, 65572, 10, 81522, 28032, 38415, 47644, 51139, 5809, 9433, 89289, 150011, 1467, 4027, 107730 ]
[ 0.07916259765625, 0.083251953125, 0.0655517578125, 0.193359375, 0.0216064453125, 0.2403564453125, 0.2303466796875, 0.1104736328125, 0.137939453125, 0.08013916015625, 0.2078857421875, 0.2315673828125, 0.10150146484375, 0.2052001953125, 0.15966796875, 0.042083740234375, 0.0447998046875...
embed
13909943_c0
13909943
erlang
0
Title: Killing a process connected to an erlang's port Problem title: Killing a process connected to an erlang's port Tags: erlang Problem: Killing a process connected to an erlang's port I want to write a some kind of supervisor and I'm trying to implement function that closes an external program. The extern...
Killing a process connected to an erlang's port Killing a process connected to an erlang's port erlang Killing Killing a process connected to an erlang's port I want to write a some kind of supervisor and I'm trying to implement function that closes an external program. The external process is connected to an...
[ -0.001617431640625, 0.01434326171875, -0.0179443359375, -0.01373291015625, -0.00408935546875, -0.01177978515625, -0.01348876953125, 0.005523681640625, 0.0006103515625, -0.0546875, -0.0159912109375, 0.007354736328125, -0.00689697265625, 0.039306640625, 0.0269775390625, 0.0203857421875, ...
[ 104431, 214, 9433, 162711, 47, 72, 3066, 3768, 11469, 3444, 33022, 1601, 51858, 31577, 29479, 32354, 20903, 173591, 1528, 18151, 678, 6528, 3642, 903, 135834, 26073, 51053, 6953, 83, 959, 29806, 5941, 103391, 22027, 18, 82230, 98, 159, 3134...
[ 0.2135009765625, 0.08203125, 0.20361328125, 0.1884765625, 0.05657958984375, 0.134521484375, 0.27587890625, 0.045074462890625, 0.1851806640625, 0.05157470703125, 0.0810546875, 0.07012939453125, 0.17578125, 0.030975341796875, 0.10577392578125, 0.1285400390625, 0.193603515625, 0.16125...
embed
38700899_c0
38700899
erlang
0
Title: is there any way to get ether/ip headers via gen_tcp? Problem title: is there any way to get ether/ip headers via gen_tcp? Tags: header, gen-tcp, tcp, erlang, ethernet Problem: is there any way to get ether/ip headers via gen_tcp? is there any way to get not only body of incoming message. but also ether/IP heade...
is there any way to get ether/ip headers via gen_tcp? is there any way to get ether/ip headers via gen_tcp? header gen-tcp tcp erlang ethernet gen_tcp gen_tcp:connect IpAddr Port CONNECT_TIMEOUT is there any way to get ether/ip headers via gen_tcp? is there any way to get not only body of incoming message. but also eth...
[ 0.03173828125, 0.01104736328125, -0.02392578125, 0.01068115234375, -0.007171630859375, -0.0145263671875, -0.0096435546875, 0.01104736328125, 0.001556396484375, -0.060546875, 0.03759765625, 0.00421142578125, -0.0228271484375, -0.003692626953125, 0.0015106201171875, -0.0225830078125, -...
[ 2499, 3917, 2046, 9319, 64, 3442, 10336, 1314, 1829, 9226, 454, 18, 121422, 28, 56, 72, 3066, 1179, 135457, 7569, 13791, 91394, 618, 66820, 52001, 14361, 277, 26008, 10931, 111, 17368, 53299, 89914, 36457, 6226, 9433, 5036, 221, 27853, 14...
[ 0.01580810546875, 0.0723876953125, 0.1024169921875, 0.1632080078125, 0.05609130859375, 0.117919921875, 0.1834716796875, 0.17431640625, 0.06671142578125, 0.1688232421875, 0.053314208984375, 0.030731201171875, 0.1925048828125, 0.01641845703125, 0.08837890625, 0.03125, 0.18310546875, ...
embed
27147174_c0
27147174
erlang
0
Title: Erlang unlinked process terminates Problem title: Erlang unlinked process terminates Tags: erlang Problem: Erlang unlinked process terminates If I have a process A that makes call to a function in process B (procB:func().), and func() generates an error during execution. Process B would terminate, but what about...
Erlang unlinked process terminates Erlang unlinked process terminates erlang Erlang Reply procB:func Erlang unlinked process terminates If I have a process A that makes call to a function in process B (procB:func().), and func() generates an error during execution. Process B would terminate, but what about process A? C...
[ 0.033203125, 0.013671875, 0.0159912109375, 0.0096435546875, -0.0111083984375, -0.00096893310546875, 0.00555419921875, -0.00494384765625, -0.002899169921875, -0.014404296875, -0.013427734375, 0.019287109375, -0.0050048828125, 0.031494140625, 0.017822265625, 0.004180908203125, 0.028808...
[ 1004, 3066, 51, 10187, 297, 9433, 121011, 90, 72, 122813, 10402, 571, 16498, 62, 30482, 11782, 47, 32354, 335, 3454, 238, 7477, 132, 139392, 18499, 20271, 71924, 123996, 2806, 13, 137399, 43731, 15573, 15044, 50218, 98753, 6626, 3126 ]
[ 0.164794921875, 0.272216796875, 0.0909423828125, 0.1998291015625, 0.0657958984375, 0.1888427734375, 0.20361328125, 0.06671142578125, 0.072021484375, 0.062255859375, 0.1351318359375, 0.148193359375, 0.0972900390625, 0.10528564453125, 0.0008544921875, 0.1044921875, 0.04156494140625, ...
embed
72360320_c1
72360320
erlang
1
(T). {ok,[{string,1,"a"}, {string,1,"b"}, {string,1,"c"}, {string,2,"d"}, {string,2,"e"}, {string,3,"f"}]} What would be the proper way to signal to the parser that each line should be treated as a separate item? I would like my result to look something like: {ok,[[{string,1,"a"}, {string,1,"b"}, {string,1,"c"}], [{str...
(T). {ok,[{string,1,"a"}, {string,1,"b"}, {string,1,"c"}, {string,2,"d"}, {string,2,"e"}, {string,3,"f"}]} What would be the proper way to signal to the parser that each line should be treated as a separate item? I would like my result to look something like: {ok,[[{string,1,"a"}, {string,1,"b"}, {string,1,"c"}], [{str...
[ -0.00927734375, -0.0118408203125, -0.0018157958984375, 0.031982421875, -0.0238037109375, 0.0159912109375, -0.00823974609375, 0.0057373046875, 0.0026092529296875, -0.0045166015625, -0.00159454345703125, -0.01165771484375, -0.01556396484375, 0.003631591796875, -0.00153350830078125, 0.006...
[ 618, 194, 685, 91693, 418, 11, 71, 13, 363, 420, 2806, 27798, 3917, 47, 26073, 366, 2189, 450, 12638, 13315, 5608, 191607, 237, 10, 84797, 35735, 1884, 16750, 6713, 275, 304, 28864, 7, 1250, 1264, 218584, 425, 54123, 155455, 117262, 637...
[ 0.1627197265625, 0.0176544189453125, 0.15966796875, 0.1793212890625, 0.014678955078125, 0.062744140625, 0.061279296875, 0.09185791015625, 0.06195068359375, 0.03790283203125, 0.0276336669921875, 0.1339111328125, 0.0816650390625, 0.043853759765625, 0.2451171875, 0.1536865234375, 0.1699...
embed
45950921_c2
45950921
erlang
2
write a macro get_list , and make 2 calls instead. test_macro.erl -module(test_macro). %% API Code signals: Erlang, ANIMAL, animal_name, PEOPLE, people_name, data_animal, animal.hrl, API, get_ids, data_people, people.hrl, John, Ken, Tom, Healthy, data_animal.erl, data_people.erl, get_animal_list, get_people_list, Age,...
write a macro get_list , and make 2 calls instead. test_macro.erl -module(test_macro). %% API Code signals: Erlang, ANIMAL, animal_name, PEOPLE, people_name, data_animal, animal.hrl, API, get_ids, data_people, people.hrl, John, Ken, Tom, Healthy, data_animal.erl, data_people.erl, get_animal_list, get_people_list, Age,...
[ -0.01409912109375, -0.003387451171875, 0.0002689361572265625, 0.0274658203125, 0.0091552734375, 0.00159454345703125, -0.0020751953125, 0.01446533203125, 0.0247802734375, -0.039794921875, -0.005462646484375, 0.0016937255859375, -0.007232666015625, -0.0019683837890625, 0.042724609375, -0...
[ 33022, 10, 111789, 2046, 6562, 6, 136, 3249, 116, 11782, 64457, 3034, 192, 15322, 56, 141, 83279, 13, 6954, 3949, 61687, 28864, 26073, 7, 1004, 3066, 24794, 114626, 26249, 11627, 17051, 670, 103084, 3395, 2053, 161834, 4097, 30185, 223354, ...
[ 0.14013671875, 0.00762939453125, 0.28857421875, 0.1529541015625, 0.28369140625, 0.010467529296875, 0.0202484130859375, 0.105712890625, 0.156494140625, 0.236328125, 0.172119140625, 0.201416015625, 0.060028076171875, 0.212158203125, 0.107421875, 0.1767578125, 0.1669921875, 0.04443359...
embed
6820195_c0
6820195
erlang
0
Title: Future investment: Erlang vs. Scala Problem title: Future investment: Erlang vs. Scala Tags: concurrency, erlang, scala Problem: Future investment: Erlang vs. Scala since concurrent programming becomes constantly more important, I was wondering what you think about Erlang vs. Scala in that respect. It seems to m...
Future investment: Erlang vs. Scala Future investment: Erlang vs. Scala concurrency erlang scala Future Erlang Scala Future investment: Erlang vs. Scala since concurrent programming becomes constantly more important, I was wondering what you think about Erlang vs. Scala in that respect. It seems to me that Scala has a ...
[ 0.021240234375, 0.01129150390625, -0.005096435546875, -0.01123046875, -0.012451171875, -0.017333984375, -0.00848388671875, 0.01416015625, 0.0011444091796875, -0.0264892578125, -0.004302978515625, -0.004791259765625, 0.01556396484375, -0.00311279296875, 0.01513671875, -0.00836181640625,...
[ 94724, 77021, 1004, 3066, 20209, 152653, 11, 108636, 982, 72, 146232, 133244, 56037, 24209, 178308, 1286, 5526, 5351, 37202, 150679, 38937, 3647, 38516, 124498, 56, 22690, 3501, 8562, 79, 330, 17582, 28368, 2806, 11522, 707, 46876 ]
[ 0.2039794921875, 0.182861328125, 0.1629638671875, 0.306884765625, 0.142333984375, 0.2344970703125, 0.2022705078125, 0.1376953125, 0.1109619140625, 0.07794189453125, 0.19287109375, 0.190673828125, 0.118896484375, 0.0394287109375, 0.0615234375, 0.017425537109375, 0.0792236328125, 0.0...
embed
41647711_c0
41647711
erlang
0
Title: Erlang tail recursion for finding the number of elements in each list of the input list Problem title: Erlang tail recursion for finding the number of elements in each list of the input list Tags: erlang Problem: Erlang tail recursion for finding the number of elements in each list of the input list How may I us...
Erlang tail recursion for finding the number of elements in each list of the input list Erlang tail recursion for finding the number of elements in each list of the input list erlang Erlang Erlang tail recursion for finding the number of elements in each list of the input list How may I use tail recursion in Erlang to ...
[ 0.004547119140625, 0.0196533203125, -0.00836181640625, 0.0033416748046875, -0.005035400390625, 0.015380859375, -0.00390625, -0.015625, -0.000843048095703125, -0.020263671875, 0.0017852783203125, -0.049560546875, 0.019287109375, 0.0281982421875, 0.0205078125, 0.0057373046875, 0.012512...
[ 1004, 3066, 46741, 195625, 1830, 100, 90791, 14012, 80854, 23, 12638, 5303, 107730, 72, 1543, 4527, 6, 5154, 87, 765, 25256, 33579, 50740, 122101, 90173, 1884, 47, 140992, 378, 17550, 33636, 12830, 9842, 1679, 123309, 56037, 22362 ]
[ 0.1849365234375, 0.30078125, 0.283447265625, 0.239990234375, 0.1405029296875, 0.030303955078125, 0.119140625, 0.1697998046875, 0.1953125, 0.0767822265625, 0.10198974609375, 0.22021484375, 0.18212890625, 0.067138671875, 0.049957275390625, 0.08465576171875, 0.004425048828125, 0.06805...
embed
1947180_c0
1947180
erlang
0
Title: What's the difference between "green threads" and Erlang's processes? Problem title: What's the difference between "green threads" and Erlang's processes? Tags: multithreading, lightweight-processes, green-threads, erlang Problem: What's the difference between "green threa...
What's the difference between "green threads" and Erlang's processes? What's the difference between "green threads" and Erlang's processes? multithreading lightweight-processes green-threads erlang What Erlang What's the difference between "green threads" and Erlang's processes? ...
[ 0.0191650390625, 0.00162506103515625, -0.0096435546875, 0.0079345703125, -0.003997802734375, 0.0020751953125, 0.0172119140625, 0.0004253387451171875, -0.008056640625, -0.00518798828125, 0.00128936767578125, 0.03173828125, -0.01177978515625, 0.0201416015625, 0.010986328125, 0.03515625, ...
[ 4865, 3768, 70, 60212, 17721, 99433, 86997, 7, 136, 1004, 3066, 9433, 90, 3869, 65847, 11, 22729, 165598, 63923, 50997, 927, 39116, 72, 25, 96, 6958, 2301, 18, 2046, 8561 ]
[ 0.03717041015625, 0.04620361328125, 0.0631103515625, 0.19189453125, 0.1126708984375, 0.2362060546875, 0.246337890625, 0.095458984375, 0.07470703125, 0.1494140625, 0.28271484375, 0.155029296875, 0.0521240234375, 0.07666015625, 0.12841796875, 0.0141143798828125, 0.0904541015625, 0.16...
embed
45840160_c0
45840160
erlang
0
Title: Erlang - lists transformation Problem title: Erlang - lists transformation Tags: erlang, list Problem: Erlang - lists transformation I would like some help, please. I have a list of users and their invoices. There can be many users and each user can have many invoices. So, I would like to go from [{user, invoice...
Erlang - lists transformation Erlang - lists transformation erlang list Erlang user1 invoice11 invoice12 user2 invoice21 invoice22 Erlang - lists transformation I would like some help, please. I have a list of users and their invoices. There can be many users and each user can have many invoices. So, I would like to go...
[ 0.0032196044921875, -0.010498046875, 0.0155029296875, -0.00130462646484375, -0.02099609375, 0.012451171875, -0.024169921875, 0.0089111328125, 0.007598876953125, -0.00592041015625, 0.0159912109375, 0.017333984375, 0.00634765625, 0.03515625, -0.005218505859375, 0.0014190673828125, 0.01...
[ 1004, 3066, 20, 5303, 7, 167201, 72, 38937, 418, 23, 965, 2980, 1662, 1530, 304, 3117, 4015, 2806, 1884, 4358, 22936, 765, 10, 72095, 136, 26789, 831, 5941, 12638, 47, 738, 1295, 65918, 73, 27781, 96760, 903, 360, 188, 27 ]
[ 0.1632080078125, 0.282470703125, 0.0054931640625, 0.223876953125, 0.06903076171875, 0.24169921875, 0.1199951171875, 0.182373046875, 0.047882080078125, 0.1192626953125, 0.2137451171875, 0.09490966796875, 0.108154296875, 0.11669921875, 0.07342529296875, 0.1251220703125, 0.14892578125, ...
embed
13361229_c0
13361229
erlang
0
Title: Hybrid heap support in Erlang R15B02? Problem title: Hybrid heap support in Erlang R15B02? Tags: compilation, heap-memory, configure, erlang Problem: Hybrid heap support in Erlang R15B02? Does Erlang R15B02 have support for hybrid heap? I run configure --enable-hybrid-heap blabla... and make it, but no [hybrid-h...
Hybrid heap support in Erlang R15B02? Hybrid heap support in Erlang R15B02? compilation heap-memory configure erlang Hybrid Erlang R15B02 erts-5.9.2 smp:16:16 async-threads:0 kernel-poll:false Hybrid heap support in Erlang R15B02? Does Erlang R15B02 have support for hybrid heap? I run configure --enable-hybrid-heap bla...
[ -0.0016937255859375, 0.01116943359375, 0.006317138671875, 0.016357421875, 0.002777099609375, 0.0216064453125, -0.0162353515625, -0.01031494140625, -0.00012159347534179688, 0.01470947265625, 0.000652313232421875, -0.0020599365234375, 0.0233154296875, -0.00799560546875, 0.021728515625, -...
[ 175833, 764, 2631, 8060, 1004, 3066, 627, 1837, 571, 9550, 98352, 109005, 222495, 72, 933, 151309, 2676, 22354, 12654, 39116, 77924, 5877, 113490, 2886, 3038, 100269, 1106, 7119, 110, 49938, 141377, 118664 ]
[ 0.23876953125, 0.158447265625, 0.1641845703125, 0.1834716796875, 0.079345703125, 0.2020263671875, 0.05126953125, 0.2017822265625, 0.046173095703125, 0.191650390625, 0.083984375, 0.103271484375, 0.14599609375, 0.022735595703125, 0.068115234375, 0.0948486328125, 0.0631103515625, 0.05...
embed
67362333_c0
67362333
erlang
0
Title: Making a counter of repeating elements in a list and add it to a map ERLANG Problem title: Making a counter of repeating elements in a list and add it to a map ERLANG Tags: erlang Problem: Making a counter of repeating elements in a list and add it to a map ERLANG i have to make a function to count all the repea...
Making a counter of repeating elements in a list and add it to a map ERLANG Making a counter of repeating elements in a list and add it to a map ERLANG erlang Making ERLANG Making a counter of repeating elements in a list and add it to a map ERLANG i have to make a function to count all the repeating elements on a list...
[ -0.00135040283203125, 0.00128173828125, -0.015380859375, 0.007110595703125, -0.0081787109375, 0.0037841796875, -0.00384521484375, 0.0081787109375, 0.0159912109375, -0.023193359375, 0.0009765625, -0.0247802734375, 0.027099609375, 0.03271484375, 0.0174560546875, 0.00543212890625, -0.01...
[ 13676, 214, 10, 105416, 111, 119140, 80854, 23, 5303, 15190, 47, 22288, 28695, 73386, 72, 3066, 765, 3249, 32354, 54529, 756, 70, 2804, 3642, 103351, 621, 3934, 516, 513, 17258, 22894, 31, 80218, 759, 1556, 6713, 1884, 468, 116, 106, 44...
[ 0.1009521484375, 0.1590576171875, 0.0484619140625, 0.273681640625, 0.04864501953125, 0.288330078125, 0.2039794921875, 0.0279693603515625, 0.2008056640625, 0.1654052734375, 0.037933349609375, 0.214111328125, 0.105224609375, 0.25341796875, 0.0288543701171875, 0.2059326171875, 0.0121154...
embed
44185260_c0
44185260
erlang
0
Title: Phoenix parsing API paramaters Problem title: Phoenix parsing API paramaters Tags: erlang, phoenix-framework, elixir Problem: Phoenix parsing API paramaters I'm trying to clean up this API endpoint. Is there a way that I can put the params into a model or something? def listen conn, %{"messages" => [%{"body" => ...
Phoenix parsing API paramaters Phoenix parsing API paramaters erlang phoenix-framework elixir Phoenix API Phoenix parsing API paramaters I'm trying to clean up this API endpoint. Is there a way that I can put the params into a model or something?
[ -0.0152587890625, 0.0213623046875, -0.006317138671875, 0.0096435546875, -0.00043487548828125, 0.0234375, -0.023681640625, 0.00075531005859375, -0.00640869140625, -0.03369140625, 0.015380859375, -0.02587890625, 0.0003566741943359375, 0.0087890625, 0, 0.007293701171875, -0.026000976562...
[ 133720, 366, 6953, 61687, 121, 2227, 1314, 72, 3066, 53073, 33, 4084, 160328, 15296, 38308, 31577, 47, 46622, 1257, 903, 3564, 38496, 3917, 831, 3884, 4432, 3934, 3299 ]
[ 0.281005859375, 0.193115234375, 0.09033203125, 0.2294921875, 0.1778564453125, 0.15869140625, 0.09722900390625, 0.071044921875, 0.2239990234375, 0.061309814453125, 0.0628662109375, 0.091552734375, 0.0914306640625, 0.0638427734375, 0.1749267578125, 0.056610107421875, 0.037322998046875,...
embed
69462473_c0
69462473
erlang
0
Title: Getting failure in build for IntelliJ when compiling with Erlang plugin Problem title: Getting failure in build for IntelliJ when compiling with Erlang plugin Tags: erlang, intellij-idea, kotlin Problem: Getting failure in build for IntelliJ when compiling with Erlang plugin I am using erlang and Kotlin in my pr...
Getting failure in build for IntelliJ when compiling with Erlang plugin Getting failure in build for IntelliJ when compiling with Erlang plugin erlang intellij-idea kotlin Getting IntelliJ Erlang Getting failure in build for IntelliJ when compiling with Erlang plugin I am using erlang and Kotlin in my project and getti...
[ -0.0169677734375, 0.0185546875, -0.01373291015625, -0.0025482177734375, -0.0186767578125, 0.0247802734375, -0.027099609375, -0.0032806396484375, -0.014404296875, 0.0169677734375, -0.019287109375, -0.013671875, -0.0011749267578125, 0.01953125, 0.02001953125, -0.0024261474609375, -0.01...
[ 210732, 137578, 23, 45367, 100, 24018, 150, 1375, 9969, 678, 1004, 3066, 69993, 49725, 72, 33049, 170, 30610, 1975, 2397, 17368, 136, 19856, 13452, 35064, 18499 ]
[ 0.030975341796875, 0.181884765625, 0.04150390625, 0.1468505859375, 0.0533447265625, 0.09564208984375, 0.1292724609375, 0.2294921875, 0.097900390625, 0.0506591796875, 0.1268310546875, 0.2340087890625, 0.2000732421875, 0.05731201171875, 0.087158203125, 0.09930419921875, 0.1069946289062...
embed
17486056_c0
17486056
erlang
0
Title: Security - Ejabberd - Validate Client Problem title: Security - Ejabberd - Validate Client Tags: ejabberd, erlang, quickblox, xmpp Problem: Security - Ejabberd - Validate Client I have installed Ejabberd in our AWS Server We are developing an iOS messenger app and we don't want other clients to access our messag...
Security - Ejabberd - Validate Client Security - Ejabberd - Validate Client ejabberd erlang quickblox xmpp Security Ejabberd Validate Client Security - Ejabberd - Validate Client I have installed Ejabberd in our AWS Server We are developing an iOS messenger app and we don't want other clients to access our messaging se...
[ 0.0037078857421875, 0.0419921875, 0.031982421875, 0.030029296875, -0.01708984375, -0.01043701171875, -0.01373291015625, 0.025634765625, -0.0036773681640625, -0.015380859375, 0.00927734375, -0.013916015625, 0.0224609375, -0.0096435546875, -0.015380859375, -0.017578125, 0.0002784729003...
[ 48748, 241, 145, 102459, 71, 20, 25447, 17489, 91732, 28, 72, 3066, 63773, 12986, 425, 1022, 39, 6366, 87, 20600, 297, 23, 2446, 62, 52143, 22687, 168698, 13964, 235446, 4027, 2301, 18, 3444, 3789, 19802, 17203, 115288, 10723, 3164, 11374...
[ 0.20849609375, 0.157958984375, 0.196044921875, 0.280517578125, 0.266845703125, 0.003082275390625, 0.178955078125, 0.198974609375, 0.1995849609375, 0.1304931640625, 0.06036376953125, 0.2244873046875, 0.120849609375, 0.1553955078125, 0.0963134765625, 0.0296630859375, 0.043487548828125,...
embed
8089505_c0
8089505
erlang
0
Title: ETS set preserving order? Problem title: ETS set preserving order? Tags: erlang, ets Problem: ETS set preserving order? Does ETS set guarantee that internal order of tuples is the same as the order by which they were inserted? For instance: I keep a log by inserting a tuple every second, timestamp is the key. In...
ETS set preserving order? ETS set preserving order? erlang ets ETS ETS set preserving order? Does ETS set guarantee that internal order of tuples is the same as the order by which they were inserted? For instance: I keep a log by inserting a tuple every second, timestamp is the key. In this example, does set guarantee ...
[ 0.0166015625, 0.0107421875, 0.0179443359375, 0.0031585693359375, 0.0096435546875, -0.0096435546875, -0.01165771484375, -0.015380859375, 0.01483154296875, 0.0038604736328125, 0.0150146484375, 0.03564453125, -0.00069427490234375, -0.00604248046875, -0.004119873046875, 0.0106201171875, ...
[ 83435, 5423, 9498, 56, 6496, 12989, 32, 72, 3066, 82, 7, 101790, 142027, 70796, 370, 99726, 83, 5701, 237, 390, 183540, 13695, 12684, 8705, 11907, 17932, 1733, 590, 2676, 22799, 27781, 14602, 17497, 297, 3509, 32599, 645, 31251, 17368, 50...
[ 0.2373046875, 0.2205810546875, 0.1192626953125, 0.1212158203125, 0.1099853515625, 0.23486328125, 0.001983642578125, 0.044219970703125, 0.1778564453125, 0.147216796875, 0.08837890625, 0.043548583984375, 0.2227783203125, 0.1571044921875, 0.0972900390625, 0.2025146484375, 0.049468994140...
embed
32387597_c0
32387597
erlang
0
Title: Erlang build failure: error writing file Problem title: Erlang build failure: error writing file Tags: build, erlang Problem: Erlang build failure: error writing file I am new to Erlang and am trying to build the Erlang package. I am using R13B version. Its an old version but am using it because it already used ...
Erlang build failure: error writing file Erlang build failure: error writing file build erlang Erlang Erlang build failure: error writing file I am new to Erlang and am trying to build the Erlang package. I am using R13B version. Its an old version but am using it because it already used in a pre-existing project. I am...
[ 0.0034637451171875, 0.0213623046875, -0.0087890625, -0.01019287109375, -0.01336669921875, 0.00982666015625, -0.0181884765625, -0.01007080078125, -0.0113525390625, 0.03173828125, -0.0120849609375, -0.01416015625, 0.0174560546875, 0.0191650390625, 0.0234375, 0.01202392578125, -0.013366...
[ 1004, 3066, 45367, 137578, 18499, 32562, 11435, 72, 3525, 31577, 98169, 17368, 627, 2681, 571, 11389, 10332, 1284, 21771, 11814, 479, 54376, 13452, 20949, 25632, 42, 153, 177149, 5612, 75577, 13, 3198, 141, 7568, 372, 11, 4904, 33938, 1820,...
[ 0.15478515625, 0.276123046875, 0.1761474609375, 0.207763671875, 0.2042236328125, 0.233154296875, 0.2257080078125, 0.0958251953125, 0.024078369140625, 0.05047607421875, 0.15087890625, 0.0523681640625, 0.037109375, 0.1243896484375, 0.0946044921875, 0.083984375, 0.024688720703125, 0.0...
embed
186883_c0
186883
erlang
0
Title: Best Practice: Erlang Application Deploy on windows Problem title: Best Practice: Erlang Application Deploy on windows Tags: erlang, deployment Problem: Best Practice: Erlang Application Deploy on windows When deploying a ready to use erlang application I don't want the user to Find the right erl release on the ...
Best Practice: Erlang Application Deploy on windows Best Practice: Erlang Application Deploy on windows erlang deployment Best Practice Erlang Application Deploy Best Practice: Erlang Application Deploy on windows When deploying a ready to use erlang application I don't want the user to Find the right erl release on th...
[ 0.01220703125, 0.007598876953125, -0.0038909912109375, 0.005645751953125, -0.008544921875, -0.003753662109375, 0.01312255859375, -0.033447265625, 0.0030059814453125, -0.0223388671875, 0.013427734375, -0.00653076171875, 0.0255126953125, 0.0086669921875, 0.01708984375, 0.01416015625, -...
[ 11345, 109613, 13, 1004, 3066, 104921, 262, 13158, 53, 98, 54825, 72, 8, 38543, 43542, 4527, 38415, 2301, 18, 3444, 38937, 26040, 7108, 141, 54452, 1820, 107951, 81, 39, 51, 50836, 28288, 31913, 186, 302, 102158, 76228, 12301, 282, 2811, ...
[ 0.1177978515625, 0.203125, 0.010528564453125, 0.184326171875, 0.31005859375, 0.197265625, 0.1107177734375, 0.1812744140625, 0.0709228515625, 0.046173095703125, 0.1610107421875, 0.15673828125, 0.10504150390625, 0.0205230712890625, 0.101318359375, 0.067626953125, 0.1614990234375, 0.0...
embed
12925922_c0
12925922
erlang
0
Title: erlang inter-process multicasting Problem title: erlang inter-process multicasting Tags: erlang, multicast, ets Problem: erlang inter-process multicasting I am trying to develop a chat server in erlang, and i want to broadcast messages between a group of processes, i came out with three alternatives send every m...
erlang inter-process multicasting erlang inter-process multicasting erlang multicast ets erlang inter-process multicasting I am trying to develop a chat server in erlang, and i want to broadcast messages between a group of processes, i came out with three alternatives send every message to master process which sends th...
[ 0.00439453125, 0.01263427734375, -0.0185546875, 0.014892578125, 0.0062255859375, -0.01483154296875, -0.0157470703125, 0.00457763671875, -0.001129150390625, -0.042724609375, 0.01507568359375, 0.0130615234375, 0.027587890625, 0.0184326171875, 0.000579833984375, 0.038818359375, -0.02160...
[ 72, 3066, 1940, 63923, 6024, 55741, 214, 82, 7, 31577, 85493, 3245, 10723, 3444, 226347, 89914, 17721, 21115, 9433, 17262, 30700, 25379, 11907, 26008, 47, 31347, 10588, 33342, 1884, 144521, 86, 2594, 4527, 7964, 23180, 70541, 2147, 6468, 51...
[ 0.1114501953125, 0.255615234375, 0.107666015625, 0.17724609375, 0.1328125, 0.2037353515625, 0.0228118896484375, 0.140625, 0.09075927734375, 0.02099609375, 0.06671142578125, 0.140625, 0.12255859375, 0.03814697265625, 0.1868896484375, 0.1439208984375, 0.1527099609375, 0.132568359375,...
embed
26565370_c0
26565370
erlang
0
Title: User can access internal yaws pages without authentication Problem title: User can access internal yaws pages without authentication Tags: erlang, yaws Problem: User can access internal yaws pages without authentication I am using the embedded YAWS web-server with yaws cookie session. I first authenticate the us...
User can access internal yaws pages without authentication User can access internal yaws pages without authentication erlang yaws User User can access internal yaws pages without authentication I am using the embedded YAWS web-server with yaws cookie session. I first authenticate the user with user-name & password to a...
[ -0.007293701171875, 0.0186767578125, 0.00160980224609375, 0.01708984375, 0.0155029296875, 0.03515625, -0.01220703125, 0.000736236572265625, -0.026123046875, -0.026123046875, 0.0194091796875, -0.0205078125, -0.0106201171875, 0.0120849609375, 0.0147705078125, -0.00732421875, 0.00775146...
[ 53400, 831, 17203, 70796, 151, 19725, 37967, 15490, 195734, 72, 3066, 55720, 69819, 3320, 52143, 39642, 9332, 56002, 38937, 78506, 63769, 42805, 1467, 2967, 105237, 9803, 9191, 64457, 73655, 21455, 173072, 8110 ]
[ 0.119873046875, 0.0848388671875, 0.1632080078125, 0.2197265625, 0.1865234375, 0.2139892578125, 0.1781005859375, 0.1500244140625, 0.2139892578125, 0.07208251953125, 0.186767578125, 0.1434326171875, 0.05670166015625, 0.1851806640625, 0.205810546875, 0.062347412109375, 0.2242431640625, ...
embed
14947081_c1
14947081
erlang
1
30>|...] % Lf is only about half the size, half the linked processes are dead! (node@host)216> length(Lf). 15654 % Proof that the links haven't changed in the interim (node@host)217> {links,L} = process_info(P,links). {links,[<0.29179.155>,<0.6492.250>,<0.29990.293>|...]} The only thing I can think of that would cause ...
30>|...] % Lf is only about half the size, half the linked processes are dead! (node@host)216> length(Lf). 15654 % Proof that the links haven't changed in the interim (node@host)217> {links,L} = process_info(P,links). {links,[<0.29179.155>,<0.6492.250>,<0.29990.293>|...]} The only thing I can think of that would cause ...
[ 0.0087890625, 0.0157470703125, -0.00665283203125, 0.00445556640625, -0.000354766845703125, -0.002166748046875, 0.005889892578125, -0.01019287109375, 0.007476806640625, -0.05810546875, -0.0096435546875, -0.0106201171875, -0.002716064453125, 0.006103515625, 0.006134033203125, 0.003250122...
[ 496, 2740, 58745, 75606, 1745, 339, 420, 83, 4734, 1672, 23552, 13267, 3126, 297, 9433, 90, 621, 103494, 38, 157, 112, 981, 40294, 16, 2485, 140909, 866, 73176, 12338, 1250, 4390, 22317, 38246, 18, 98816, 70, 1940, 464, 2489, 10187, 731...
[ 0.1695556640625, 0.0928955078125, 0.00927734375, 0.0694580078125, 0.1279296875, 0.100830078125, 0.1973876953125, 0.047515869140625, 0.1158447265625, 0.0841064453125, 0.15087890625, 0.1185302734375, 0.2122802734375, 0.08050537109375, 0.1590576171875, 0.056121826171875, 0.043701171875,...
embed
22885093_c0
22885093
erlang
0
Title: set parameters of gen_tcp in Elixir Problem title: set parameters of gen_tcp in Elixir Tags: tcp, erlang, erlang-otp, elixir Problem: set parameters of gen_tcp in Elixir I'm trying to accept data through a TCP connection in Elixir using Erlang gen_tcp {:ok, socket} = :gen_tcp.connect("127.0.0.1" ,2000,[:binary, ...
set parameters of gen_tcp in Elixir set parameters of gen_tcp in Elixir tcp erlang erlang-otp elixir gen_tcp Elixir gen_tcp.connect receive_data Socket set parameters of gen_tcp in Elixir I'm trying to accept data through a TCP connection in Elixir using Erlang gen_tcp But this isn't working due to bad arguments of con...
[ 0.0172119140625, 0.0130615234375, -0.0250244140625, 0.0076904296875, 0.0208740234375, -0.019287109375, -0.01025390625, -0.006500244140625, 0.005828857421875, -0.018798828125, 0.0179443359375, -0.020263671875, 0.016845703125, 0.01226806640625, -0.01116943359375, -0.012451171875, 0.002...
[ 5423, 171859, 7, 111, 9226, 454, 18, 121422, 23, 25318, 38308, 808, 72, 3066, 818, 254, 15296, 135457, 53299, 10135, 1061, 27853, 31577, 26946, 2053, 8305, 384, 17854, 94878, 1004, 20697, 6494, 10750, 37067, 11249, 2394, 6635, 136, 43824, ...
[ 0.1497802734375, 0.244140625, 0.08154296875, 0.06866455078125, 0.18994140625, 0.04669189453125, 0.059234619140625, 0.220458984375, 0.058868408203125, 0.1556396484375, 0.280029296875, 0.007843017578125, 0.055145263671875, 0.21435546875, 0.0660400390625, 0.085693359375, 0.1212158203125...
embed
25784968_c0
25784968
erlang
0
Title: Returning a first element from an improper list in Erlang Problem title: Returning a first element from an improper list in Erlang Tags: tail, list, head, erlang Problem: Returning a first element from an improper list in Erlang So I've been trying to implement this function in my module and so far I got this: E...
Returning a first element from an improper list in Erlang Returning a first element from an improper list in Erlang tail list head erlang an Returning Erlang Returning a first element from an improper list in Erlang So I've been trying to implement this function in my module and so far I got this: EXAMPLE 1. I am tryin...
[ 0.015625, 0.0093994140625, -0.007110595703125, -0.002899169921875, -0.00179290771484375, 0.021728515625, 0.00138092041015625, -0.01190185546875, 0.00064849853515625, -0.04296875, 0.031494140625, -0.00823974609375, 0.00102996826171875, 0.0223388671875, 0.01953125, -0.002899169921875, ...
[ 173340, 214, 5117, 12830, 1295, 60418, 1264, 5303, 1004, 3066, 142, 46741, 10336, 72, 23, 31577, 29479, 32354, 88996, 29426, 8922, 26366, 3249, 6713, 1884, 27798, 103084, 787, 11301, 44816, 136, 1218, 7870, 35782, 100094, 4358, 77947 ]
[ 0.206787109375, 0.050872802734375, 0.15771484375, 0.180908203125, 0.110107421875, 0.11865234375, 0.1685791015625, 0.20166015625, 0.158203125, 0.267333984375, 0.0167694091796875, 0.2110595703125, 0.1527099609375, 0.09014892578125, 0.000457763671875, 0.0268402099609375, 0.0960693359375...
embed
40602068_c2
40602068
erlang
2
_number, FAILURE, semaphore_count, semaphore_count_return, status_of_get_semaphore_count, status_of_semaphore_creation, socket_file_descriptor, erlang_message_buffer, ERLANG_MESSAGE_BUFFER_SIZE, return_status_of_erl_receive_msg, ERL_ERROR, return_status_of_erl_close_connection, ErlMessage, ErlConnect, erlang_node_conne...
_number, FAILURE, semaphore_count, semaphore_count_return, status_of_get_semaphore_count, status_of_semaphore_creation, socket_file_descriptor, erlang_message_buffer, ERLANG_MESSAGE_BUFFER_SIZE, return_status_of_erl_receive_msg, ERL_ERROR, return_status_of_erl_close_connection, ErlMessage, ErlConnect, erlang_node_conne...
[ -0.006744384765625, 0.01055908203125, 0.004241943359375, -0.00360107421875, 0.0213623046875, -0.004730224609375, -0.01287841796875, -0.0010986328125, 0.0020599365234375, -0.00970458984375, 0.023193359375, -0.00762939453125, -0.0108642578125, -0.00421142578125, 0.0081787109375, -0.01422...
[ 101, 2606, 1297, 4, 15491, 16444, 66704, 484, 2631, 94187, 71013, 65395, 10778, 4390, 3794, 24202, 139006, 13, 7612, 221, 27853, 29822, 71, 121707, 72, 3066, 74157, 123759, 56, 28695, 73386, 78787, 294, 75930, 66804, 9902, 30646, 45215, 454...
[ 0.0823974609375, 0.08563232421875, 0.08099365234375, 0.036834716796875, 0.131103515625, 0.1220703125, 0.1217041015625, 0.1451416015625, 0.1248779296875, 0.2210693359375, 0.1881103515625, 0.0948486328125, 0.1064453125, 0.001953125, 0.0595703125, 0.1522216796875, 0.198974609375, 0.09...
embed
26945529_c0
26945529
erlang
0
Title: Erlang asynchronous httpc post request Problem title: Erlang asynchronous httpc post request Tags: asynchronous, httpclient, erlang Problem: Erlang asynchronous httpc post request I want to make an asynchronous httpc post request using {receiver, Receiver} and {sync, false}.Receiver can be a pid() but I want to ...
Erlang asynchronous httpc post request Erlang asynchronous httpc post request asynchronous httpclient erlang Erlang Erlang asynchronous httpc post request I want to make an asynchronous httpc post request using {receiver, Receiver} and {sync, false}.Receiver can be a pid() but I want to use it as a function with 1 argu...
[ 0.01806640625, 0.0150146484375, 0.005218505859375, 0.00001800060272216797, -0.010498046875, -0.007568359375, -0.0174560546875, 0.0004596710205078125, -0.0162353515625, -0.0341796875, 0.00083160400390625, -0.0020599365234375, -0.0034942626953125, -0.01373291015625, 0.0272216796875, 0.00...
[ 1004, 3066, 12654, 101966, 1621, 238, 1305, 50336, 222978, 72, 3444, 3249, 10, 17368, 74105, 14, 814, 93908, 98320, 4332, 329, 45226, 132, 4527, 237, 32354, 106, 10750, 53299, 3447, 125663, 53418, 15549, 9433, 17137, 47143, 27781, 42 ]
[ 0.1307373046875, 0.2330322265625, 0.1307373046875, 0.1484375, 0.126708984375, 0.10211181640625, 0.14794921875, 0.1702880859375, 0.177490234375, 0.05572509765625, 0.021881103515625, 0.006317138671875, 0.018524169921875, 0.027496337890625, 0.0653076171875, 0.098876953125, 0.16101074218...
embed
1956104_c0
1956104
erlang
0
Title: Should I be pattern matching every return value? Problem title: Should I be pattern matching every return value? Tags: pattern-matching, erlang Problem: Should I be pattern matching every return value? When I'm programming in Erlang should I be validating all return values from function calls for success via pat...
Should I be pattern matching every return value? Should I be pattern matching every return value? pattern-matching erlang Should Should I be pattern matching every return value? When I'm programming in Erlang should I be validating all return values from function calls for success via pattern matching even if i don't i...
[ -0.029052734375, 0.0096435546875, 0.00604248046875, -0.0257568359375, 0.01104736328125, 0.00335693359375, -0.020751953125, -0.004547119140625, 0.00726318359375, -0.009765625, 0.037109375, -0.03564453125, 0.0037994384765625, -0.0194091796875, 0.012939453125, -0.000682830810546875, 0.0...
[ 151117, 87, 186, 103510, 14858, 214, 11907, 30646, 34292, 98753, 72, 3066, 56037, 1004, 5608, 44622, 1916, 756, 142424, 1295, 32354, 11782, 36272, 1829, 18, 150661, 4527, 61687, 104250, 131527, 18499, 188800, 212059, 8110, 3871, 67, 72272 ]
[ 0.117919921875, 0.0278778076171875, 0.044036865234375, 0.238525390625, 0.222900390625, 0.1148681640625, 0.1484375, 0.205322265625, 0.1663818359375, 0.23095703125, 0.0838623046875, 0.23583984375, 0.113525390625, 0.119384765625, 0.0662841796875, 0.18701171875, 0.1025390625, 0.0588378...
embed
3079853_c0
3079853
erlang
0
Title: Erlang - Riak clients Problem title: Erlang - Riak clients Tags: erlang, riak, client Problem: Erlang - Riak clients I am in trouble finding API for the "local Erlang client" for Riak. Here is what Riak wiki says: The local Erlang client is a tightly-integrated part of Riak and the Riak REST interface uses the E...
Erlang - Riak clients Erlang - Riak clients erlang riak client Erlang Riak Erlang - Riak clients I am in trouble finding API for the "local Erlang client" for Riak. Here is what Riak wiki says: The link redirects to the main wiki-page. There is plenty of information on PBC Client though. How do both clients compare and...
[ -0.0032196044921875, 0.0255126953125, 0.007659912109375, 0.018798828125, -0.00007104873657226562, -0.00909423828125, -0.02294921875, -0.0081787109375, 0.002349853515625, -0.024658203125, 0.0311279296875, -0.00927734375, 0.01708984375, -0.0003604888916015625, 0.0263671875, -0.0058288574...
[ 1004, 3066, 20, 2975, 344, 19802, 72, 45832, 23282, 63134, 90791, 61687, 98908, 34356, 17378, 3126, 80581, 5201, 22469, 87794, 4677, 436, 24318, 91732, 15044, 69101, 38280, 136, 158, 17368, 15700 ]
[ 0.1868896484375, 0.309814453125, 0.0152435302734375, 0.1458740234375, 0.213134765625, 0.22265625, 0.08209228515625, 0.18994140625, 0.26318359375, 0.0894775390625, 0.07366943359375, 0.2354736328125, 0.14990234375, 0.1473388671875, 0.0152435302734375, 0.041259765625, 0.08447265625, 0...
embed
47271223_c0
47271223
erlang
0
Title: Addition 2 Matrix Erlang Problem title: Addition 2 Matrix Erlang Tags: erlang, matrix, addition Problem: Addition 2 Matrix Erlang I have a question I want to do the addition of 2 matrix by row in erlang, I'm trying to apply the code for Haskell: add :: Num a => [[a]] -> [[a]] -> [[a]] add = zipWith $ zipWith (+)...
Addition 2 Matrix Erlang Addition 2 Matrix Erlang erlang matrix addition Addition Matrix Erlang Num Addition 2 Matrix Erlang I have a question I want to do the addition of 2 matrix by row in erlang, I'm trying to apply the code for Haskell: I did something like this: but it get's an error, with the $, I'm really confus...
[ -0.00177001953125, 0.005645751953125, 0.0079345703125, 0.0166015625, 0.0034942626953125, 0.00323486328125, -0.021484375, 0.00482177734375, 0.0135498046875, -0.031005859375, 0.0216064453125, -0.035400390625, -0.007598876953125, -0.015380859375, 0.00360107421875, -0.00848388671875, -0....
[ 29117, 14, 1363, 116, 194234, 1004, 3066, 72, 50944, 66044, 52782, 9655, 3444, 54, 111, 425, 390, 15555, 23, 31577, 59911, 18151, 20625, 142508, 6777, 1884, 903, 2046, 18499, 678, 70, 3650, 6183, 55681, 43240 ]
[ 0.1229248046875, 0.108154296875, 0.04302978515625, 0.1976318359375, 0.2286376953125, 0.11767578125, 0.25244140625, 0.1165771484375, 0.1954345703125, 0.2109375, 0.1121826171875, 0.0157623291015625, 0.0243988037109375, 0.055908203125, 0.037933349609375, 0.13671875, 0.114013671875, 0....
embed
17134642_c0
17134642
erlang
0
Title: How connect to new riak node when the old node down? Problem title: How connect to new riak node when the old node down? Tags: erlang, riak Problem: How connect to new riak node when the old node down? I'm using riak-erlang-client. According to this guide , I can connect to one node: 1> {ok, Pid} = riakc_pb_sock...
How connect to new riak node when the old node down? How connect to new riak node when the old node down? erlang riak How Pid riakc_pb_socket:start_link tcp_closed _FromPid How connect to new riak node when the old node down? I'm using riak-erlang-client. According to this guide , I can connect to one node: I know when...
[ -0.027099609375, 0.0322265625, -0.00677490234375, 0.0169677734375, 0.01007080078125, -0.0087890625, -0.006103515625, 0.03125, 0.007415771484375, -0.048095703125, 0.0252685546875, -0.04638671875, -0.00738525390625, 0.00439453125, 0.0179443359375, -0.01019287109375, -0.005889892578125,...
[ 11249, 37067, 47, 3525, 45832, 110, 112, 3229, 10332, 7565, 72, 3066, 532, 238, 275, 991, 27853, 17137, 10187, 121422, 155648, 71, 168407, 683, 17368, 56, 222978, 17997, 831, 1632, 3714, 83, 25379, 26008, 7440, 35299, 53299, 15700, 923, 2...
[ 0.08367919921875, 0.2171630859375, 0.11083984375, 0.127685546875, 0.2147216796875, 0.1702880859375, 0.1707763671875, 0.1060791015625, 0.10333251953125, 0.219482421875, 0.05279541015625, 0.2269287109375, 0.0986328125, 0.060546875, 0.08209228515625, 0.033905029296875, 0.135009765625, ...
embed
3595800_c0
3595800
erlang
0
Title: List of strings to binary and back again Problem title: List of strings to binary and back again Tags: erlang Problem: List of strings to binary and back again I've stumbled on a quite irritating problem; I'm trying to generate a binary of a string-list and back again. Eg erlang:binary_to_list(erlang:list_to_bin...
List of strings to binary and back again List of strings to binary and back again erlang List erlang:binary_to_list erlang:list_to_binary List of strings to binary and back again I've stumbled on a quite irritating problem; I'm trying to generate a binary of a string-list and back again. Eg This will return "helloworld...
[ 0.0166015625, 0.00579833984375, -0.0032806396484375, 0.0291748046875, -0.017822265625, -0.000446319580078125, -0.00244140625, -0.002777099609375, 0.010498046875, -0.0032958984375, -0.00970458984375, -0.018310546875, 0.015869140625, 0.050048828125, -0.007598876953125, 0.01080322265625, ...
[ 32036, 111, 79315, 7, 47, 2394, 6635, 136, 4420, 13438, 72, 3066, 19155, 1294, 188, 6562, 40099, 32233, 72405, 1916, 2967, 31577, 139392, 22221, 1221, 30646, 127, 13817, 32554, 959, 5303, 6626, 12921, 80854, 25647, 3642, 86869, 903, 29806, ...
[ 0.171630859375, 0.0557861328125, 0.2408447265625, 0.09930419921875, 0.140869140625, 0.185546875, 0.208740234375, 0.06390380859375, 0.1590576171875, 0.1798095703125, 0.07440185546875, 0.190673828125, 0.18212890625, 0.14599609375, 0.1309814453125, 0.204833984375, 0.0445556640625, 0.0...
embed
21126240_c0
21126240
erlang
0
Title: Erlang if statement and returns true Problem title: Erlang if statement and returns true Tags: erlang-shell, erlang Problem: Erlang if statement and returns true I'm wondering ,the idea behind the erlang's if statement and the return value (in this case true->true). this is my code snippet if (Velocity > 40) -> ...
Erlang if statement and returns true Erlang if statement and returns true erlang-shell erlang Erlang Velocity io:format Erlang if statement and returns true I'm wondering ,the idea behind the erlang's if statement and the return value (in this case true->true). this is my code snippet I know Erlang doesn't allow you to...
[ 0.0069580078125, 0.00457763671875, 0.00058746337890625, 0.012939453125, 0.00897216796875, -0.0137939453125, 0.0159912109375, 0.01129150390625, -0.0174560546875, -0.01904296875, 0.009521484375, -0.00982666015625, -0.016845703125, 0.0054931640625, 0.0220947265625, 0.019775390625, -0.00...
[ 1004, 3066, 2174, 63805, 136, 30646, 29568, 72, 128019, 139993, 60089, 22995, 51727, 149016, 2347, 6528, 50155, 34292, 103607, 9774, 18151, 63769, 15490, 35829, 4527, 8710, 26866, 2704, 140992, 70731, 13 ]
[ 0.1463623046875, 0.275146484375, 0.2296142578125, 0.2449951171875, 0.072265625, 0.2205810546875, 0.21826171875, 0.119873046875, 0.1531982421875, 0.1597900390625, 0.0797119140625, 0.14697265625, 0.1435546875, 0.04205322265625, 0.00738525390625, 0.1328125, 0.131103515625, 0.155517578...
embed
50836544_c0
50836544
erlang
0
Title: couchdb erlang reduce - aggregate object Problem title: couchdb erlang reduce - aggregate object Tags: erlang, couchdb, object, reduce, view Problem: couchdb erlang reduce - aggregate object Say I have a map that emits the following objects {"basePoints": 2000, "bonusPoints": 1000} {"basePoints": 1000, "bonusPoi...
couchdb erlang reduce - aggregate object couchdb erlang reduce - aggregate object erlang couchdb object reduce view couchdb erlang reduce - aggregate object Say I have a map that emits the following objects How could I write a reduce in Erlang (not javascript) that would return an aggregate object like this: (I would r...
[ 0.0033416748046875, -0.02392578125, -0.021240234375, 0.005340576171875, -0.00927734375, -0.014892578125, -0.034423828125, 0.01055908203125, 0.004241943359375, -0.0255126953125, 0.009765625, -0.0086669921875, 0.018798828125, -0.03125, 0.00872802734375, 0.005584716796875, -0.0302734375...
[ 31816, 206, 48073, 72, 3066, 34390, 197564, 13, 36746, 21455, 22288, 53225, 25632, 5809, 33022, 10, 23, 1004, 10869, 136951, 30646, 1884, 903, 43257, 116, 84797, 16912, 12638, 34292, 4358, 22362 ]
[ 0.10418701171875, 0.06292724609375, 0.21142578125, 0.07403564453125, 0.2880859375, 0.290771484375, 0.2183837890625, 0.093994140625, 0.2060546875, 0.20068359375, 0.1778564453125, 0.183349609375, 0.04901123046875, 0.0345458984375, 0.1529541015625, 0.011077880859375, 0.04443359375, 0....
embed
52386588_c0
52386588
erlang
0
Title: Closing a gen_tcp listen socket that is owned by an OTP supervisor Problem title: Closing a gen_tcp listen socket that is owned by an OTP supervisor Tags: erlang, erlang-otp, erlang-supervisor, tcp Problem: Closing a gen_tcp listen socket that is owned by an OTP supervisor A few tutorials, including this Learn Y...
Closing a gen_tcp listen socket that is owned by an OTP supervisor Closing a gen_tcp listen socket that is owned by an OTP supervisor erlang erlang-otp erlang-supervisor tcp Closing gen_tcp OTP Closing a gen_tcp listen socket that is owned by an OTP supervisor A few tutorials, including this Learn You Some Erlang one, ...
[ 0.00555419921875, 0.049072265625, -0.00726318359375, -0.002532958984375, 0.00140380859375, -0.034912109375, -0.0126953125, 0.006439208984375, -0.010498046875, -0.01361083984375, 0.0033721923828125, -0.006256103515625, 0.01409912109375, 0.031982421875, 0.0206298828125, 0.005157470703125...
[ 51053, 6953, 9226, 454, 121422, 44632, 221, 27853, 157272, 390, 180, 23658, 1601, 51858, 18, 72, 3066, 818, 254, 59104, 57143, 134031, 2583, 31384, 1004, 7639, 86685, 9803, 10002, 384, 17854, 12008, 14012, 133325, 1221, 26946, 94878, 3642, ...
[ 0.207763671875, 0.07318115234375, 0.1617431640625, 0.024200439453125, 0.1595458984375, 0.288330078125, 0.149169921875, 0.2435302734375, 0.1949462890625, 0.095703125, 0.117919921875, 0.2080078125, 0.1553955078125, 0.239501953125, 0.0091552734375, 0.0396728515625, 0.2088623046875, 0....
embed
31643985_c0
31643985
erlang
0
Title: Decode / Encoded IEEE 754 float value from raw data with Erlang? Problem title: Decode / Encoded IEEE 754 float value from raw data with Erlang? Tags: ieee-754, decode, encode, erlang Problem: Decode / Encoded IEEE 754 float value from raw data with Erlang? New to Erlang here... I'm needing to extract an IEEE 75...
Decode / Encoded IEEE 754 float value from raw data with Erlang? Decode / Encoded IEEE 754 float value from raw data with Erlang? ieee-754 decode encode erlang raw Decode Encoded IEEE Erlang ieee-754 Decode / Encoded IEEE 754 float value from raw data with Erlang? New to Erlang here... I'm needing to extract an IEEE 75...
[ 0.01458740234375, -0.00174713134765625, -0.0120849609375, 0.003753662109375, -0.0029754638671875, -0.0027313232421875, -0.00022602081298828125, 0.0218505859375, 0.0033721923828125, 0.02685546875, 0.00537109375, -0.0186767578125, -0.01171875, 0.00933837890625, -0.0036468505859375, 0.011...
[ 262, 40899, 248, 357, 87, 129969, 188609, 21917, 257, 34292, 1295, 49649, 2053, 678, 1004, 3066, 32, 17, 13, 7039, 9, 8, 22, 72, 2356, 3688, 27, 3871, 125663, 32036, 13023, 12183, 63527, 5608, 105950, 361, 48413, 2843, 96760, 5303, 3577...
[ 0.190185546875, 0.2440185546875, 0.084716796875, 0.10791015625, 0.0616455078125, 0.200439453125, 0.270751953125, 0.2027587890625, 0.140869140625, 0.1771240234375, 0.09100341796875, 0.182373046875, 0.1390380859375, 0.0618896484375, 0.1695556640625, 0.2626953125, 0.0254058837890625, ...
embed
31891017_c0
31891017
erlang
0
Title: Any Riak Yokozuna custom erlang term extractor available? Problem title: Any Riak Yokozuna custom erlang term extractor available? Tags: solr, erlang, riak, riak-search, extractor Problem: Any Riak Yokozuna custom erlang term extractor available? My basic requirement is proplist actually and I guess I can write ...
Any Riak Yokozuna custom erlang term extractor available? Any Riak Yokozuna custom erlang term extractor available? solr erlang riak riak-search extractor Any Riak Yokozuna Any Riak Yokozuna custom erlang term extractor available? My basic requirement is proplist actually and I guess I can write a custom extractor for ...
[ 0.03125, 0.0169677734375, 0.015625, 0.00616455078125, -0.00616455078125, -0.0036468505859375, 0.01226806640625, 0.007232666015625, -0.0103759765625, -0.02587890625, 0.0272216796875, -0.0025634765625, -0.00156402587890625, -0.0128173828125, 0.0118408203125, 0.0189208984375, -0.0043945...
[ 28541, 2975, 344, 6949, 26952, 1946, 114122, 72, 3066, 13579, 4173, 18770, 19882, 3115, 42, 45832, 86250, 62822, 64209, 25793, 6562, 20653, 831, 33022, 38415, 56, 36290, 79975, 59121, 1004, 2685, 2499, 21771, 4552, 27140, 5941, 3173, 8705 ]
[ 0.05841064453125, 0.1280517578125, 0.1787109375, 0.1329345703125, 0.1424560546875, 0.189697265625, 0.17138671875, 0.1181640625, 0.27880859375, 0.216064453125, 0.1658935546875, 0.1793212890625, 0.1368408203125, 0.0760498046875, 0.08154296875, 0.1900634765625, 0.1334228515625, 0.0729...
embed
26349792_c0
26349792
erlang
0
Title: file:consult without the file part Problem title: file:consult without the file part Tags: erlang Problem: file:consult without the file part I'm writing an escript that needs as its input a normal proplist : script "[{error_string, \"This is broken\"}]" all I wanna do now is parse arbitrary strings into actual ...
file:consult without the file part file:consult without the file part erlang file:consult file:consult without the file part I'm writing an escript that needs as its input a normal proplist : all I wanna do now is parse arbitrary strings into actual proplists, normally I would write this to a file, and then go on to us...
[ 0.026611328125, 0.00830078125, -0.0211181640625, 0.010498046875, -0.0250244140625, -0.00014019012451171875, -0.01141357421875, -0.006744384765625, 0.004638671875, -0.03857421875, 0.01348876953125, 0.007232666015625, -0.000576019287109375, -0.0106201171875, 0.0216064453125, 0.0022277832...
[ 11435, 147834, 15490, 2831, 12, 72, 3066, 32562, 28, 32032, 27117, 107730, 3638, 25793, 6562, 6165, 76, 366, 184, 61799, 79315, 3934, 8561, 33022, 47, 2046, 142424, 48903, 2663, 5701, 135834, 2053 ]
[ 0.1630859375, 0.257080078125, 0.136474609375, 0.1153564453125, 0.03607177734375, 0.047332763671875, 0.2015380859375, 0.043609619140625, 0.0252532958984375, 0.2159423828125, 0.047332763671875, 0.134765625, 0.06494140625, 0.169921875, 0.19921875, 0.032867431640625, 0.03424072265625, ...
embed
29320075_c0
29320075
erlang
0
Title: Erlang Binary Split Problem title: Erlang Binary Split Tags: erlang, binary Problem: Erlang Binary Split I need to split a binary like so <<"one|two|three|four|five">> into [<<"one">>,<<"two">>,<<"three">>,<<"four">>,<<"five">>] I'm nearly there binary:split(<<"one|two|three|four|five">>, <<"|">>, []). But I nee...
Erlang Binary Split Erlang Binary Split erlang binary Erlang Binary Split binary:split Erlang Binary Split I need to split a binary like so into I'm nearly there But I need to make the scope global to split the entire binary and not just the first item. The answer is staring me in the face here http://www.erlang.org/do...
[ -0.00726318359375, 0.0098876953125, -0.00860595703125, -0.0037994384765625, -0.0184326171875, 0.018798828125, -0.01483154296875, 0.000457763671875, 0.0086669921875, -0.01446533203125, 0.00518798828125, -0.01806640625, -0.00994873046875, 0.01409912109375, 0.0257568359375, 0.02294921875,...
[ 1004, 3066, 54092, 1294, 46474, 72, 2394, 6635, 7008, 4353, 3871, 65450, 1884, 221, 3934, 39, 110518, 2685, 4966, 3249, 70, 70820, 7964, 47, 64194, 5117, 35735, 35166, 6057, 214, 163, 2577, 3688, 56, 29713, 669, 19155, 7693, 8316, 63134, ...
[ 0.146240234375, 0.25732421875, 0.2005615234375, 0.156982421875, 0.2440185546875, 0.0833740234375, 0.192626953125, 0.194580078125, 0.056884765625, 0.2177734375, 0.09344482421875, 0.237548828125, 0.1214599609375, 0.1378173828125, 0.1390380859375, 0.08819580078125, 0.21337890625, 0.16...
embed
49482956_c0
49482956
erlang
0
Title: Is pattern matching preferred or a case statement in idiomatic Erlang? Problem title: Is pattern matching preferred or a case statement in idiomatic Erlang? Tags: switch-statement, erlang, pattern-matching Problem: Is pattern matching preferred or a case statement in idiomatic Erlang? Which one of this code is t...
Is pattern matching preferred or a case statement in idiomatic Erlang? Is pattern matching preferred or a case statement in idiomatic Erlang? switch-statement erlang pattern-matching Erlang Multiples cal_multiples lists:seq N-1 Is pattern matching preferred or a case statement in idiomatic Erlang? Which one of this cod...
[ -0.0169677734375, -0.00677490234375, 0.0157470703125, -0.006256103515625, -0.01104736328125, -0.029541015625, -0.0028839111328125, 0.005218505859375, 0.0223388671875, -0.021484375, 0.00885009765625, 0.003143310546875, 0.00055694580078125, -0.027099609375, 0.021728515625, 0.007934570312...
[ 103510, 14858, 214, 12601, 2822, 707, 7225, 63805, 49666, 9523, 1004, 3066, 101089, 61340, 674, 72, 98753, 19335, 6510, 144227, 99726, 5303, 184, 864, 5759, 903, 18151, 3917, 15400 ]
[ 0.2391357421875, 0.2279052734375, 0.095703125, 0.160400390625, 0.1190185546875, 0.0255126953125, 0.186767578125, 0.21044921875, 0.13232421875, 0.07525634765625, 0.1513671875, 0.2822265625, 0.1824951171875, 0.1700439453125, 0.0232086181640625, 0.0894775390625, 0.2137451171875, 0.049...
embed
4081502_c0
4081502
erlang
0
Title: sending raw binary using tcp in erlang Problem title: sending raw binary using tcp in erlang Tags: binary, tcp, erlang Problem: sending raw binary using tcp in erlang I have a basic client server in erlang which uses tcp. How does one send the actual binary data from a file to the client who requested it? How is...
sending raw binary using tcp in erlang sending raw binary using tcp in erlang binary tcp erlang tcp Socket gen_tcp:connect sending raw binary using tcp in erlang I have a basic client server in erlang which uses tcp. How does one send the actual binary data from a file to the client who requested it? How is the file se...
[ 0.0216064453125, 0.0186767578125, -0.002777099609375, 0.0191650390625, 0.0024566650390625, -0.007110595703125, -0.006744384765625, 0.006195068359375, -0.004058837890625, -0.019287109375, 0.038330078125, -0.0023345947265625, 0.004486083984375, 0.015625, 0.00933837890625, -0.000564575195...
[ 135834, 49649, 2394, 6635, 17368, 808, 121422, 23, 72, 3066, 1061, 27853, 9226, 18, 135457, 62822, 23282, 10723, 4527, 11249, 14602, 1632, 25379, 8561, 2053, 1295, 11435, 47, 2750, 50336, 83, 9325, 126371, 903, 18151, 685, 254, 1105, 4633, ...
[ 0.119873046875, 0.2188720703125, 0.1712646484375, 0.1790771484375, 0.09368896484375, 0.074462890625, 0.2088623046875, 0.0867919921875, 0.13134765625, 0.265869140625, 0.0633544921875, 0.162353515625, 0.1324462890625, 0.03814697265625, 0.151123046875, 0.0909423828125, 0.17724609375, ...
embed
20230609_c0
20230609
erlang
0
Title: Why we use disk_logs and what are the advantages of using disk_log for a database? Problem title: Why we use disk_logs and what are the advantages of using disk_log for a database? Tags: indexing, erlang, database Problem: Why we use disk_logs and what are the advantages of using disk_log for a database? I have ...
Why we use disk_logs and what are the advantages of using disk_log for a database? Why we use disk_logs and what are the advantages of using disk_log for a database? indexing erlang database disk_log Why disk_logs Why we use disk_logs and what are the advantages of using disk_log for a database? I have to create databa...
[ 0.00927734375, 0.0107421875, -0.0142822265625, 0.005706787109375, 0.0028533935546875, 0.013916015625, 0.001251220703125, -0.01214599609375, 0.0091552734375, -0.035400390625, 0.0286865234375, -0.016357421875, 0.0054931640625, 0.015380859375, 0.00341796875, -0.015869140625, -0.00091552...
[ 44084, 642, 4527, 28338, 454, 4867, 92940, 7, 17368, 63399, 63262, 72, 3066, 100, 28282, 49878, 102158, 51858, 88996, 1004, 28219, 15400, 765 ]
[ 0.1182861328125, 0.03277587890625, 0.115478515625, 0.133056640625, 0.06817626953125, 0.1964111328125, 0.1318359375, 0.06976318359375, 0.059783935546875, 0.115966796875, 0.050048828125, 0.044403076171875, 0.228515625, 0.0260467529296875, 0.023162841796875, 0.1474609375, 0.069213867187...
embed
29423266_c0
29423266
erlang
0
Title: Regarding erlang tuning Problem title: Regarding erlang tuning Tags: erlang Problem: Regarding erlang tuning I am new with erlang. I am trying to tune my erlang configuration for achieving higher connection rates on my mongooseim server. I found some people suggested to increase the async thread a little bit and...
Regarding erlang tuning Regarding erlang tuning erlang Regarding Erlang OTP erts-6.3 smp:2:2 async-threads:10 kernel-poll:false Regarding erlang tuning I am new with erlang. I am trying to tune my erlang configuration for achieving higher connection rates on my mongooseim server. I found some people suggested to increa...
[ 0.0033721923828125, 0.0030517578125, -0.00750732421875, -0.0245361328125, -0.00128936767578125, -0.0025177001953125, -0.0216064453125, 0.004241943359375, -0.01068115234375, -0.033447265625, 0.0086669921875, 0.0166015625, 0.019287109375, -0.0042724609375, 0.022216796875, 0.0044860839843...
[ 72, 3066, 370, 592, 1004, 180, 23658, 933, 200768, 2676, 304, 12654, 238, 39116, 15110, 77924, 583, 5877, 141, 8710, 3525, 56312, 180346, 77546, 94878, 121297, 14896, 31, 8364, 464, 10723, 42459, 51312, 10, 86997, 10176, 4785, 160, 1181, ...
[ 0.115478515625, 0.252685546875, 0.1629638671875, 0.04254150390625, 0.135986328125, 0.0149993896484375, 0.130859375, 0.106201171875, 0.151611328125, 0.123779296875, 0.0294189453125, 0.167724609375, 0.05682373046875, 0.16650390625, 0.10888671875, 0.13916015625, 0.0872802734375, 0.179...
embed
32968572_c0
32968572
erlang
0
Title: Conversion of bitstring to decimal in Erlang Problem title: Conversion of bitstring to decimal in Erlang Tags: erlang, bitstring Problem: Conversion of bitstring to decimal in Erlang I am trying to decode the bitstring to decimal value. For e.x I have these kind of bitstrings <<96,64,112,153,9:4>>. I want to con...
Conversion of bitstring to decimal in Erlang Conversion of bitstring to decimal in Erlang erlang bitstring Conversion Erlang Conversion of bitstring to decimal in Erlang I am trying to decode the bitstring to decimal value. For e.x I have these kind of bitstrings <<96,64,112,153,9:4>>. I want to convert them to decimal...
[ 0.0036163330078125, 0.0235595703125, -0.01953125, 0.01275634765625, -0.004180908203125, 0.00958251953125, -0.03955078125, -0.004638671875, -0.00848388671875, -0.0025177001953125, -0.006683349609375, -0.023681640625, 0.01397705078125, 0.0218505859375, 0.0185546875, 0.00933837890625, -...
[ 1657, 46354, 4785, 91693, 47, 32380, 2749, 23, 1004, 3066, 111, 72, 31577, 8, 40899, 34292, 28, 5, 425, 8562, 11648, 13307, 88438, 1837, 125157, 12, 617, 3444, 96760, 142424, 5646, 22759, 237, 153939, 136485, 181155, 129908, 1496, 5117, 3...
[ 0.065673828125, 0.1614990234375, 0.15576171875, 0.256591796875, 0.09881591796875, 0.214111328125, 0.205078125, 0.028472900390625, 0.1671142578125, 0.258056640625, 0.00115966796875, 0.1263427734375, 0.0467529296875, 0.147216796875, 0.1715087890625, 0.1141357421875, 0.0712890625, 0.0...
embed
18162007_c0
18162007
erlang
0
Title: about gen_udp for erlang multibrodcast Problem title: about gen_udp for erlang multibrodcast Tags: erlang Problem: about gen_udp for erlang multibrodcast i have some erlang code, i don't understand this code { add_membership, { Addr, { 0, 0, 0, 0 } } }, what's the meaning of 0.0.0.0 . Addr = {226,0,0,1}, Opts = ...
about gen_udp for erlang multibrodcast about gen_udp for erlang multibrodcast erlang gen_udp add_membership Addr Opts multicast_loop RecvSocket gen_udp:open Port about gen_udp for erlang multibrodcast i have some erlang code, i don't understand this code { add_membership, { Addr, { 0, 0, 0, 0 } } }, what's the meaning ...
[ 0.0025634765625, 0.0244140625, -0.00787353515625, 0.0260009765625, 0.004241943359375, -0.00592041015625, 0.003570556640625, -0.00274658203125, 0.0014495849609375, -0.0181884765625, 0.00860595703125, -0.02099609375, 0.01806640625, -0.007171630859375, -0.0021209716796875, 0.0014266967773...
[ 1672, 9226, 454, 1674, 254, 100, 72, 3066, 6024, 6369, 71, 55741, 15190, 39, 27417, 16070, 29117, 42, 2331, 28354, 48224, 334, 8912, 27853, 59636, 13791, 18151, 2301, 18, 28219, 903, 757, 2367, 70, 91084, 111, 89678, 5, 99929, 35672, 83...
[ 0.048492431640625, 0.1732177734375, 0.041473388671875, 0.1279296875, 0.1494140625, 0.051025390625, 0.119873046875, 0.221435546875, 0.0989990234375, 0.07958984375, 0.05072021484375, 0.1568603515625, 0.151611328125, 0.0867919921875, 0.182373046875, 0.1407470703125, 0.1009521484375, 0...
embed
57906871_c0
57906871
erlang
0
Title: Call a function after a time interval, each time with updated arguments Problem title: Call a function after a time interval, each time with updated arguments Tags: erlang Problem: Call a function after a time interval, each time with updated arguments I have a packet, if it contains a particular tag (say testta...
Call a function after a time interval, each time with updated arguments Call a function after a time interval, each time with updated arguments erlang Call Call a function after a time interval, each time with updated arguments I have a packet, if it contains a particular tag (say testtag) then i need to wait for some ...
[ 0.0091552734375, -0.01055908203125, 0.000865936279296875, -0.0015106201171875, 0.01202392578125, -0.00128173828125, 0.002685546875, 0.00014972686767578125, -0.001007080078125, -0.0174560546875, 0.0198974609375, 0.000652313232421875, -0.0263671875, 0.003265380859375, 0.04150390625, 0.00...
[ 26265, 32354, 7103, 1733, 51514, 12638, 678, 150011, 10750, 72, 3066, 43824, 126, 70541, 17311, 7909, 3034, 6936, 3871, 40485, 3060, 8108, 29479, 137175, 34292, 20271, 6056, 32497, 13438, 1284, 12921 ]
[ 0.1905517578125, 0.1976318359375, 0.1390380859375, 0.1666259765625, 0.2484130859375, 0.076904296875, 0.060699462890625, 0.163818359375, 0.207763671875, 0.08935546875, 0.257080078125, 0.11279296875, 0.06927490234375, 0.052459716796875, 0.0147247314453125, 0.1397705078125, 0.1853027343...
embed
13627864_c1
13627864
erlang
1
2012-09-18 23:44:32 === application: ejabberd exited: {bad_return, {{ejabberd_app,start,[normal,[]]}, {'EXIT', {badarg, [{erlang,port_control, [stringprep_port,2,"localhost"], []}, {stringprep,control,2,[]}, {jlib,nodeprep,1,[]}, {ejabberd_config,normalize_hosts,2,[]}, {ejabberd_config,add_hosts_to_option,2,[]}, {lists...
2012-09-18 23:44:32 === application: ejabberd exited: {bad_return, {{ejabberd_app,start,[normal,[]]}, {'EXIT', {badarg, [{erlang,port_control, [stringprep_port,2,"localhost"], []}, {stringprep,control,2,[]}, {jlib,nodeprep,1,[]}, {ejabberd_config,normalize_hosts,2,[]}, {ejabberd_config,add_hosts_to_option,2,[]}, {lists...
[ 0.0137939453125, 0.01953125, -0.0203857421875, 0.01611328125, 0.005950927734375, 0.0093994140625, -0.020751953125, -0.03857421875, -0.01226806640625, 0.0004215240478515625, -0.0007781982421875, -0.033935546875, -0.0084228515625, 0.0191650390625, 0.00726318359375, -0.005218505859375, ...
[ 1324, 38118, 1819, 32705, 29902, 182906, 38415, 12, 28, 145, 102459, 71, 82230, 297, 12283, 65395, 18856, 9007, 17137, 33176, 26939, 6371, 29261, 10566, 56, 3066, 6982, 81988, 91693, 4692, 254, 98908, 40294, 5612, 157, 153837, 20650, 4028, ...
[ 0.090087890625, 0.057403564453125, 0.0161895751953125, 0.0189666748046875, 0.00518798828125, 0.08648681640625, 0.2037353515625, 0.00164794921875, 0.1322021484375, 0.168212890625, 0.258056640625, 0.2454833984375, 0.253173828125, 0.1397705078125, 0.1219482421875, 0.1800537109375, 0.166...
embed
9075054_c0
9075054
erlang
0
Title: I need to setup RIAK cluster in Ec2 instances which is CentOS Problem title: I need to setup RIAK cluster in Ec2 instances which is CentOS Tags: riak, erlang, amazon-ec2 Problem: I need to setup RIAK cluster in Ec2 instances which is CentOS When I install the latest version of erlang R14B04 in EC2 I get an error...
I need to setup RIAK cluster in Ec2 instances which is CentOS I need to setup RIAK cluster in Ec2 instances which is CentOS riak erlang amazon-ec2 RIAK Ec2 CentOS Fatal wait__ amazon-ec2 I need to setup RIAK cluster in Ec2 instances which is CentOS When I install the latest version of erlang R14B04 in EC2 I get an erro...
[ 0.0076904296875, 0.0213623046875, -0.01190185546875, -0.006011962890625, -0.0022125244140625, -0.00506591796875, 0.00201416015625, -0.005401611328125, 0.003570556640625, 0.00689697265625, 0.01251220703125, -0.0169677734375, 0.004791259765625, -0.00885009765625, 0.0028839111328125, 0.02...
[ 87, 3871, 169581, 30976, 12971, 234737, 23, 74242, 304, 110527, 81366, 7285, 45832, 72, 3066, 2527, 5870, 3240, 3036, 1803, 40485, 20600, 42850, 11389, 627, 2592, 571, 7709, 59947, 142, 18499, 13254, 92319, 1004, 2681, 9513, 69427, 18, 615,...
[ 0.00543212890625, 0.089111328125, 0.1788330078125, 0.169921875, 0.26611328125, 0.283935546875, 0.051422119140625, 0.168212890625, 0.21923828125, 0.1552734375, 0.154052734375, 0.177490234375, 0.2587890625, 0.10565185546875, 0.25634765625, 0.076416015625, 0.1141357421875, 0.110351562...
embed
38719920_c0
38719920
erlang
0
Title: error while install ernw/ss7MAPer Problem title: error while install ernw/ss7MAPer Tags: erlang Problem: error while install ernw/ss7MAPer Code signals: file, ss7MAPer, Desktop, ss7mapper, sniff.erl:34, pkt.hrl, sniff.erl:94, sniff.erl:95, ipv4, sniff.erl:99, sniff.erl:100, sniff.erl:103, sniff.erl:159, sniff.er...
error while install ernw/ss7MAPer error while install ernw/ss7MAPer erlang file ss7MAPer Desktop ss7mapper sniff.erl:34 pkt.hrl sniff.erl:94 sniff.erl:95 ipv4 sniff.erl:99 sniff.erl:100 sniff.erl:103 sniff.erl:159 sniff.erl:161 Seqno sniff.erl:162 Ackno sniff.erl:163 Win sniff.erl:164 sniff.erl:165 Ulen sniff.erl:166 s...
[ 0.00885009765625, 0.0234375, -0.00933837890625, 0.0224609375, -0.0208740234375, 0.00171661376953125, -0.013671875, -0.01513671875, -0.0186767578125, 0.005706787109375, 0.01043701171875, -0.029541015625, 0.01251220703125, 0.01177978515625, 0.027587890625, 0.0162353515625, -0.011230468...
[ 18499, 12960, 20600, 72, 19, 434, 7, 966, 105748, 56, 3066, 11435, 91, 141423, 192, 8079, 93, 4902, 30197, 116829, 4097, 14889, 8821, 617, 5046, 3559, 63620, 146086, 157, 22354, 138808, 17686, 154019, 118913, 60457, 93657, 60006, 121670, 20...
[ 0.1669921875, 0.118408203125, 0.1971435546875, 0.0791015625, 0.0546875, 0.15869140625, 0.08197021484375, 0.1512451171875, 0.1295166015625, 0.1766357421875, 0.1610107421875, 0.08868408203125, 0.0288238525390625, 0.1248779296875, 0.127197265625, 0.1617431640625, 0.1456298828125, 0.13...
embed
11129080_c1
11129080
erlang
1
the assumption that once the connection works in erlang, tsung will also work, this is not the case for me though, I am still getting the same timeout issue. I am not sure how to further debug this, any help or suggestions would be appreciated. UPDATE: As requested in the comments I tried using the IP. With the follow...
the assumption that once the connection works in erlang, tsung will also work, this is not the case for me though, I am still getting the same timeout issue. I am not sure how to further debug this, any help or suggestions would be appreciated. UPDATE: As requested in the comments I tried using the IP. With the follow...
[ 0.00128173828125, 0.024169921875, -0.0123291015625, -0.00592041015625, -0.002471923828125, -0.0263671875, -0.038330078125, 0.006195068359375, 0.0037994384765625, -0.038330078125, 0.006317138671875, -0.00689697265625, -0.0091552734375, 0.005462646484375, 0.01458740234375, -0.00010013580...
[ 237259, 24145, 94878, 43240, 72, 3066, 808, 77524, 4488, 959, 7225, 7464, 20949, 5701, 1733, 6056, 31089, 8, 85779, 4358, 37842, 17368, 8021, 153837, 222978, 27980, 150840, 13784, 57888, 18389, 223, 1314, 4283, 3442, 37321, 18949, 18499, 2886...
[ 0.09283447265625, 0.05291748046875, 0.1334228515625, 0.08538818359375, 0.0814208984375, 0.274169921875, 0.07763671875, 0.261474609375, 0.09814453125, 0.060028076171875, 0.0313720703125, 0.04766845703125, 0.0074462890625, 0.0616455078125, 0.1663818359375, 0.1968994140625, 0.0875854492...
embed
39293823_c1
39293823
erlang
1
34866},60000]}} I'm used register command: bin>ejabberdctl register "newuser" "localhost" "password" Thanks in advance. Please add your ideas and suggestions to resolve this issue. Code signals: Setup, Azure, MSSQL, Database, Ejabberd, default_db, auth_method, ODBC, sql_type, sql_server, Server, azure_server_name, DSN,...
34866},60000]}} I'm used register command: bin>ejabberdctl register "newuser" "localhost" "password" Thanks in advance. Please add your ideas and suggestions to resolve this issue. Code signals: Setup, Azure, MSSQL, Database, Ejabberd, default_db, auth_method, ODBC, sql_type, sql_server, Server, azure_server_name, DSN,...
[ 0.01220703125, 0.00872802734375, 0.00171661376953125, 0.01806640625, -0.021484375, 0.0167236328125, -0.021484375, -0.005157470703125, 0.01019287109375, -0.03173828125, -0.00067901611328125, -0.03466796875, 0.0205078125, -0.012451171875, 0.005126953125, -0.0167236328125, 0.01550292968...
[ 4442, 183461, 8152, 910, 28568, 268, 47391, 87, 39, 11814, 68067, 75101, 2394, 18856, 102459, 71, 15390, 141, 54936, 65918, 98908, 40294, 13409, 47416, 25647, 157666, 103608, 31089, 28864, 26073, 7, 19943, 2037, 176071, 16265, 158897, 187781, ...
[ 0.08917236328125, 0.1876220703125, 0.046600341796875, 0.1405029296875, 0.1324462890625, 0.004119873046875, 0.0770263671875, 0.0352783203125, 0.094482421875, 0.14208984375, 0.306640625, 0.2412109375, 0.193115234375, 0.1864013671875, 0.264892578125, 0.2142333984375, 0.1414794921875, ...
embed
64888880_c1
64888880
erlang
1
lion ","m" =>"madam","n" =>"nike","o" => "orange","p" =>"pot","q" =>"queue ","r" =>"rat","s" =>"snake","t" =>"tea ","u" =>"umbrella","v" =>"van ","w" =>"wolf ","x" =>"xperia ","y" =>"yawk","z" =>"zoo "}, Chunks = string:tokens(Str, [$\s]), io:format("~n~p",[Chunks]), L = func(Chunks,Map), io:format("~p",[L]). func([],#...
lion ","m" =>"madam","n" =>"nike","o" => "orange","p" =>"pot","q" =>"queue ","r" =>"rat","s" =>"snake","t" =>"tea ","u" =>"umbrella","v" =>"van ","w" =>"wolf ","x" =>"xperia ","y" =>"yawk","z" =>"zoo "}, Chunks = string:tokens(Str, [$\s]), io:format("~n~p",[Chunks]), L = func(Chunks,Map), io:format("~p",[L]). func([],#...
[ -0.006591796875, -0.0185546875, 0.000919342041015625, -0.004547119140625, -0.0181884765625, -0.00055694580078125, 0.0267333984375, -0.00933837890625, 0.01031494140625, -0.002593994140625, 0.0177001953125, 0.007659912109375, 0.00726318359375, 0.01007080078125, 0.0184326171875, 0.0011138...
[ 6, 45486, 44, 39, 44357, 58, 15695, 19, 13001, 31, 10727, 13, 254, 7804, 864, 944, 13388, 2175, 1141, 17615, 34, 4134, 1165, 334, 2187, 434, 25400, 420, 17152, 11, 53, 395, 92, 169, 1158, 112204, 1224, 79315, 6448, 1755, 71713, 4369, ...
[ 0.0189666748046875, 0.29541015625, 0.0281982421875, 0.137939453125, 0.0738525390625, 0.0235748291015625, 0.1241455078125, 0.0156707763671875, 0.2259521484375, 0.10284423828125, 0.1458740234375, 0.10205078125, 0.01177978515625, 0.1690673828125, 0.0130615234375, 0.075439453125, 0.07812...
embed