登录
f0_308021
注册时间:2022-03-30 10:49:07
Ta的资源
rv-ember-server-master.zip 节点 Ember 服务器 这是一个简单的 HapiJS 服务器,我们使用它在单页 Ember 应用程序前面运行。 其目的是设置与 Recruiting Ventures API 通信所需的 Api 令牌和密钥。 唯一的路由是index.html ,该路由以 cookie 的形式返回authToken和apiKey 。 本地配置 包括一个示例本地配置。 只需删除.example 。 此文件旨在包含您将用于散列apiToken的秘密,但它包含各种其他变量,如果您认为合适,可以更改这些变量。 安装 全球范围内 npm install -g rv-ember-server 项目 npm install rv-ember-server --save 跑步 全球范围内 rv-serve 项目 ./node_modules/rv-ember-server/bin/server
开发工具:
大小:121KB
2022-04-08 22:03:29上传
欧姆定律计算器:简单的欧姆定律计算器-matlab开发 matlab中的欧姆定律计算器使用输入消息框功能完成.....学习者的非常基本的模型代码..如果有任何查询评论我..
开发工具:
大小:1.4KB
2022-04-08 03:35:15上传
网站压缩转发系统 v0.1 build 20110207 网址缩短转发系统高效,稳定,快速 只需php 开启curl 函数即可(大多数服务器都支持),使用cmcc.in开发的openapi,甚至无需数据库,对系统的要求极低 功能:该服务能将任意长网址变短,作为长网址的快捷方式,方便输入,记忆,和传播。会员享有点击统计特权,能够生成可以统计点击次数的url链接,帮助您衡量广告点击、外链点击、签名点击效果,数据实时、私有、准确. 较国外开源的同类源码具备非常大的优势 下载好之后,打开upload文件夹中的config.php按照提示修改你的配置,例如站点标题,站点名称,logo下面显示的文字,备案号等信息
开发工具:
大小:273.7KB
2022-04-07 22:52:11上传
webidl-conversions:实现Web IDL算法以在JavaScript值之间来回转换 基于JavaScript值的Web IDL类型转换 该包在JavaScript中实现了根据给定转换给定JavaScript值的算法。 目标是您应该能够像 "use strict" ; const conversions = require ( "webidl-conversions" ) ; function doStuff ( x , y ) { x = conversions [ "boolean" ] ( x ) ; y = conversions [ "unsigned long" ] ( y ) ; // actual algorithm code here } 并且您的函数doStuff行为与声明为的Web IDL操作相同 void doStuff (boolean x, unsigned long y); 原料药 该软件包的主模块的默认导出是具
开发工具:
大小:57.9KB
2022-04-07 20:37:01上传
OpenSSL静态库 2014-4-7版本1.0.1g 编译好的OpenSSL静态库和头文件。
开发工具:
大小:3.9MB
2022-04-07 18:30:32上传
tdd-java-ch09-feature-toggle:Java测试驱动开发第9章 tdd-java-ch09-功能切换 测试 ./run_test.sh 启动服务 ./run.sh
开发工具:
大小:12.5KB
2022-04-07 03:29:00上传
kokonotsuba-js:Kokonotsuba的Javascript,这是可用于Gurochan和Heyuri的Kolym Kokonotsuba JS 信息 该javascript由KolymaNET网站开发并用于KolymaNET网站,并在此进行了公开,以方便访问和编辑。 感谢在领导Kokonotsuba及其javascript开发方面所做的工作。
开发工具:
大小:17KB
2022-04-07 00:13:29上传
erlang日志应用log4erl(非sasl) 用不惯sasl的,可以用log4xxx的erlang版,log4erl。 log4erl Manual: =============== TOC: ==== 1. Features 2. Installation 3. Usage 4. API 5. Configuration 6. Known issues 7. Future development 8. License 1. FEATURES: ============ - Multiple logs - Currently, only size-based log rotation of files for file appender - Support default logger if no logger specified - 5 predifined log levels (debug, info, warn, error, fatal) - A log handler for error_logger - Support for user-specified log levels - Support for a log formatter (similar to Layouts in Log4J) - Support for console log - Support for smtp formatter - Support for XML logs - Support for syslog - Support for changing format and level of appender during run-time 2. INSTALLATION: ================ To compile & install log4erl, download source from google code's website (http://code.google.com/p/log4erl/) or from svn: $> svn checkout http://log4erl.googlecode.com/svn/trunk/ log4erl or from github public repository (http://github.com/ahmednawras/log4erl/). $> cd log4erl $> make or you can run the below from erlang shell: $> cd src $> erl 1> make:all([{outdir, "../ebin"}]). 3. USAGE: ========= 1- In order to use log4erl, you need to first include it in the path. There are 2 ways to do this: a) include the "log4erl" directory in erlang's "lib" directory in the target machine (cp -Rf log4erl /where/erlang/is/lib). $> cp -Rf log4erl /usr/local/lib/erlang/lib/ b) include the "log4erl" ebin directory in the path when running you program $> erl -pz /path/to/log4erl ... 2- Once the log4erl directory is included, you can use its API as described in section "API". but before, you need to run: > application:start(log4erl). 3- Create a configuration file and load it using log4erl:conf(File) > log4erl:conf("priv/log4erl.conf"). 4- Alternatevly, you can create loggers & add appenders to them programmatically as appropriate. You can do this as per the API below. > log4erl:add_logger(messages_log). > log4erl:add_console_appender(messages_log, cmd_logs, {warn, "[%L] %l%n"}). where Conf is the erlang term describing how the log is to be handled You can also add more types of appenders, which is explained in API.txt and Appneders_API.txt. 5- Now, you can log whatever messages you like as per logging functions described in API. > log4erl:info("Information message"). Precedance of log levels are: all = debug < info < warn < error < fatal < none User defined levels are always written except when none level is specified in the logger specification (See below). 4. API: ======= Please look at API.txt file for more information about the API. 5. CONFIGURATION: ================= Please look at CONFIGURATION.txt for more information about how to configure log4erl. 6. KNOWN ISSUES: ================ - Name of both loggers & appenders should be unique and not registered since log4erl will try and register their names. If the name is already registered, nothing will happen. This will be fixed soon. - If you run change_log_format/1,2 and appender crashed, a restart from the supervisor will not record the latest format used. It will only use either the default format or the format used in the argument is supplied. 7. FUTURE DEVELOPMENT: ====================== - Add support for different log persistance methods (e.g files, XML, console, DB, SNMP, syslog...etc) - Add support for time-based log rotation - Multiple configuration format (Erlang terms, XML?, properties files?) - Add support for NDC & MDC ??? Please send your suggestion to ahmed.nawras <at @ at> gmail <dot . dot> com 8. LICENSE: =========== This software is subject to "Mozilla Public License 1.1". You can find the license terms in the file 'LICENSE.txt' shipping along with the source code. You may also get a copy of the license term from the URL: "http://www.mozilla.org/MPL/MPL-1.1.html".
开发工具:
大小:145.1KB
2022-04-06 21:44:34上传
ASP.NET实战编程(三).zip ASP.NET实战编程(三).zip
开发工具:
大小:8.2MB
2022-04-06 19:28:25上传
layout:用于构建Podium布局服务器的模块。 布局服务器将多个Podlet组合到一个布局中,从而形成一个完整的网页 @讲台/布局 一个模块,用于在微型前端体系结构中用页面片段组成完整的页面布局。 请参阅网站。 用于构建布局服务器的模块。 布局服务器主要负责获取HTML片段并将这些片段拼接成完整HTML页面。 为此,布局实例提供了三个核心功能: @podium/client用于从Podlet中获取内容 @podium/context用于在获取内容时将关于布局的请求的绑定信息设置为Podlet @podium/proxy使得可以在Podlet或任何后端服务中公开公开数据终结点 该模块可以与普通的node.js HTTP服务器或任何HTTP框架以及您选择的任何模板语言一起使用(如果愿意,也可以不使用)。 注意:基于连接兼容中间件的框架(例如 )在Podium中被视为第一类,因此该模块提供了.middleware()方法以方便使用。 为了使用其他HTTP框架编写布局服务器,存在以下模块: 安装 $
开发工具:
大小:26.2KB
2022-04-06 04:03:48上传
  • 1
  • 24
  • 25
  • 26
  • 27
  • 28
  • 30
前往
页