This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#README | |
# In order to run this script, the following command line tools must be installed: | |
# 1) a subversion client, under Windows, Slik SVN is recommended: http://www.sliksvn.com/en/download | |
# 2) a Graphviz toolset, which can be downloaded from http://www.graphviz.org/ | |
# Also the following ruby gems must be installed: | |
require 'rubygems' | |
#'xmlsimple' | |
# gem: http://rubyforge.org/frs/?group_id=638 | |
# doc: http://xml-simple.rubyforge.org/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
"http://www.w3.org/TR/html4/loose.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>matrix</title> | |
<meta name="author" content=""> | |
<link rel="stylesheet" href="http://www.blueprintcss.org/blueprint/screen.css" _href="../stylesheets/blueprint/screen.css" type="text/css" media="all" /> | |
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/redmond/jquery-ui.css" type="text/css" media="all"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==ENV== | |
OS: ubuntu desktop 11.10 | |
RUBY: ruby 1.8.7 (2011-06-30 patchlevel 352) [i686-linux] | |
GEM: 1.3.7 | |
==ERROR LOG== | |
bundle install | |
Fetching source index for http://rubygems.org/ | |
Installing rake (0.8.7) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
来源:http://baoz.net/use-reves-proxy-fvck-gfw-to-gem-from-rubygem/ | |
用的apache做的反向代理,配置如下 | |
NameVirtualHost *:80 | |
<VirtualHost *:80> | |
DocumentRoot /var/www/html | |
ServerName rubygems.org | |
ProxyRequests Off | |
<Proxy *> |
- Blender
- lolblender(可以将LOL的模型导入Blender的插件,也可导出,只支持Blender 2.5,不支持2.6)
- RiotFileTranslator(可以为Maya导入导出skn、skl、anm、sco)
- RiotSkin2Obj v1.1(可以将skn转为obj格式)
I can't run db-charmer-sandbox on my Ubuntu 11 in any way, no matter rspec
, RAILS_ENV=test rails server
or RAILS_ENV=test rails console
, no matter with ruby 1.9.1
installed by apt-get
or ruby 1.9.2
installed by rvm
.
It's always the same result(after exhausting CPU and mem):
script/rails:6: stack level too deep (SystemStackError)
I seriously doubt that there is something wrong in the require tree.
看雪学院(国内最知名的软件安全网站) http://www.pediy.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl http://npmjs.org/install.sh | sh |
对于C++反射,我关心的使用领域包括:模版元编程可以解决的那一部分编译时反射,运行时反射在实现IoC、ORM等中可以让程序员写得更惬意的语法糖衣、DSL,在类Rspec测试和Mock中所需要的对于被测程序非侵入式的信息获取和校验。
从 http://www.garret.ru/cppreflection/docs/reflect.html , 我们可以了解到在C++中达成反射的基本方法:
Program was build with enabled debugging support and distributed with debuggingApproach | Advantages | Disadvantages |
---|---|---|
Parse debugging information |
|
OlderNewer