This file contains 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
> function f() { console.log("First definition: " + new Date()); } | |
undefined | |
> setInterval(function() { f(); }, 1000); | |
584 | |
First definition: Wed Apr 18 2012 11:43:10 GMT+0400 (Russian Standard Time) | |
First definition: Wed Apr 18 2012 11:43:11 GMT+0400 (Russian Standard Time) | |
First definition: Wed Apr 18 2012 11:43:12 GMT+0400 (Russian Standard Time) | |
First definition: Wed Apr 18 2012 11:43:13 GMT+0400 (Russian Standard Time) | |
First definition: Wed Apr 18 2012 11:43:14 GMT+0400 (Russian Standard Time) | |
First definition: Wed Apr 18 2012 11:43:15 GMT+0400 (Russian Standard Time) |
This file contains 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
"use strict"; | |
var request = require('request'); | |
var WorkingQueue = require('capisce').WorkingQueue; | |
var http = require('http'); | |
var config = require('../config'); | |
var currentRequests = 0; | |
var benchPage = function (url, expectedLength, callback) { |
This file contains 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
Function definition: | |
function (x, y, z) { } | |
=> | |
function (this, x, y, z) { } | |
Function call: | |
f(x, y, z); | |
=> | |
f(null, x, y, z); |
This file contains 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
> [] + []; | |
'' | |
> [] + {} | |
'[object Object]' | |
> {} + [] | |
'[object Object]' | |
> {} + {} | |
'[object Object][object Object]' | |
> |
This file contains 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 fib = function (a) { return function (b) { return a(function (c) { return b(b)(c); }); }(function (d) { return a(function (e) { return d(d)(e); }); }); }(function (g) { return function (n) { | |
return n <= 2 ? 1 : g(n-1) + g(n-2); | |
}; }); |
This file contains 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
<h1>test</h1> |
This file contains 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
(function () { | |
for (var i = 1; i < 3; i++) { | |
var x; | |
console.log(i + ": " + x); | |
x = i; | |
console.log(i + ": " + x); | |
} | |
}()); |
This file contains 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
Миф 2 | |
Кризис – родом из Америки и возник исключительно по вине властей США. | |
Мы столкнулись, возможно, с самым тяжёлым кризисом за последние полвека. «Что делать» до конца неясно, тем более что во всём мире куда охотнее обсуждают «кто виноват». Многие политики — в том числе российские — считают, что это США расшатали мировую экономику. Сторонники теории заговора даже говорят, что американские власти специально создали систему «глобальных дисбалансов», чтобы их страна могла увеличивать потребление за счёт остального мира. | |
Но верна ли такая упрощенная картина? На самом деле, глобальные дисбалансы действительно имели место. Вот три самых наглядных. | |
Дисбаланс международной торговли: | |
Существовал огромный торговый дефицит у США, Великобритании, Австралии, огромный профицит у азиатских стран, России и других экспортёров нефти. Дефицит счёта текущих операций США в 2000-е гг. колебался в диапазоне 1–2% мирового ВВП; примерно таким же был совокупный профицит развивающихся азиатских стран (включая Китай) и стран- |
This file contains 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
Миф 2 | |
Кризис – родом из Америки и возник исключительно по вине властей США. | |
Мы столкнулись, возможно, с самым тяжёлым кризисом за последние полвека. «Что делать» до конца неясно, тем более что во всём мире куда охотнее обсуждают «кто виноват». Многие политики — в том числе российские — считают, что это США расшатали мировую экономику. Сторонники теории заговора даже говорят, что американские власти специально создали систему «глобальных дисбалансов», чтобы их страна могла увеличивать потребление за счёт остального мира. | |
Но верна ли такая упрощенная картина? На самом деле, глобальные дисбалансы действительно имели место. Вот три самых наглядных. | |
Дисбаланс международной торговли: | |
Существовал огромный торговый дефицит у США, Великобритании, Австралии, огромный профицит у азиатских стран, России и других экспортёров нефти. Дефицит счёта текущих операций США в 2000-е гг. колебался в диапазоне 1–2% мирового ВВП; примерно таким же был совокупный профицит развивающихся азиатских стран (включая Китай) и стран- |
This file contains 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
(function () { | |
"use strict"; | |
/*jslint nomen: true */ | |
var $, | |
_, | |
$init = function () { | |
/*global ccs_jq: false, ccs_underscore: false*/ | |
$ = $ || ccs_jq; |
OlderNewer