Leebber

Lyu Sen's Personal Blog Website

0%

三个月一重构

game

我还记得很早以前我第一次改已有的代码,那是一个api接口。我还记得那时候需要的是对不同的接口做api传递,要带着它的cookie。那是我刚开始写代码。所以我给所有的api都写了一个转接代码。之后回去看的时候,我才意识到,ok,一个转换函数就可以搞定所有的情况。于是我把它重写到了一个函数之中。虽然那个函数还是很大,不过比之前5-6个函数要舒服多了。
第二次重构是第二个项目业务逻辑大调整。这个倒是没什么说头,因为整个业务逻辑变化了,必须要重写。之前的demo模式不可行,于是删掉了一大半的代码,开始重新写了。其实这很好,当初写的时候有很多解法都太直接了,有很多过程可以抽象化的,重构就帮我解决了之前的问题。
第三次重构还是第二个项目,我学习了async/await写法,代替了之前的promise写法。async比promise好的一个地方就是promise链处理条件过程很复杂,会写出树型的结构。如果用async来写就能避免这个问题。多提两句,async function会将后面的返回结果也变成promise,所以处理同步过程的时候需要用function和promise而不是直接用async。而且new Promise里面有些部分的代码也是直接执行。
然后就是目前在写的项目。这个项目我一开始就设计了是比较抽象的模式。但这个项目也经历过重写,最重要的一次就是引入了multi processing。多进程加入了很多其他的控制元素,信息交换元素。
之前的一次,我重写了其中很复杂的一部分,加入了复杂的异步错误处理,异步的数据库不同步比较复杂,还加入了错误重试,系统的稳定性增加了。
最近的这次重写主要是agent worker模式的改写。修改的更加稳定。以及整体的错误处理。

每次重写都能发现很多好的模式将来可以复用,每次重写都能发现很多不好的习惯需要去掉。我觉得重写就是之前积累的一次总爆发。可惜,就是太累了。

How I Build This Blog Second Part.

This post will provide many basic concepts for entry level blog user. I believed that before you thinking about how to implement something, you have to understand what you are building and why you needs to do that. Back to the days when I know nothing about web or blog, many tutorials I was followed will simple tell you to do step one, step two, but I dont know anything about what this step for. So this time, I will be first talk about these basics, and try to make them unrelated with the languages. If you already have good understanding of networking, you should skip this post.

Website

My way to understand the website is that the website is the resources on the server. When user using the browser, they open the resources which come from the remote server, like images, texts. Then the browser will download the resources and do some manage and they will show you the web page. Image you are using MS Word, you open that, then you choose a file to open. The browser is just like MS Word, the address you put in browser is the address your file you opened. Only difference is that you opened a remote file and you cannot edit but read-only.

Server

Server is just a remote computer. You are not using your usb-mouse or usb-keyboard to interact with them, instead you are using internet signals. In server, you need to put on your web pages and open them to everyone, so people could get this by internet. Start from here, your website is open to visit.
Every server in internet will have a ipv4 string, mostly. And if you rent server from others, they will provide that. You can think of that is the unique name of your server, using which everyone will find this particular server, and using which you could login this server. When you buy/rent a server, I strongly recommend you to read this to do basic settings.
Some server providers are AWS from amazon, azure from MS. And Linode, Vultr. For me, I use digital ocean. I would recommend you AWS, because it is the most used provider. And digital ocean is good to entry levels, they have many posts and instructions for documents. Here I will provide my refer code for digital ocean.

Domain && DNS

Your server’s ipv4 is just like a phone number, apparently no one could remember all the phone numbers, so no one will remember your ipv4, everyone will remember something like google.com / facebook.com. So the domain is used to replace that.

  • The biggest domain provider is goddady. and I am using google domain now, they both are good domain providers.
  • There are some domain provided free, like Freenom have some domains are free to use, they are good for you to play around.
    After this you will need to link your domain with you server, this could be done with DNS configuration. In some cases, domain provider may not provide DNS for you, you may need to find yourself a free DNS provider. It is not difficult, you just need to set something called A record. Most DNS provider will have documents to tell you how to do that. A record is just like put your number into the phone book.

SSL certificate

Most website nowadays will provide something called certificate, that is ssl certificate, it is used to encrypt you webpage. Image online shopping, when you request your website from your server, is just like shopping online, the delivery guy is delivery your resources to you. If you dont have a ssl certificate, it just like no box of the package, so the delivery guy will know what it is right away.
There is a very easy way to get ssl and totally free, that is let’s encrypt. They have a very easy way for you to do it, I strongly recommend you include that in your website.

Non-server implement

Some instruction you might read tells you that you dont need a remote server nor a domain. So why is that? Actually, these two things is provided by others. Let’s take a look at this very good example github page.
Every github page will provide you a domain like xxx.github.io. This domain is actually a sub-domain for github.io( all domain comes from back to front, normally you see them in the format of xxx.xxx, here you see aaa.bbb.ccc, you will know that is sub-domain for bbb.ccc). However, the subdomain actually does the same thing as normal domain, they all replace the complex ipv4.
In the similar way github also provide the server, because you actually post your page data to repo in github, so the git is just like a server, it contains the resources, it could be managed by git, it could also managed by web.
So no server implement is also have server and domain.

Frontend & Backend

Here we use a not strict definition here. As we talked before, open a website is: find the server, request the resources, get the resource and show them to users. In this process, backend is referring to when people find the server, backend will be that one to response to provide resources from server to people. And frontend is actually the resources, when the browser gets the resources, frontend code tells the browser how to manage the resources and show the web page to the user.

Image Hosting Service

You put your resources in server, but that does not mean you have to get all your recourses from one server. FOr example for the pictures, you can post them on your server, but also you could use a image hosting service. So the images won’t takes all your storage.

Google Analytics & Other third party

Google Analytics are very easy to use tool for the website owner to do virtual analyses to learn about the usage of their website. Those service, including salesforce, are main source for data used for marketing campaign. They will gather data from people who visiting the website, normally they will get location info, time info and click info from the user. Web analytics are very big area, I like to recommend you to install it and try, it is totally free.
And about installment of these kind of third party service is really easy. First you need to register in their website, and get a id to represent the data you will get from the page. Then you will ingest a code, which they will provided to you and the id together into your webpage, that’s all. Then you just need to go back to their website to see the results and beautify charts.

RSS

RSS is a kind old stuff, but I still think it is cool. You could get a abstract from every posts in web in certain rule and put them all into one file. That file will increase when you write new posts. So other people by listen to the changes of this file to know that you provided new posts. They could use RSS reader to read the abstract of your posts and even open your post to read more. Creating RSS file is also very easy, you just need to make that file to public.



我如何搭建这个blog系列 第二篇

这篇文章将面对新手,提供很多常识性概念。我一直认为必须要先明白你在做什么,为什么需要做这个,最后才是如何实现这个。当我还是一无所知的菜鸟的时候,很多blog上来就是第一步第二步就开始了,而我当时都不明白第一步第二步是什么。所以我这篇文章要先来写清楚这些问题。接下来我会以最简单的方式,来讨论很多常见的概念,争取做到与具体的实现技术无关,让读者明白到底blog是怎么来的。对于已有网络基础知识的人可以跳过。

网站基本

最简单的网站理解,网站是一个服务器上的资源。用户使用浏览器,打开了远程服务器上的资源,包括图片文字信息等。然后浏览器做一定的整合这些信息生成看到的网页。想象你打开一个MS Word,然后选择文件,打开你的一篇具体的文章。浏览器就像是MS Word,你输入的地址就是你想要打开的文件位置,有一点区别的就是,回车之后你就打开了服务器上的文件,而且你不能修改他网站上的文件,你只能看。

服务器

服务器就是一台远程的计算机。对它的访问不是通过链接usb的鼠标和键盘,而是通过网络信号。在这个服务器上面,你需要放上你的网页,并且将它们向所有人公开。这样所有人将可以通过网络访问这些内容(但他们不可以修改)。由此你的网站就可以被访问了。
每一台在网络中的服务器,大部分都会有一个叫做ipv4地址的字符串,如果你租用别人的服务器,他们会给你这个地址,你可以将这个字符串理解为你的服务器全球唯一的名字。利用这个名字大家都可以找到这台服务器。而你利用这串数字就可以登录你的服务器。
当你购买了服务器之后,我强烈建议你阅读这篇文章来做最基础的设置。
一般的服务器提供商有amazon的aws,MS的azure,还有一些你在翻墙指南中会听到的名字,比如Linode,Vultr,板瓦工。而我自己经常使用的是digital ocean。我觉得aws是最大的最普遍的提供商,我比较推荐。还有就是digital ocean,对新手很友好,教程很多。我这里也贴一下我的digital ocean的refer
我不建议购买国内的提供商,因为还要备案管理。国内比较有名的就是阿里云,腾讯云。

域名 & DNS

你的服务器ipv4就像是一串电话号码,很显然没几个人记得每个好友的电话号码,所以属于你的服务器的无逻辑的一串数字是不可能让人记得的,大家记得住都是baidu.com,qq.com,这样的网址。域名就是用来替代的,所以你需要买一个域名来代替。

  • 最大的域名提供商是godaddy,我目前在使用的是google domain。
  • 国内的域名也一样不推荐因为备案原因。不过如果你想买.cn的就得考虑国内的域名提供商,比如阿里云。
  • 当然有一些域名是免费的。比如Freenom旗下的有一些域名是免费的,免费域名挺适合新手作为练手使用。
    有了域名接下来的任务就是将域名与你的服务器绑定。这个是通过修改DNS配置来操作的。有些情况下,域名提供商可能不提供具体DNS服务,你可能需要自己寻找免费的DNS解析提供商。不要着急,这里并不复杂。具体是添加一种叫做A记录的东西。一般提供商都会提供介绍如何操作,操作这里就不展开了。你可以理解整个DNS解析就是让整个世界知道你的域名是连接着你定义好的服务器的,不然他们还会以为你的域名跟没被购买一样,没有连接到任何的电话号码。

SSL证书

现在的网站你可以看到多半有一个叫做证书的东西,那个就是ssl证书,它是用来加密网页信息的。想象一下,你向服务器请求的时候就像是在网上下单购物,快递员将你需要的网页,如同送快递一样送达你手里。如果没有ssl证书,就像没有包装盒,快递员一眼就看到你买的东西,虽然他每天运送几万个包裹,可能并不会感兴趣你的内容是什么,但你肯定不想他知道对吧。
ssl证书有一个很简单的获得方式,是完全free的,叫做letsencrypt,有配套的教程非常方便,强烈推荐。

所谓无服务器搭建

我们可以看到一些教程说的不需要服务器的搭建,很多教程也说不需要域名。那到底是怎么一回事呢?其实他们是都提供了。举个最简单的例子,github page。
github会提供给你一个类似xx.github.io的域名。这个域名其实是github.io的一个次级域名(域名都是从后向前的,一般只有两级xxx.xxx的形式,所以当你看到是aaa.bbb.ccc形式的域名,你就知道了其实是bbb.ccc的域名的次级域名)。但次级域名功能性上来说和一般域名是一致的,因为都是替代了“电话号码”——复杂的ipv4。
同样的github其实也提供了服务器,因为你将会将你生成的页面数据提交到github的repo之中,而git其实就是一个服务器一样,存放着资源,只不过是以git的规则存放。所以一样可以用来作为网页内容来存放。
所以无服务器搭建不是真的没有服务器没有域名,只是你在利用他们的改进来省力。

前端 & 后端

这里只讲一个不严谨的讲法。我们之前说了,浏览网站的行为就是,找到服务器,询问服务器的资源,获得服务器的资源,将资源展示给用户看。所以后端在其中的任务就是当有人找到了服务器,后端负责把资源交给那个人。而前端就是这些资源,当浏览器收到了这些资源,浏览器根据这些资源,生成用户看到的一切,所以前端指引着浏览器,生成最终用户看到的一切。

资源 & 图床

服务器上存放着资源,但这不代表你的网页中的资源必须从一个服务器上读取。比如说图片,你当然可以放在你的服务器上,同样的你也可以将图片放到其他的地方去存放(一般来说网页中最大的资源就是图片),有一种俗语叫“图床”就是形容这种图片存放服务。如果你的网站上的资源太多,而显得臃肿,你可以考虑使用图床。

Google Analytics & 其他第三方服务

Google Analytics是一种很方便的数据统计可视化软件来帮助网页管理者查看网页的使用情况。这种服务还有saleforce等目前是市场运动很主要的工具和数据来源。他们通过收集访问网页的人的信息(位置信息,时间,点击内容等等)来分析网站。比如如何调整用户界面等等。web analytic是一个很大很新的一个市场,这里就不过多展开了,只是建议大家可以装一下体验一下。
像这类的第三方服务安装有一种共同的方式。首先用户在对方平台注册,获得一个代表将来从我方网站上获取数据的标识。然后将网站上提供你给你的代码和这串标识合起来,插入到前端页面之中。这样就完成了,简单吗?之后就只需要在对方网站查看数据的结果就行了。

RSS

RSS是一种比较老的东西,但我认为是非常有意思的技术,这里提一下。每个blog,将它的文章的摘要以一种固定方式生成一个文件。所以这个文件会随着你的文章数量越来越多而增长。而其他人通过有间隔的监听这个文件的变化而得知你的文章更新。其他人将会用rss阅读器了解文章的摘要,并且可以打开文章继续阅读。生成很容易,使用也只需要暴露这个文件即可。

How I Build This Blog First Part.

Requirements:

After nearly 2 years at this field, now I know how to speak before anything to be done. Yes, you need to ask the million dollar question: could you clarify your requirements?
Before I build this Blog, I asked myself what is the requirements for this blog? Here are some of mine requirements:

  1. First of all, easy to build, easy to maintain. The reason I built this blog is to write stuff, not fixing the blog all the time. I don’t want to waste all my time on blog system, I want to focus on the writing, Ok, I didn’t write much
  2. It should be easy to write, so I will be willing to write the blogs. If the blog is hard to use, than I may hardly use the blog.
  3. It has to support my personal domain: senlyu.com . Yes, this domain is so damn cool, why not using it?
  4. It need to be flexible, right now it is a blog, but one day if I find something interesting, I dont want to open another system to support that feature. The potential features I am referring to here is the API system.

Choices:

Ok, let have a look for some choices:

WordPress

It has been a while for me to look back to wordpress. The first blog I build is using wordpress. I think I followed the digital ocean instruction, step by step, and build a stable wordpress, even though I dont know much about apache and front end style. Still I get a nice webpage and using that to get this job.
WordPress is good at writing blog, even you know nothing about blog system, you can write in docs, you can write WordPress. But the building process is a pain in the ass, I don’t want to maintain a apache system for this. And it it not flexible for me. Although, I could choose online version from wordpress.com. But if I want to use my own domain, they gonna charge me for that. SO, bye bye WordPress.

Ghost

My first project from my job is to build a system, which is using ghost. So ghost is a old friend to me.
Ghost one of the biggest blog project is JS community. Easy to write like WordPress, very easy to post a post. And I am very familiar with the system.
The problem I am facing is that the installment. At first I tried digitalocean auto install, this install process will provide you installment including database, ssl cert and all other necessaries. However, the validation of ssl cert always blocked me to install. Because when I link the machine with the domain, it will take some time for dns to setup the link, but the install process will be right away to install everything. So I go and check the documents they have, I found it is outdated. So I think this is a dead end. If the installment is ready this hard, no way it will be a easy maintain.
By the way, there is a way I could do using ghost, just like I did in my first project, is to use something like this. This is very cool, although the biggest problem is that this could only run in demo/development mode. it is not a production solution. Still this is enough for most of the blog use case. But I wish I could do it better. So see you Ghost.

hexo + express

So I came to the last choice, md2html blog system + backend support. I use express all the time in work, I am already very familiar with it, ( by saying familiar I mean I worked on more than 1 year on 3 projects all using express, and read all the documents on web, especially on deployment recommendation, and even a little bit source code). So why not express?
And hexo, is a md2html blog system. It is not easy to write like above two options, but still good for me.

So

My final choice will be hexo + express. That will be the most easy way for me to start this project.



我如何搭建这个blog系列 第一篇

需求

工作了两年之后,我终于知道在开始做任何事之前必须要说出口的事情。永远不要忘了问:是否能再跟我明确一下需求?
在我开始搭建工作之前,我就问了自己这个问题,如今我有这几个需求:

  1. 首先,容易安装和维护。为什么这个放第一,就是因为我懒,我不想经常更新blog配置,或是担心部署的问题,我想多写blog其实也没有写很多文章,关注点应该在文章上面,而不是blog的技术上面。
  2. 第二,一定要写文章简单。很简单,写文章简单的话就会让我更容易去写文章。如果写起来很复杂只会让人不想用。
  3. 第三,一定要支持我的个人域名,我这么吊的域名买了不是白买的,我一定要上个人域名。
  4. 第四,要灵活。不一定什么时候我可能要用这个blog的服务器做点啥事,这个服务器不能是死的,要比较容易来拓展,而这个对我而言就是用node js做base,这个语言我最熟(呼应第一点)。

选择:

我目前的一些选择

WordPress

wordpress是很久之前用的了。我的第一个blog就是用的wordpress,我当时应该是按照digitalocean上面的教程一步一步的安装了完整的wordpress,虽然我根本不懂大多数步骤到底是干嘛的,包括apache和前端。但我仍然搞出一个漂亮的页面让我得到了我如今的工作。
WordPress用来写blog真的方便,就算你不懂blog,只要你能写word文档,你就能谢blog。只是这个安装过程很麻烦,而且我也不想管理一个apache。我也不懂apache。
当然,也可以偷懒选择wordpress.com官网上的版本。不过如果我要用自己的domain就要收费。所以再见了您WordPress。

Ghost

我工作的第一个项目就是一个含有ghost系统的项目。所以我非常熟ghost。
Ghost是js上面最大的做的最好的blog项目了。写起来跟wordpress一样方便。
但是我真正遇到的问题就是安装,我试了用digitalocean的自动安装过程,它会自动帮你装好数据库,ssl等所有用到的工具。但是验证ssl的过程老是卡住,因为连接云主机和domain的dns设置不是马上起效的。然而我翻阅了他们的文档,我发现极度过时。这可是大忌,装的时候都是问题,维护怎么办?果断跑路。
额外介绍一种我们工作中用的ghost的方式。是类似如下的ghost as middleware. 但这个是demo/develop版本的ghost,ghost的production版本比较复杂也不适合这个模式。如果使用production版本的ghost,就很难和express相结合。no no

hexo + express

最后我们就来到了这个选项。我对express真的非常熟,我之前工作都在用express,我读过文档和源码。所以还是使用express吧。
至于hexo,我还是使用了md->html的hexo,虽然写起来没有前面两个方便,不过md我也需要去熟练。

最后

所以最后我的最终选择就是hexo+express, 对我而言就是最简单的方法



游戏设备简析

game

无聊再来写一篇关于游戏设备的分析。目前是2020年,我一直想写一篇文章讨论游戏设备。近年来我买了PC,也收到了各种游戏机。目前我有:

  1. PC: 1070显卡,目前能运行大多数游戏
  2. Switch:宠物小精灵,塞尔达,暗黑3,Dauntless(一款类似怪物猎人的游戏)
  3. PS4:西部大镖客,最终幻想重制版,Dauntless
  4. Google stadia:西部大镖客,刺客信条奥德赛(内测时期玩的)。
    虽然我的设备不是都是最新的,但是基本上在非PC上我是简单游玩,体验为主。体验下来几个点:

对于switch

我不看好switch。虽然几个设备中,我唯一能算打完的两个游戏其中就有宠物小精灵。而塞尔达也是switch的巅峰之作。但我觉得switch可能更适合和小伙伴联机玩游戏的感觉。小设备的劣势很明显,就是画质运算不足。而且由于平台受限,其实switch的游戏种类是受限的。不得不承认小精灵和塞尔达是有很多重复的玩点的。道馆类似神殿,坐骑类似马,操作系统类似宠物小精灵的特技。但小设备的优势也是有的,方便,而且吸引女性用户。

对于PS4

PS4我真的不知道该怎么说这个设备。论游戏我也玩完了FF7和3-4章西部大镖客(我玩这类游戏做任务真的不是我第一要素,想当年我在天际省横跑了一个地图欣赏美景)。但是花费了大量时间也不知道该怎么说明。可能如果我先接触游戏机,我会更爱这种设备吧。但我先接触的是PC游戏。
对比PC游戏,我觉得手柄操作应该是这类设备的关键,但鼠标来做精度瞄准还是比手柄来的顺手多了。这就让人很难受。现在的第一人称游戏很少没有战斗,而无论是射击战斗还是无双游戏,选择人物永远是一个逃不开的点。鼠标的移动在技巧上是很超越手柄的。注定了游戏机产业跟PC总是会有差距的。
对于PS4我能说的也就是关于它和PC之间的差距了。因为我还是看好它在其他设备当中的地位。

对于google stadia

其实这部分才是重点,对于云游戏的概念,大家都有所耳闻。很多人可能觉得还是一个很初级的阶段。的确,云游戏还在一个很初级的阶段,我们还需要找这个的突破点。但云游戏肯定是最有潜力的一只。
我是不会推荐目前就入坑的,就算是stadia这样的大项目。从当初内测的时候我就抢到了内侧资格。测试了奥德赛,其实我是很惊奇的,基本上1080p的效果很好,作为一个操作游戏没有什么卡顿。我还特意跑到各种复杂地形去检查效果,感觉就不错,很连贯,没有卡顿的感觉。后来又尝试西部大镖客,但这次就翻车了。因为我在ps4上玩过大镖客,而且是4k的效果。所以在1080p的效果下玩游戏就觉得十分难受,而且在加速骑马的时候明显感受到周围景物的细节开始丢失。
看来网速永远是一个困难点。而美国目前的基础设施的提高我觉得还十分有限,很难说因为云游戏而带来大的变革。所以我觉得再等一阵子这个才能起来。
但这个项目的优势其实就是便宜,利用会员的模式,能够access多种游戏而不需要额外购买,而只需要一个手柄就可以在任何有chrome的设备上玩游戏,我觉得想法很好。但是同时也要注意到在云游戏的基础设备发展的同时,其他硬件肯定也在发展和降价。这种优势会不会还在,我觉得是很难说的。

VR

当初的android纸盒VR我就收到过。效果其实很好,虽然很简陋,但是VR已经能呈现的很好(但是手机真的很烫,玩一会就没电了)。后来我试用了oculus,我觉得效果更好了。但不得不说,我觉得VR的持久性永远是一个问题。当你要把一个设备绑在人头上的时候,重量肯定是一个很重要的点,而在电池技术有限的情况下,要做到较长的使用时间,就是一件很难的事情。而VR需要的显示效果本身就对分辨率有要求,功率自然是不会容易降低的。这必然会成为一个重点。
而且VR真的可以做到好的party game吗?我觉得它的潜力还不如switch。毕竟游戏者能看到他人对自己的的反应(嘲笑)也是Party中的一种乐趣



关于咒术回战(近战法师)动漫&漫画 观后感

显然写技术post是不可能的,只有写写这种鬼东西才能维持的了生活了

昨天一口气看完了8级动漫和130级动画。很久没有一次性看这么多的漫画和动漫了。这部作品给我的吸引力是奇特的,让我有了思绪对最近看过的很多动漫作品做一个总结。
我对日本动漫的理解是从大学开始的,入门是大学时代看完EVA的。之后无论看什么都有EVA的影子,EVA中,主角的性格是常见的废柴,战斗的风格是常见的比拼战斗意志的坚定,配角的个性是常见的(还是经典的),主角的提升是常见的对青少年迷茫的反思(试图思考童年对青少年时期的影响,仿佛青年后的各类漩涡事态对于一个少年来说,所有的影响就仅仅是陷于和幼年带来的的执念相互挣扎)。后面看的多数内容都逃不开这些,有的也只是题材的变化,魔法,异世界,后宫,运动。而且更多比不过EVA的刻画更加深刻。
之后就是cowboy bebop, aka星际牛仔,长大了的人做出来的漫画,一个理想者眼中的艺术化的现实,带着它独有的音乐,如痴如醉。看CB就让人感受到这个世界的真实。举个关于真实的小例子:一般漫画讲到过去,总是长篇累牍。但是CB中faye的过去就没有这么多东西,只看到过去的一卷胶带,没有连贯的情节,只有简短和琐碎的日常。但是我仿佛就看到自己的童年,如此鲜明,如此美好又无法触碰,真实的就像幻觉。这种艺术式的手法,将我们之前说的核心的讨论,从童年和青年迷思的反思,提高到真实的成年人水平,即如何爱上无聊的人生。
既然核心到头了,那么剩下就是剧情画工了。人物我是不谈的,原谅看过红楼梦的我对所有的人物描写说一句在座的都是垃圾。靠着标签化来简易人物的处理永远是一种不真实。人物是复杂的,不同事件之间的冲突就像是不同角度去拍照,但是核心应该是流动的是变化的,所有企图以一以贯之的逻辑去描绘人物都是下品,因为这种情况下,就算是一个角度拍出来也会是不一样的。
最后就是猎人了,猎人简直就是“术”的典范。能力的多样化,展现了对战斗核心的创意。不过也因为这样的创意交杂,带来了太多的可能性,没有办法收敛,这部作品也太过发散。
当然还有很多作品有自己的特色,我也很喜欢。但都不值得放出来一说。
所以来到了正题,近战法师。不好意思,这部作品给我的第一个感觉就是像。像东京食尸鬼。人物的画风造型在动画中非常不统一,很像东京食尸鬼的风格,差异比较大。Ending的部分我回到了当初看东京食尸鬼opening的感觉,很干净,pose能力很强,你看寥寥几笔,勾出的效果这么好(色块配合的也很好)。之后又是像,像自新世界,五条老师活脱脱的一个镝木肆星的设定,很久没有看到这么爽快的装逼了,打架打到一半带一个学生来体验,真正的无敌。当然设定的类似有很多都可以很像,但是情节上的像又是另一回事。当学校比试战中途被入侵,又觉得像,像中忍考试,火影一大经典篇章。而每个人独特的能力和相互合作和克制,又让人想起了猎人的各种念。
像像像,我们谈了这么多像。对这部作品让我想到的就是像(所以之前也扯了这么多我自己的回忆),真的是一个很好展开的话题啊。但是这个作品本身的判断就没有这么好判断了:一流的画工,然而各种像像像,但是每个像的部分却又是取了别人最好的部分,而且也很贴合作品本身。一通分析下来,这就是一部集大成者作品。集大成作品必是精品,但是同时也因为没有自己最独特的点,而沦为匠气太重的尴尬境地。但我觉得对待作品不能像真的考量艺术品一样,(虽然这个post的tag是art)我们很难要求商业化的东西有很多独到的灵气,而且同为天才,相比于匠师型天才,创造型的天才也是其中的佼佼者,而我这种普通人也很难去要求别人一定要做到最顶级。

Purpose of creating this blog

The most detailed requirement always comes after the development finished, just like that, because I am not yet finished the blog, I cannot summary all the reasons that push me to create a personal blog.

Still there are some fragment remaining in the deep of my head seems explain my purpose. Those fragments are like those old witches singing in the background of a haunted castle, words like:

  • You have a domain but no f**king page? Why?
  • You call yourself a full-stack but cant you do a little blog?
  • You always want to have a place to write down what you learnt from reading the boring books dont you?
  • Dont you always want to write some thing not show in the socail media but still can saved in some place and check it out later?


创建blog的目的

所有明确额需求只有等到开发完成之后才会出现,正因为如此,我还没有完成这个blog,所以我一时半会也无法解释我需要这个blog的原因。

但我脑中仍有碎片试图解释这一切。这些碎片就像是闹鬼的城堡中的低声吟唱的女巫,歌词像是:

  • 你有一个domain,但是不搞一个主页吗?
  • 你自认一个full stack但是blog都没有吗?
  • 你不是一直想有个地写写你从无聊的书里读来的东西马?
  • 你不是一直想要有一个不是社交媒体,但是也能存一些问题的地吗?
  • 。。。