Attempting a purple stream soon!
heed warnings providedthe game includes themes of abuse/child abuse, implied sexual abuse, unhealthy/negative effects of mental illness, mil

seen from Italy
seen from France

seen from United States

seen from United States
seen from Croatia
seen from United States

seen from Malaysia

seen from United States
seen from Germany

seen from United Kingdom

seen from United States
seen from Croatia

seen from Russia

seen from Germany

seen from United States

seen from Germany
seen from Russia
seen from United States

seen from United States
seen from China
Attempting a purple stream soon!
heed warnings providedthe game includes themes of abuse/child abuse, implied sexual abuse, unhealthy/negative effects of mental illness, mil
כמה עולה פיתוח אפליקציה כמו וואטסאפ?
עם השפעתה הרבה על שוק המובייל החל משנת 2013, לא מפתיע שספקים ומוכרים רבים רוצים לדעת כמה עולה לפתח אפליקציה כמו Whatsapp. כפי שנכתב ב- Financial Times: "Whatsapp עשתה להודעות SMS את מה ש- Skype עשתה לשיחות בינלאומיות מקווי טלפון." ו- 1.2 מיליארד משתמשים פעילים מדי חודש הם הוכחה ברורה לכך. כיצד וואטסאפ עובדת? כפי שמציע […] The post כמה עולה פיתוח אפליקציה כמו וואטסאפ? appeared first on פיתוח אפליקציות ג'יאפס. http://dlvr.it/Qf9Pd1
כמה עולה פיתוח אפליקציה כמו וואטסאפ?
עם השפעתה הרבה על שוק המובייל החל משנת 2013, לא מפתיע שספקים ומוכרים רבים רוצים לדעת כמה עולה לפתח אפליקציה כמו Whatsapp. כפי שנכתב ב- Financial Times: "Whatsapp עשתה להודעות SMS את מה ש- Skype עשתה לשיחות בינלאומיות מקווי טלפון." ו- 1.2 מיליארד משתמשים פעילים מדי חודש הם הוכחה ברורה לכך. כיצד וואטסאפ עובדת? כפי שמציע […] The post כמה עולה פיתוח אפליקציה כמו וואטסאפ? appeared first on פיתוח אפליקציות ג'יאפס. http://dlvr.it/Qf9NTD
כמה עולה פיתוח אפליקציה כמו וואטסאפ?
http://dlvr.it/Qf9NPz
Gif for Studio Mnesia’s first major project! Gonna clean up the frames with lineart and color soon!
Erlang Mnesia
I have recently started to learn Erlang. And I must say it can give you some pretty weird error codes. For example I have started Mnesia and calling create_table function like this:
mnesia:create_table(record_name, [{attributes, record_info(fields, record_name)}, {type, bag}, {disk_copies, [node()]}])
The error it reports is:
{aborted, {badarg, record_name, disk_copies}}
Well, what do you think is the problem here??
I don't know about you but I totally accidentally found out what is the problem, because Google told me do you mean disc, instead of disk. The problem is that I have written disk_copies instead od disc_copies.
Mnesia
Mnesia is a distributed, soft real-time database management system written in the Erlang programming language[1]. http://en.wikipedia.org/wiki/Mnesia
建立分布式 Mnesia
Erlang 的分布式安全策略比较古怪,要么拥有全部权限,要么啥也没有
启动 erl 时候添加 -setcookie 参数:
erl -name [email protected] -mnesia dir '"/db/mnesia"' -setcookie node1
erl -name [email protected] -mnesia dir '"/db/mnesia"' -setcookie node2
erl -name [email protected] -mnesia dir '"/db/mnesia"' -setcookie node3
在 node1 机器的 erlang shell 中输入:
erlang:set_cookie('[email protected]','node2').
erlang:set_cookie('[email protected]','node3').
这时候就可以建立连接。
然后建立 mnesia 的 schema :
mnesia:create_schema(['[email protected]','[email protected]','[email protected]']).
建表:
mnesia:create_table('_ids_', [{attributes, [id, count]},{ram_copies,['[email protected]','[email protected]','[email protected]']}]).
mnesia:create_table('greeting', [{attributes, [id,greeting_text]},{ram_copies,['[email protected]','[email protected]','[email protected]']}]).