I251-82-94-I guarded in the Palace Museum-我在故宫看大门

出版物封面

Cover of Publication

 

出版物名称

Name of Publication

我在故宫看大门

I guarded in the Palace Museum

著者 Author 维一

Wei Yi

出版单位 Publisher 生活·读书·新知三联书店

SDX Joint Publishing Company

简介

Introduction/ Abstract

《我在故宫看大门》作者维一初中肄业后先到内蒙古农村种庄稼,又到西双版纳农场砍树种橡胶。后来回到北 京闭门读书,到故宫博物院看大门。本书收录了作者“发掘”自己记忆残片的一组文章,除了“我在故宫看大门”,还有淘旧书的荒唐事、王世襄的“锡庆门行走”、冯爷的外语和学问等。
该书讲述的一些事让人忍俊不禁;另一些事则令人心酸叹息。时间、地点、人物的记忆都会出现残缺、偏差,以致颠倒和混乱,但这不应该是忘却记忆甚或抹杀记忆的借口。如今这个鼓励遗忘、愿意遗忘的年代,对于发掘记忆、坚持记忆的人,我们应该有一份特别的尊敬。
个人书评

Personal Book Review

命运的碰撞使作者有机会进入中国历史与文化的瑰宝——故宫博物院当中工作。书中所述的故事和轶事,本身就引人入胜。而这些记忆又发生在故宫这个地方,便一起融入故宫的内涵,成为历史车轮当中的一支。

Due to the clash of fates, the author came into his special stage of life, working in the Place Museum. Those stories, anecdotes and experience belongs to the author, have their taste and interest. But the place where they happened, the Place Museum gave the historical meaning to them. And they came to a part of history of the Palace Museum.

 

ISBN/ISSN 9787108036094
出版日期

Date of Publication

2011.4 出版地

Place of Publication

北京

Beijing

中图分类号

CLC Code

I251 中图法分类名称

CLC Category

回忆录
国际十进分类号

UDC Code

82-94 国际十进分类名称

UDC Category

历史作为文学体裁. 历史写作、史学、编年史、史册、回忆录、期刊、日记、传记、自传

History as literary genre. Historical writing. Historiography. Chronicles. Annals. Memoirs. Journals. Diaries. Biography. Autobiography

书刊定价

Price of Publication

CNY31 书刊语言

Language

简体中文
购买正版

Purchase of Authorized Edition

 dangdang.com(E-Book)

05/06/2016 – Index 4.0 & Bootstrap & Debug – 主页4.0版本和Bootstrap框架以及Debug

(English version follows Chinese Part)

由于之前几个版本的主页对移动端和小屏设备都不太友好,所以我决定给主页改改版。这回采用的是Bootstrap框架,Bootstrap除了开发对我这样的入门级人士比较简便易学,浏览器兼容性和移动设备兼容性也是优点。

The old version index pages were not friendly to mobile devices and small screen devices. So I decide to update the index page just after the 1st anniversary of my website. It is base on Bootstrap, a frame that is easy to learn for code rookie like me. And the point is, Bootstrap is suit for PC and most mobile devices.

我使用的是Pingendo工具,一个可视化的网页创建工具,官网是http://pingendo.com/

My tool is Pingendo, a visualized webpage builder. Official web site :http://pingendo.com/

简单设计一下(本来我的主页也不复杂,就是一般的导航页而已),就由Pingendo自动导出html和css了。

My index page is not gaudy. It took little time to rebuild it in Pingendo, then export the html and css files automatically.

本地打开没问题,上传到服务器以后用Chrome打开也没问题。效果如图1。

Loading the local files was a success. And it was still OK when I visit the page by Chrome after uploading to the server. Just like Fig.1.

20160605-index3 (2)

图.1(Fig.1)

可是,当我用火狐浏览器打开以后,Boom!如图2。

However, when I use the Firefox, Boom! Check Fig.2.

20160605-index3 (1)

图.2(Fig.2)

我就不明白了,用Chrome和IE都可以载入,偏偏火狐不行?!一开始我以为是火狐对Bootstrap兼容性问题,又怀疑是服务器问题……我就让一位朋友用他的火狐打开试试,结果没问题?!因为他是信息行业业内人士,他告诉我他用的是开发者版火狐,而且控制台显示有bug,就让我自己看看bug是什么,然而我发现普通版火狐并没有类似功能,就装了个firebug组件。一刷新……报错出现!如图3。

I did not get it, only Firefox report error when Chrome and IE can load the page?! I considered that the problems of compatibility between Firefox and Bootstrap. And maybe it was a server’s error ? I asked one of my friends who works in information enterprise to visit the page with his Firefox. Not thing wrong! Then he told me about his Firefox Developer Edition and teach me to find the bug with firebug. The bugs were listed in firebug as fig.3!

20160605-index3 (3)

图.3(Fig.3)

竟然是‘\’和‘/’写反了!进源码一看,问题出在这:

Seriously? A simple code writing mistake between ‘/’ and ‘\’ ? ! Check the source code :

[html]

<link href="css\default.css" rel="stylesheet" type="text/css">

……

<img src="img\profile.png" class="center-block img-responsive">

[/html]

这两段代码就不是我自己写的啊!是Pingendo自动生成的啊!这个锅我不背……

These code were written by myself ! They are original code exported by Pingendo automatically!

所以出Bug的根本原因就是:css和img文件路径错误,火狐在访问这两个文件失败,导致只能显示html信息。

So the problem is that: wrong path of .css and img file, which result in the failure of page resource  loading.

Debug以后就完全没问题了。

It all right after debug.

不过有个地方值得注意,就是bug还存在的时候Chrome和IE(IE11)还有火狐开发者版是可以正常打开的,说明它们都自带自动纠正一类的功能。

Notabily, Chrome and IE can load the page successfully alone with the bug, it proves the function of automatic code correction.

其实,除了这一点小小的bug,Pingendo工具还是很好用的,尤其是可视化的编辑界面对只需要简单页面编辑的站长非常友好。

Despite the little bug I met,  Pingendo is an excellent tool for rookie developer , especially the visualized interface is so friendly to junior developer.

最后,祝贺一下主页4.0版本正式上线!

Cheers for the launching of index 4.0!

04/05/2016 – 1/700 HMS ‘Rodney’ Battleship Scale Model – 1/700比例皇家海军‘罗德尼’号战列舰模型

(English version follows Chinese Part)

20160504-HMSRodney (1)


自从小学以来就没有再接触舰船模型,这次想起来要做一个战列舰模型,是因为Wargaming出品的‘战舰世界’游戏上线了,玩起来还不错,觉得可以做一个真实的模型放在房间里。况且,战列舰这种钢铁力量的象征,大部分男孩都会喜欢吧。

Since last ship model finished in my primary school, I have not touch them again until recent month. I did have fun in playing WOWS a internet game from Wargaming. So why not have a real model in my bedroom? After all, most boys will get passion in battleship, a symbol of power and steel.

因为很久没有制作过舰船模型,所以觉得1/700比例的小规模船模会比较适合,况且这样可以在较短的工期内完成,大小也适合摆在桌面或书柜里。因此,购买的是田宫77502套件,1/700比例的英国皇家海军‘纳尔逊’级二号舰‘罗德尼’号战列舰,以及改造蚀刻片和金属炮管,总共约花费100人民币。零件全家福如图1。

As I said, I did not get close to ship model for decade. A small one of 1/700 scale will suit me and I can spend less time on it. A tiny ship can also have a place in my bookcase. I choose No.77502 ‘HMS Rodney’ pack produced by TAMIYA with PE and metal gun barrels. They cost me about CNY100 (≈USD15). They are listed in fig.1.

20160504-HMSRodney (6)

图.1(Fig.1)

由于是1/700比例的廉价套件,细节并不算很丰富,所以就完全按照说明书直接组装了,唯一不同的是在一些部位换成了金属蚀刻片,以期增加效果。当然,战列舰的灵魂就是主炮,所以必须要通过更换金属炮管体现细节,如图2。

You can’t expect for too much details of a cheap model pack. So I set up the ship just by following the manual. Exchange some parts into PE at most. Of course, the soul of a battleship is the gun. Replacing the plastic parts by metal barrels makes it handsome! Check fig.2.

20160504-HMSRodney (8)

图.2(Fig.2)

另外一个重点就是战舰甲板。很长的一段时间内,战舰甲板都是木质拼接的,所以涂装上要特别处理。1/200、1/350等大比例船模主要通过更换木片、遮盖喷涂分色等方法来实现木甲板的色彩效果,我在网络上也找到了1/700小比例船模进行遮盖喷涂分色的例子,大多是精益求精的高级作品,然而我这次是‘练习作’的定位,就不太适合这种较为繁复的手法。因此我决定喷涂底色,再手涂杂色的方法实现效果。如图3。

Another key is the deck. For a long period, deck of battleships are stitching woods. Special steps must be done during painting. Usually, replace the deck with real wooden board or cover-spray painting will work well on big scale model such as 1/200 or 1/350. But only a little examples I can find on the internet for 1/700 model. Besides, what I plan to finish is a “practice work” of ship model, which will not require too much effect. At the end, I spray painted the deck and drew the wooden texture by hand as fig.3.

20160504-HMSRodney (7)

图.3(Fig.3)

按照说明书一步步组装、涂装,最后效果还不错,如图4。

Assembling and painting. Look nice! Check fig.4.

20160504-HMSRodney (16)

图.4(Fig.4)

另一个重头戏是制作场景地台。海洋场景的地台一般有两种材质,一种是玻璃胶或树脂,另一种是石膏。水纹制作也有两种方法,一种是手工模仿,另一种是利用锡箔纸做模具。正如前文所说,‘练习作’的定位让我选择了难度最低的方法,锡箔纸模具浇筑石膏成型。

Sorry, there’s one point I have to express. The platform of the model, an “ocean” platform. People use two main materials to build the model platform: glass glue/silicone or gypsum. Waves also have two method to present: molding or forming by hand. The easiest and cheapest way I choose is gypsum molding. With tinfoil.

锡箔纸怎么做成水纹模具呢?很简单,家里的厨用锡箔纸取合适大小,揉成团,然后再展平,就变成水波纹的样子了!如图5,6。

How can tinfoil form gypsum into water waves? Simple. Fetch proper piece of tinfoil you need, crumple it, and unbend it. Check fig.5 and fig.6.

20160504-HMSRodney (9)

图.5(Fig.5)

20160504-HMSRodney (10)

图.6(Fig.6)

再用轻木片组合围成模具侧边,如图7。

Woods are used to set up the rest parts of the mold as fig.7.

20160504-HMSRodney (11)

图.7(Fig.7)

就可以浇筑了。仿照网上的多种说法,我配置的石膏比例是:

Start casting! My formula is learned from internet:

石膏粉:白乳胶:水 = 5杯:3/4杯:2杯

Gypsum powder : white latex(glue) : water = 5 cups : 3/4 cups : 2 cups

另外特别注意的是,为了增加石膏筑型的强度,我分两次浇筑石膏,两次之间铺了一块浸湿的纱布作为骨架。浇筑完成以后如图8。

Additionally, I poured the mixture in two steps. I placed a piece of wet gauze between them. The gauze can work as the frame of the platform and strengthen it. Fig.8 shows the situation after casting.

20160504-HMSRodney (12)

图.8(Fig.8)

石膏大约30分钟就硬化了,但是为了干透,我还是让它在阴凉处晾了一天才进入下一步。脱模以后发现水纹效果不错!(图9)

The gypsum solidify in about half hour, but I waited for a day until it dry out. It look like real water surface when I demold the tinfoil! (Fig.9)

20160504-HMSRodney (13)

图.9(Fig.9)

下一步就是按照船型挖出安放槽,挖出来的石膏碎块不要扔掉哦!后面还有用处。海洋地台表现船舶航行动态的细节就是船身周围激起的浪花,这个也有很多材料、方法来制作,但无外乎通过手工模仿,基本不能通过模具实现。一开始我想通过玻璃胶来成型,但需要额外购置,看到网络上有人通过专门的模型AB补土来制作,就想到家里还有许多装修时剩下的AB胶(环氧树脂型),但AB胶有个问题,太稀,不容易制作成立体形状。我就突发奇想,将AB胶和之前挖下来的石膏碎屑混合制成‘补土’怎样?立刻付诸实践,均匀碾碎石膏碎屑,混入等量AB胶。虽然流动性还是有点高,但至少能够堆叠起来,所以不能着急,一层固化再叠一层,最后修刮成型,效果竟然意外地好!因为石膏碎屑大小形状不均匀,甚至还额外凸显出了海浪中浪花气泡的效果。未上色时的效果如图10。

The next step is digging a groove for the ship. Remember, don’t waste the gypsum fragment you dig out, its useful later. An “ocean” platform can not leave neither waves nor spindrift. Most articles in the internet talk about using model AB putty, but I realized that I shall fix the normal AB glue(epoxide resin) with gypsum fragment. Shape it into spindrift layer by layer. Well, the result is much far from surprise I think. Ragged gypsum fragment appears as the bubble and white water of waves! Fig.10 shows the appearance before painting.

20160504-HMSRodney (14)

图.10(Fig.9)

最后用丙烯颜料(事实上,我制作所有模型的地点都是在卧室,为了安全起见,包括模型本身在内的部件,所有上色都用的是无毒的丙烯颜料)给水面上色。‘罗德尼’号隶属英国皇家海军,英国地处北大西洋,水面颜色自然以北大西洋为蓝本,所以搜索了一些北大西洋的洋面图片作为配色参照。如图11。

I use acrylic color to paint the “ocean” surface of the platform (Actually I paint all of my models by acrylic color because of its safety and nontoxic feature). HMS Rodney sever in UK located in North Atlantic. So I search for some North Atlantic ocean pictures as my sample. As fig.11.

20160504-HMSRodney (15)

图.11(Fig.11)

最后再通过蓝渐变色、白色干扫的方法给浪花上色,整个地台在阴处静止了两天至石膏和颜色彻底干透,用白乳胶将船模彻底固定在地台上,大功告成!

A little decoration with light blue and white by dry sweeping. Drying the platform at a cool shade corner for three days, and finally glue the ship onto the platform. JOB DONE!

Enjoy following photos!


20160504-HMSRodney (4)

20160504-HMSRodney (3)

20160504-HMSRodney (5)

20160504-HMSRodney (2)

K835-82-94-Slightly out of focus-失焦:卡帕战地摄影手记

出版物封面

Cover of Publication

 

出版物名称

Name of Publication

失焦:卡帕战地摄影手记

Slightly out of focus

著者 Author [匈] 罗伯特·卡帕

Robert Capa

出版单位 Publisher 广西师范大学出版社

Guangxi Normal University Press

简介

Introduction/ Abstract

《失焦》是卡帕亲历二战的摄影手记,作品 忠实记录了他在战争中经历和感受到的一切。展卷阅读,有时会哑然失笑,而更多的时候,则会让人心情沉重。卡帕深深热爱生命,热爱和平,他厌恶战争,痛恨自 己的职业——眼看着一个个年轻的生命,生死只在一瞬间,任谁也无法承受这种巨大的反差——尤其是当这种事情就发生在自己的身边,甚至随时会发生在自己身上时。然而卡帕却以近乎“冷酷无情”的冷静忠实地记录下这一切,他的文字,他的照片,无一不充分体现出这种冷静,而隐藏在冷静北后的,是用生命才能换取的勇气。作为战地摄影的鼻祖,卡帕有着典型的冒险家的性格,他曾说“战地记者的赌注——他的生命——就在他自己手里……我是个赌徒。” 而他更著名的一句话则是:“如果你的照片拍得不够好,那是因为你离的不够近。”他的摄影作品,没有太多的技巧可言,焦点不够准确,裁切不够精当,色调不 够丰富……但所有这些“缺点”都无法掩盖其作品的伟大性。

In 1942, a dashing young man who liked nothing so much as a heated game of poker, a good bottle of scotch, and the company of a pretty girl hopped a merchant ship to England. He was Robert Capa, the brilliant and daring photojournalist, and Collier’s magazine had put him on assignment to photograph the war raging in Europe. In these pages, Capa recounts his terrifying journey through the darkest battles of World War II and shares his memories of the men and women of the Allied forces who befriended, amused, and captivated him along the way. His photographs are masterpieces — John G. Morris, Magnum Photos’ first executive editor, called Capa “the century’s greatest battlefield photographer” — and his writing is by turns riotously funny and deeply moving. From Sicily to London, Normandy to Algiers, Capa experienced some of the most trying conditions imaginable, yet his compassion and wit shine on every page of this book. Charming and profound, Slightly Out of Focus is a marvelous memoir told in words and pictures by an extraordinary man.

个人书评

Personal Book Review

从中学开始我就对摄影充满了兴趣,也拍摄了很多自认为不错的图片,一切皆源自罗伯特·卡帕的那句名言:“如果你的照片拍得不够好,那是因为你离炮火不够近”。像战士那样去战斗!

I started to enjoy using camera and through myself into photography since my high school. Thanks to the sentence from Robert Capa, “If your pictures aren’t good enough, you’re not close enough.” Fight like a fighter!

ISBN/ISSN 9787563351862
出版日期

Date of Publication

2007.7 出版地

Place of Publication

中国桂林

Guilin, Guangxi, P.R.C

中图分类号

CLC Code

K835 中图法分类名称

CLC Category

回忆录
国际十进分类号

UDC Code

82-94 国际十进分类名称

UDC Category

历史作为文学体裁. 历史写作、史学、编年史、史册、回忆录、期刊、日记、传记、自传

History as literary genre. Historical writing. Historiography. Chronicles. Annals. Memoirs. Journals. Diaries. Biography. Autobiography

 

书刊定价

Price of Publication

CNY18.00 书刊语言

Language

简体中文
购买正版

Purchase of Authorized Edition

 >相似图书-Amazon.cn<

>Similar edition-Amazon.us<