otakustay.com otakustay.com

otakustay.com

宅居

做技术最好的宅,或者最宅的技术

http://www.otakustay.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR OTAKUSTAY.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.9 out of 5 with 8 reviews
5 star
2
4 star
3
3 star
3
2 star
0
1 star
0

Hey there! Start your review of otakustay.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.4 seconds

FAVICON PREVIEW

  • otakustay.com

    16x16

  • otakustay.com

    32x32

  • otakustay.com

    64x64

CONTACTS AT OTAKUSTAY.COM

Lili Zhang

Lili Zhang

3rd floor, B●●●●●●●●●●●●bo Road #690

Sha●●●hai , Pudong, 201620

CN

86.5●●●●0431
ot●●●●●●●@gmail.com

View this contact

Lili Zhang

Lili Zhang

3rd floor, B●●●●●●●●●●●●bo Road #690

Sha●●●hai , Pudong, 201620

CN

86.5●●●●0431
ot●●●●●●●@gmail.com

View this contact

Lili Zhang

Lili Zhang

3rd floor, B●●●●●●●●●●●●bo Road #690

Sha●●●hai , Pudong, 201620

CN

86.5●●●●0431
ot●●●●●●●@gmail.com

View this contact

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

DOMAIN REGISTRATION INFORMATION

REGISTERED
2010 October 22
UPDATED
2013 September 30
EXPIRATION
EXPIRED REGISTER THIS DOMAIN

BUY YOUR DOMAIN

Network Solutions®

DOMAIN AGE

  • 13

    YEARS

  • 7

    MONTHS

  • 15

    DAYS

NAME SERVERS

1
ns1cnb.domain-resolution.net
2
ns2glx.domain-resolution.net
3
ns3cna.domain-resolution.net
4
ns4kpx.domain-resolution.net

REGISTRAR

NAME.COM, INC.

NAME.COM, INC.

WHOIS : whois.name.com

REFERRED : http://www.name.com

CONTENT

SCORE

6.2

PAGE TITLE
宅居 | otakustay.com Reviews
<META>
DESCRIPTION
做技术最好的宅,或者最宅的技术
<META>
KEYWORDS
1 做技术最好的宅,或者最宅的技术
2 redux
3 发布redux optimistic thunk
4 otakustay
5 ecmascript6
6 强迫症的模块化
7 本文也试图从几个方面简单地说一下模块化,并分析一些在模块化实施中产生的误区
8 在模块化的思想里,一个模块应该是 需要一系列的依赖
9 涉及一个内部的实现
10 javascript
CONTENT
Page content here
KEYWORDS ON
PAGE
做技术最好的宅,或者最宅的技术,redux,发布redux optimistic thunk,otakustay,ecmascript6,强迫症的模块化,本文也试图从几个方面简单地说一下模块化,并分析一些在模块化实施中产生的误区,在模块化的思想里,一个模块应该是 需要一系列的依赖,涉及一个内部的实现,javascript,使用高阶函数实现类的扩展设计,在不少框架中,都会对 扩展 这一概念有需求,一个非常简单的案例即日志的记录,那么使用一个扩展,在合适的点进行日志的收集和存储是很合适的设计,首先,何为大型
SERVER
nginx/1.10.3 (Ubuntu)
POWERED BY
Express
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

宅居 | otakustay.com Reviews

https://otakustay.com

做技术最好的宅,或者最宅的技术

INTERNAL PAGES

otakustay.com otakustay.com
1

博客单页化实践

http://otakustay.com/opoa-blog

做技术最好的宅,或者最宅的技术 - by otakustay. 半年前,因为VPS未续费导致所有数据丢失,直至今日终于重新恢复了所有的文章数据 虽然丢失了全部的评论 ,并且借此机会对所有文章进行了一次重新审视,修改了部分问题,并将所有示例迁移到 jsfiddle. 新的博客完全独立建设,不使用任何第三方的CMS系统,后端使用ASP.NET MVC实现,数据库使用MySQL,通过Mono部署于Ubuntu Server之上,前端使用nginx作为静态服务器。 OPOA,全称 One Page One Application. 多个页面拥有相同的结构时,一些相同的内容 如侧边栏、LOGO等 不需要重复加载,节省流量 及一定的数据库查询。 Header hgroup h1 标题 /h1 h2 副标题 /h2 /hgroup /header div id="page" div id="main" @RenderBody() /div aside id="sidebar" section id="search"! 搜索框 - /section section id="links"! Main').hide...

2

使用ES6进行开发的思考

http://otakustay.com/es6-develop-overview

做技术最好的宅,或者最宅的技术 - by otakustay. 推荐使用 有考虑地使用 慎重地使用 不使用. Map set weakmap weakset. Math number string array object APIs. Binary and octal literals. Good let foo = (x) = x 1; / Bad let foo = x = x 1;. Good let foo = () = { / code }; / Bad function foo() { / code } / Bad let foo = function () { / code }. Good let foo = { bar() { / code } }; / Bad let foo = { bar: () = { / code } }; / Bad let foo = { bar: function () { / code } };. Let foo = { bar() { / code } };. Let html = ` div p Hello World /p /div `.

3

聊一聊复用

http://otakustay.com/talking-reuse

做技术最好的宅,或者最宅的技术 - by otakustay. 复用是每一个工程师的追求,无论是设计还是编码我们最常说的除了 产品是SB 、 进度赶不上 外,恐怕就是 要好好复用 了吧。 更直白地说,要少 写 代码,最好的手段是复制 粘贴大法,而不是费尽心思去调整代结构、做逻辑拆分、应用各种模式。 设计中充分使用了复用的思想,将 每5秒一次拉取 的代码进行了复用,通过注册URL等信息,由不同模块完成数据的自理和渲染,形成一个中心 可扩展的处理器的典型结构,可谓中规中矩。 是设计的结构不合理吗 不尽然,如果新的需求是 又增加一种消息的提示 ,那么原本的结构是非常合理可用的。 事实上, 系统公告 和 用户消息 原本就是两类东西,后者的实时性是刚需,而前者更重于 通知到达 这一事实,并不在乎其实时性。 你可以请求获取文章的原内容 原内容为经改良的Markdown Extra格式 ,如有需求请根据右边的链接发送邮件并声明需要的文章标题等信息。

4

ES Decorators简介

http://otakustay.com/introduction-to-es-decorator

做技术最好的宅,或者最宅的技术 - by otakustay. Decorators make it possible to annotate and modify classes and properties at design time. Function memoize(target, key, descriptor) { let cache = new Map(); let oldMethod = descriptor.value; descriptor.value = function (.args) { let hash = args[0]; if (cache.has(hash) { return cache.get(hash); } let value = oldMethod.apply(this, args); cache.set(hash, value); return value; }; } class Foo { @memoize; getFooById(id) { / . } }. 放在属性上的 属性装饰器 ,这需要配合另一个Stage 0的 类属性语法. Function r...

5

PC端大型单页式商业内容管理系统的JS模块化构建探索

http://otakustay.com/large-opoa-js-build

做技术最好的宅,或者最宅的技术 - by otakustay. 段的用时 = 段内加载总大小 / 并发数. Gzip -c {file} wc -c. 通过分层设计,将系统自下而上,自基础至业务分为多层,越接近下层 基础 的代码变动理应越少,而越接近上层 业务 的代码则理应有更频繁的变动。 你可以请求获取文章的原内容 原内容为经改良的Markdown Extra格式 ,如有需求请根据右边的链接发送邮件并声明需要的文章标题等信息。

UPGRADE TO PREMIUM TO VIEW 1 MORE

TOTAL PAGES IN THIS WEBSITE

6

LINKS TO THIS WEBSITE

ecomfe.github.io ecomfe.github.io

EFE Tech

http://ecomfe.github.io/tags/JavaScript

百度EFE Excellent FrontEnd 技术体系,前身是ECOM前端团队,后经过技术的发展,逐渐形成一套完善的前端技术体系。 Map set weakmap weakset. Math number string array object APIs. Binary and octal literals. 原文 http:/ sourcemaking.com/refactoring/replace-nested-conditional-with-guard-clauses. 在 Javascript 中实现调用父类同名方法的语法糖(this. super(). 在很多 OO 的语言中,都提供了某种便捷的语法糖去调用基类中被子类覆盖的方法,比如在 Java 中. System.out.println( "A". System.out.println( "B". Super(B, self).method(). 2014 Baidu EFE Powered By Hexo.

nodebeginner.org nodebeginner.org

Node入門 » 一本全面的Node.js教學課程

http://www.nodebeginner.org/index-zh-tw.html

Lee este tutorial en Español. 이 튜토리얼을 한글로 보세요. Read this tutorial in english. Читать этот учебник на русском. Đọc bằng tiếng Việt. 本書致力於教會你如何用Node.js來開發應用,過程中會傳授你所有所需的 進階 JavaScript知識。 本書絕不是一本 Hello World 的教學課程。 本書中的程式碼範例都在Node.js 0.6.11版本中測試過,可以正確工作。 本書最適合與我有相似技術背景的讀者 至少對一門諸如Ruby、Python、PHP或者Java這樣物件導向程式語言有一定的經驗 對JavaScript處於初學階段,並且完全是一個Node.js的新手。 緊接著,會帶領大家完成一個最傳統的 Hello World 應用,這也是最基礎的Node.js應用。 如果你和我一樣,那麼你很早就開始利用HTML進行 開發 ,正因如此,你接觸到了這個叫JavaScript有趣的東西,而對於JavaScript,你只會基本的操作 為web頁面增加互動。 寫PHP應用的時候,我們一...

nodebeginner.org nodebeginner.org

Node入门 » 一本全面的Node.js教程

http://www.nodebeginner.org/index-zh-cn.html

Lee este tutorial en Español. 이 튜토리얼을 한글로 보세요. Read this tutorial in english. Читать этот учебник на русском. Đọc bằng tiếng Việt. 本书致力于教会你如何用Node.js来开发应用,过程中会传授你所有所需的 高级 JavaScript知识。 本书绝不是一本 Hello World 的教程。 本书中的代码案例都在Node.js 0.6.11版本中测试过,可以正确工作。 本书最适合与我有相似技术背景的读者 至少对一门诸如Ruby、Python、PHP或者Java这样面向对象的语言有一定的经验 对JavaScript处于初学阶段,并且完全是一个Node.js的新手。 紧接着,会带领大家完成一个最传统的 Hello World 应用,这也是最基础的Node.js应用。 如果你和我一样,那么你很早就开始利用HTML进行 开发 ,正因如此,你接触到了这个叫JavaScript有趣的东西,而对于JavaScript,你只会基本的操作 为web页面添加交互。 写PHP应用的时候,我们一点也不为...

ecomfe.github.io ecomfe.github.io

EFE Tech

http://ecomfe.github.io/tags/模块化

百度EFE Excellent FrontEnd 技术体系,前身是ECOM前端团队,后经过技术的发展,逐渐形成一套完善的前端技术体系。 ESL 发布 2.0. 今天,ESL release 了 2.0.4。 RequireJS 经过语法压缩和 GZip 后,体积超过了 6k。 RequireJS 最新版本已经降到了 6.1k,在 2012 年底时候的版本是接近 7k。 当时我们拍了脑袋,一个 Loader,各种流转与依赖处理,两种 require,URL 查询,再加上异步的插件机制,就算看起来比较复杂,GZip 后 3k 应该没问题。 至于体积,我们也没控制住,在每个我们觉得无法或缺的 feature 中,它的体积最终是 3.4k。 如果你觉得所有的错误信息你都不需要,那么可以选择 min 版本,体积是 3.1k,超过最初的梦想并不太多。 的全称是 Asynchronous Module Definition。 的成功例子了,大多数主流的 Libraries 和 Frameworks 对. 2014 Baidu EFE Powered By Hexo.

yiika.com yiika.com

Node入门 » 一本全面的Node.js教程

http://www.yiika.com/nodejs1

本书致力于教会你如何用Node.js来开发应用,过程中会传授你所有所需的 高级 JavaScript知识。 本书绝不是一本 Hello World 的教程。 本书中的代码案例都在Node.js 0.6.11版本中测试过,可以正确工作。 本书最适合与我有相似技术背景的读者 至少对一门诸如Ruby、Python、PHP或者Java这样面向对象的语言有一定的经验 对JavaScript处于初学阶段,并且完全是一个Node.js的新手。 紧接着,会带领大家完成一个最传统的 Hello World 应用,这也是最基础的Node.js应用。 如果你和我一样,那么你很早就开始利用HTML进行 开发 ,正因如此,你接触到了这个叫JavaScript有趣的东西,而对于JavaScript,你只会基本的操作 为web页面添加交互。 而你真正想要的是 干货 ,你想要知道如何构建复杂的web站点 于是,你学习了一种诸如PHP、Ruby、Java这样的编程语言,并开始书写 后端 代码。 但是别急,写Node.js应用是一件事情 理解为什么它们要以它们书写的这种方式来书写则意味着 你要懂JavaScript。 当我们向服务器发出请...

ux.reakyzhou.com ux.reakyzhou.com

UX导航 用户体验网址导航 汇集体验设计最全资源

http://www.ux.reakyzhou.com/fr.htm

UPGRADE TO PREMIUM TO VIEW 6 MORE

TOTAL LINKS TO THIS WEBSITE

12

OTHER SITES

otakustalkers.deviantart.com otakustalkers.deviantart.com

OtakuStalkers - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? We are twisted not sick. Founded 3 Years ago. Stalking is just aggressive following. Love all. Founded 3 Years ago. Apr 23, 2014. Div div.g...

otakustan.com otakustan.com

STRATO

otakustar97.deviantart.com otakustar97.deviantart.com

OtakuStar97 (Jessica Cooper-Smith) | DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Deviant for 7 Years. This deviant's full pageview. Last Visit: 83 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. You can drag and drop to rearrange. You can edit widgets to customize them. The bottom has widgets you can add! Some widgets you can only access when you get Core Membership.

otakustarchild.deviantart.com otakustarchild.deviantart.com

OtakuStarchild (Silent Poet) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Traditional Art / Hobbyist. Deviant for 8 Years. This deviant's full pageview. Last Visit: 5 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets.

otakustation.tumblr.com otakustation.tumblr.com

Otaku Station

I've got pokemon, zelda, anime pics, and of course, lots'a personality. Image: ZELDA by kowan (deviantart). Is a theme by Andy Taylor. Ghibli Museum in Tokyo,Japan. 三鷹の森ジブリ美術館。 I have to go there… (cries). Crarr; Originally from hal-japan-blog. Crarr; Reblogged from lostinhyrule. Posted 5 years ago. Yeah… I wrote another song. I’m so sorry. I normally don’t write songs to villains. But I need to write this one. Because after that preview clip. I’ve got some things I need to say to Amon. Posted 5 years ago.

otakustay.com otakustay.com

宅居

近期因为一些外部的因素,不得不开始尝试使用React Redux的组合,在学习并使用了一周之后,我实现并发布了这个用于解决Optimistic UI问题的redux-optimistic-thunk中间件 GitHub地址 https:/ github.com/ecomfe/redux-optimistic-thunk npm地址 https:/ www.npmjs.com/package/redux-optimistic-thunk 本文中所有 Optimistic 翻译为 乐观 ,大致指在涉及到外部服务的用户交互产生时,通过一定的技术手段在短时间内向用户提供操作的反馈,而不等待外部服务的响应,Cola Chan的文章比较详细地论述了这一模式。 先通过动画展示一下这个中间件工作时的效果 图片4.4MB,请耐心等待 从图中可以看到一个10s延迟和一个5s延迟的项目在提交时会立刻被添加到列表的顶端,. 模块的本质 模块化顾名思义,指的必然是将程序拆分为多个 模块 ,使用模块间通信的方式进行交互。 概念 OPOA,全称One Page One Application,中文可以称之为单页应用。 问题的提出 假...

otakusteph.deviantart.com otakusteph.deviantart.com

OtakuSteph (Stephanie) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 8 Years. This deviant's full pageview. August 4, 1991. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. You can drag and drop to rearrange.

otakustew.net otakustew.net

OtakuStew

Fills Otaku Stew's heart with love and sillyness! REVIEW: Dusk Maiden of Amnesia. Love has never been more ghostly or sweet! OtakuStew goes back to High School but this time with monsters! OtakuStew reviews the Kendo slice of life anime Bamboo Blade. REVIEW: Fate/Zero Season One. Type-Moon's legendary franchise gets a new anime series and it is absolutely beautiful. REVIEW: Pet Shop of Horrors. OtakuStew reviews the creepy OVA Pet Shop of Horrors. Samurai culture meets Hip-Hop and amazing things happen!

otakusther.deviantart.com otakusther.deviantart.com

otakusther (Esther) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 2 Years. This deviant's full pageview. Last Visit: 4 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask? May 21, 2015.

otakusthings.tumblr.com otakusthings.tumblr.com

Anime Paradise

2/8/16 — 2:57pm. 1/22/16 — 10:31pm. 1/20/16 — 9:28pm. 1/20/16 — 9:22pm. I spent way too much time on this……………. 1/18/16 — 8:50pm. Colorful days by hanakumamii. 8618; Day 05. Aegerjaquez「グリムジョー・ジャガージャック 」 B. 1/18/16 — 8:49pm. Nishikinomiya Anna - Shimoseka. 1/18/16 — 8:48pm. 12387;^▿^) ♥. 1/18/16 — 8:44pm. And I won’t loose to anyone! 1/18/16 — 8:44pm. Lsquo;Cause tonight’s the night the world begins again ♬. I wish you all a Happy New Year! 1/18/16 — 8:40pm. Pokemon Alpha Saphire giveaway!

otakustore-gp.de otakustore-gp.de

Otaku Store Göppingen - Dein Shop für Anime, Manga, Comic und Fanartikel

Es befinden sich keine Artikel im Warenkorb. Alles für den Comic-, Manga- und Animefan. Bei uns im Otaku Store schlagen die Herzen der Comic- und Mangafreunde höher. Wir haben ein riesiges Sortiment - von Marvel-Klassikern bis zu den neuesten asiatischen Mangaheften. Auch Fans bewegter Bilder kommen auf ihre Kosten. Bei uns findest Du Animefilme und -serien, die Du nicht verpassen darfst. Geek-Stuff und Fanartikel für echte Nerds. Mützen, Cappys and Schals. Tassen, Gläser and Schalen. Alle Preise inkl&#4...