erlang nitrogen
froshloveC
这个作者很懒,什么都没留下…
展开
-
nitrogen利用imagemagick生成缩略图
http://www.imagemagick.org 首先安装imagemagick sudo apt-get install imagemagick 然后测试一下 在shell下面 convert dragon.gif -thumbnail 100 dragon2.gif 生成一个宽度为100像素的新图片 erlang调用的时候通过os:c...2011-12-14 21:35:16 · 121 阅读 · 0 评论 -
nitrogen写的注册页面代码
-module (register). -compile(export_all). -include_lib("nitrogen/include/wf.hrl"). -define(USER_DOC , {[ {<<"_id">>,<<"null">>}, {<<"2011-12-30 13:52:52 · 130 阅读 · 0 评论 -
json format
step1. download the mochijson2 lib. step2. set the http header content_type("application/json"), step3. write the io steam as json. io:format(mochijson2({struct,[{"id",i...原创 2011-11-21 10:55:35 · 224 阅读 · 0 评论 -
Erlang安装
Erlang本身在ubuntu系统中默认是安装的 但是我需要使用和nitrogen版本对应的Erlang版本 nitrogen就是Erlang的一个web开发框架 所以我需要安装新的Erlang 但是Erlang开发中一般会出现一些问题 我是下载源文件下载的,用默认的apt-get方式是不行的,得不到需要的版本 然后安装前需要安装一些依赖的组件 ...原创 2011-11-24 23:27:02 · 120 阅读 · 0 评论 -
nitrogen 配置启动时自动启动mnesia数据库
1.编辑vm.args文件 找到 -eval "nitrogen_init:init()" 最后加上 -eval "application:start(mnesia)" 2.修改src中的 nitrogen_init.erl文件 在其中的init函数中加入 application:start(mnesia) 测试,启动之后,在nitrogen consol...2011-12-04 17:44:05 · 158 阅读 · 0 评论 -
nitrogen在console下直接重新编译erl文件
原文写的是 There are three different ways to compile code in Nitrogen: If you are in the Erlang console then run sync:go(). 如果是开启的console模式的话就直接执行sync:go() This will look at all loaded modules, ...原创 2011-12-04 17:48:05 · 141 阅读 · 0 评论 -
erlang 调用 cloudDB
sudo aptitude install couchdb 如果没有安装aptitude的请先安装 sudo apt-get install aptitude 下载couchbeam git clone https://github.com/benoitc/couchbeam.git cd couchbeam 然后make 然后把里面的 ebin目录...原创 2011-12-05 20:25:59 · 133 阅读 · 0 评论