Submitted by gouki on 2015, September 23, 2:36 PM
中国佛教出现过许多派别,主要有八宗。
一是三论宗又名法性宗,
二是瑜伽宗又名法相宗,
三是天台宗,
四是贤首宗又名华严宗,
五是禅宗,
六是净土宗,
七是律宗,
八是密宗又名真言宗。
这就是通常所说的性、相、台、贤、禅、净、律、密八大宗派。
寺院等级介绍 :唐以前设上座,寺主,维那三职.
现在寺院设八大职事:都监,监院,维那,副寺,典坐,僧值,知客,书记.一寺之主称方丈或住持.
Misc | 评论:0
| 阅读:15877
Submitted by gouki on 2015, September 14, 2:25 PM
听闻新浪的鸟哥(风雪之隅)去离开新浪去链家当VP了。不禁了解了一下各类英文的称呼,之前只对ceo,cto,cfo之类的解释比较熟,果然还是属于低层面的。。。
所以乘这个机会了解一下gm,vp,fvp,cio的含义,也好装装逼,原文来自:http://blog.sina.com.cn/s/blog_6a2c38270100mso5.html
XML/HTML代码
- 企业各职位英文缩写:
- GM(General Manager)总经理
- VP(Vice President)副总裁
- FVP(First Vice President)第一副总裁
- AVP(Assistant Vice President)副总裁助理
- CEO(Chief Executive Officer)首席执行官,类似总经理、总裁,是企业的法人代表。
- COO(Chief Operations Officer)首席运营官,类似常务总经理
- CFO(Chief Financial Officer)首席财务官,类似财务总经理
- CIO(Chief Information Officer)首席信息官,主管企业信息的收集和发布
- CTO(Chief technology officer)首席技术官 类似总工程师
- HRD(Human Resource Director)人力资源总监
- OD(Operations Director)运营总监
- MD(Marketing Director)市场总监
- OM(Operations Manager)运作经理
- PM(Production Manager)生产经理
- (Product Manager)产品经理
-
-
- 下面的。。。有点怪。。。
-
- CAO: Art 艺术总监
- CBO: Business 商务总监
- CCO: Content 内容总监
- CDO: Development 开发总监
- CGO: Gonverment 政府关系
- CHO: Human resource 人事总监
- CJO: Jet 把营运指标都加一个或多个零使公司市值像火箭般上升的人
- CKO: Knowledge 知识总监
- CLO: Labour 工会主席
- CMO: Marketing 市场总监
- CNO: Negotiation 首席谈判代表CPO: Public relation 公关总监
- CQO: Quality control 质控总监
- CRO: Research 研究总监
- CSO: Sales 销售总监
- CUO: User 客户总监
- CVO: Valuation 评估总监
- CWO: Women 妇联主席
- CXO: 什么都可以管的不管部部长
- CYO: Yes 什么都点头的老好人
- CZO: 现在排最后,等待接班的太子
Misc | 评论:1
| 阅读:21208
Submitted by gouki on 2015, September 7, 10:56 PM
原文来自:http://stackoverflow.com/questions/1653308/access-control-allow-origin-multiple-origin-domains
主要是因为涉及到CSS和JS文件是挂在别的域,然后又遇到了ajax之类的操作,所以就需要有跨域操作了,本来很方便的,只是在.htaccess文件中加了一句
XML/HTML代码
- Header add Access-Control-Allow-Origin "http://xxxxxx.com"
但因为备案原因,所以又添加了一个备用域名,结果,就报错了,报错提示是:
XML/HTML代码
- font from origin 'http://xxxxx.com' has been blocked from loading by Cross-Origin Resource Sharing policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://yyyy.com, http://zzzz.com', but only one is allowed. Origin 'http://xxxxx.com' is therefore not allowed access.
我晶,不支持多域名啊,google了一下,找到了这一篇:http://stackoverflow.com/questions/1653308/access-control-allow-origin-multiple-origin-domains
不多贴,其实挺有意思。。方法也有不少
1、利用apache的环境变量:
XML/HTML代码
- SetEnvIf Origin "^(.*\.example\.com)$" ORIGIN_SUB_DOMAIN=$1
- <FilesMatch "\.woff$">
- Header set Access-Control-Allow-Origin "%{ORIGIN_SUB_DOMAIN}e" env=ORIGIN_SUB_DOMAIN
- </FilesMatch>
2、用PHP来判断:
PHP代码
- $http_origin = $_SERVER['HTTP_ORIGIN'];
-
- if ($http_origin == "http://www.domain1.com" || $http_origin == "http://www.domain2.com" || $http_origin == "http://www.domain3.info")
- {
- header("Access-Control-Allow-Origin: $http_origin");
- }
3、和1有点类似
XML/HTML代码
- SetEnvIf Origin "^http(s)?://(.+\.)?(domain\.org|domain2\.com)$" origin_is=$0
- Header always set Access-Control-Allow-Origin %{origin_is}e env=origin_is
4、这是nginx的:
XML/HTML代码
- location /fonts {
- # this will echo back the origin header
- if ($http_origin ~ "example.org$") {
- add_header "Access-Control-Allow-Origin" $http_origin;
- }
- }
更多的,还是去原网页看吧。。
PHP | 评论:0
| 阅读:20439
Submitted by gouki on 2015, August 31, 10:55 AM
最近收到一封邮件,大意是,phpanywhere已经改名为codeanywhere了,我看了一下邮件中提及的博客日期,发现贴子地址是:http://www.neatstudio.com/show-1305-1.shtml ,已经是N年前的事情了。
邮件中提及:As you may have heard we have changed our name to Codeanywhere a couple of years back and now we have an issue. Namely we lost the domain phpanywhere.net and know all your link lead to nowhere.
为了以防万一,我查了一下百科:
https://en.wikipedia.org/wiki/Codeanywhere
- History[edit]
- In 2009 PHPanywhere (the predecessor of Codeanywhere) was launched, which was a web-based FTP client and text editor, designed for PHP.[4] That project stayed idle until May 22, 2013 when the founders launched Codeanywhere.
-
- Codeanywhere raised $600,000 from World Wide Web Hosting on July 15, 2013 when Ben Welch-Bolen became a board member.[5] In August of 2014 Codeanywhere was accepted in Techstars’s Fall Boston Class.[6] In 2014, as part of the TechCrunch Disrupt NY Conference, the audience voted Codeanywhere the best company in Startup Alley.[1]
so,phpanywhere确实是codeanywhere的前身。。。于是顺手改掉了那篇博客,顺便说一下,codeanywhere很早就在ipad上面有APP了,而且我还用过,只是居然真的不知道它就是phpanywhere....
Linux | 评论:2
| 阅读:19216
Submitted by gouki on 2015, August 14, 9:38 AM
说实话,最近有很多关于墙的消息,好象要出国已经变得越来越难了,早上@三马 分享了一篇简书文章,介绍墙和翻墙缘由的,结果发了一分钟就被墙了!是啊,现在已经不再提怎么爬梯子了,很多人都认命了。周围有不少技术人员已经开始用百度、bing来搜索了(不得不说,360、soso什么的还是没有深入到技术人员的心里)
我呢,不知道从什么时候起,我习惯了用google(现在都没有在想以前没有google的时候,我是怎么搜索的),当然到现在为止我还是在用google,甚至我也认为,一个没有办法时刻用上google的人应该也不是一个好程序员(当然,我本来就不是)。
最近上海电信在对国外出口做限制,因为不知道是超售还是封锁,我这里就不发表意见,但带来的问题是,原来仅剩的几个还能访问的国外站点,现在也变得越来越慢了。比如github,作为一名PHP程序员,composer这个工具既给我们带来了快乐,也给我们带来了无尽的悲伤,一个composer update,你已经无法想象你要等多久了。
发完牢骚也说说我自己是怎么用的吧,自建VPN是肯定不用说的,那都是备用的,毕竟在手机上用shadowsocks还是不太方便,平时在网页端已经是switchyomega + goagentx + shadowsocks 了。前两天有人推荐了proxychain4,现在在命令行用它来更新composer 感觉也快了很多。
最后补一句,为了能够稳定的打开网页,我已经备了4个shadowsocks的服务器(这是多大代价的投入啊!!!!!)
BTW:updated 2019-11-26,所有的梯子都断了。。。。。哎。
Misc | 评论:3
| 阅读:19049