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
COME WIT IT NOW! 燥起来吧! | |
COME WIT IT NOW! 燥起来吧! | |
[Verse One] | |
The microphone explodes, shatterin the molds 麦克风在我手中爆裂, 声音撕碎虚伪的模式。 | |
Either droppin hits like De La O or get the fuck off the commode 如果不像De La O(墨西哥革命领导者)那样勇敢发声 那我还不如现在就滚蛋 | |
With the sure shot, sure to make the bodies drop 弹无虚发的瞄准 又一具横尸 | |
Drop and don't copy yo, don't call this a co-opt 别想复制我的声音 还冠以团结之名 | |
Terror rains drenchin, quenchin the thirst Of the power dons -that five sided Fist-agon 恐怖之雨浸透人民,只有这样五角大楼里面的“人物”才能够为自己的欲望止渴。 | |
The rotten sore on the face of Mother Earth gets bigger 地球腐烂的伤口蔓延 |
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
kindOptions: [ | |
{kind: "cosmetic"}, | |
{kind: "dimensional"} | |
], | |
{ | |
path: 'kind', | |
label: 'Kind', | |
optionLabelPath: 'content.kind', | |
choices: 'table.kindOptions', |
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
<div class="agent-status status-light status-{{status}}"></div> | |
{{#if navToIndex}} | |
{{#link-to 'agents' class="agent-item-link"}} | |
<aid class="agent-item-header">{{agent.id}}</aid> | |
<component class={{if component.name 'agent-tag'}}>{{component.name}}</component> | |
<project class={{if project.name 'agent-tag'}}>{{project.name}}</project> | |
<address class={{if agent.addr 'agent-tag'}}>{{agent.addr}}</address> | |
<kind class={{if agent.kind 'agent-tag'}}>{{agent.kind}}</kind> | |
<model class={{if agent.model 'agent-tag'}}>{{agent.model}}</model> | |
<version class={{if agent.firmware 'agent-tag'}}>{{agent.firmware}}</version> |
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
statusAgents: computed('search', 'isLoaded', 'agents', { | |
get() { | |
let agents = this.get('agents'); | |
return agents.map(function(agent) { | |
if (agent.get('connected')) { | |
if (agent.get('currentJob')) { | |
agent.set('stauts', 'online'); | |
} else { | |
agent.set('status', 'ready'); | |
} |
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
希望: | |
这不是一本贴大量代码的书,这是一本让你了解现在前端开发新的技术和发展的书,希望看完这些内容以后会对当前最新的前端技术有所了解,并能运用到自己的实际项目中。 | |
前端这个行业,发展非常迅速,新的技术风起云涌,在这本书里面我们会了解其中的两个翘楚,一个是一个出色的构建工具Webpack,另外一个是注重于用户界面构建的框架React,他们两个配合的非常完美,像Sid & Nancy一样。 | |
在开始正式学习着两个部分之前,我们非常有必要了解当今前端开发领域一些新的标准和趋势。 | |
目录 |
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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
var Stack = function() { |
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
var Player = Backbone.Model.extend({ | |
defaults: { | |
"name": "James", | |
"kit": 10 | |
} | |
}); | |
var james = new Player(); | |
james.on('change:kit', function(model) { | |
console.log("my new number is " + model.get('kit')); |
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
<!-- target:planForm --> | |
<div class="plan-form"> | |
<h4>输入推广计划名称</h4> | |
<input data-ui="id:PlanName;type:TextBox;width:250" placeholder="计划名称"> | |
<label data-ui="id:PlanNameHint;type:Label"></label> | |
<label data-ui="id:PlanNameValidity;type:Validity"></label> | |
<p> | |
<span data-ui="id:CreateBtn;type:Button">确定</span> | |
<span data-ui="id:CancelBtn;type:Button">取消</span> |
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
/** | |
* @file 新建的View类模板 | |
* @author zhangxuan06 | |
*/ | |
define(function (require) { | |
require('er/tpl!./form.tpl.html'); | |
var langPlan = require('biz/lang/plan'); |
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
/** | |
* @file 计划新建或编辑的Model | |
* @author zhangxuan06 | |
*/ | |
define(function (require) { | |
var Model = require('er/Model'); | |
var util = require('er/util'); | |
var url = require('biz/url'); |