From 4bbf63295b0c054ed19b2514589696a84948c9fe Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Tue, 25 Dec 2018 08:11:43 -0800 Subject: [PATCH] fix: fixed several issues after move to mono repo (#31) This PR has the following items: 1. Introduces a couple of fixes to the sweeper script from issues right before the move to the mono repo. These were related to moving labeler out of the root of the sweeper folder and placing into the pr-tasks sub-folder. 2. Combined two scripts which were being used to update the data manually on Glitch (pr-relations.glitch.me). The new one-off script (get-pr-relations-data.js) downloads the current data.json and then pulls down applicable Github data which updates the data.json and automatically uploads it back to the Glitch server. 3. In an effort to use the same log file across all current one-off scripts and sweeper.js, the ProcessLog class was modified, so now every log created has the same JSON structure as is uploaded to the Glitch server. This removed a lot of redundant code across 3 files. 4. During a pair-coding session with @honmanyau, we tweaked the UI for the Dashboard app to give it a more consistent look across all views. 5. Based on feedback from a couple of the moderators using the new Dashboard app, the PR title was added along with some other styling. 6. Added some environment variables for running dashboard-api and dashboard-client in a development mode. 7. Added a sample_data.json file as a starter file, so someone does not have to do a full data pull to get things up and running. 8. Modified Pareto view to only display files with 2 or more PRs to speed up the report. --- .gitignore | 10 +- dashboard-api/data.js | 15 ++ dashboard-api/package-lock.json | 224 ++++++++++++++++++ dashboard-api/package.json | 8 +- dashboard-api/routes/catchAll.js | 3 +- dashboard-api/routes/getCurrData.js | 7 +- dashboard-api/routes/index.js | 3 +- dashboard-api/routes/info.js | 13 +- dashboard-api/routes/pareto.js | 54 +++-- dashboard-api/routes/pr.js | 22 +- dashboard-api/routes/search.js | 17 +- dashboard-api/routes/upload.js | 43 ++++ dashboard-api/sample.env | 10 + dashboard-api/sample_data.json | 1 + dashboard-api/server.js | 7 +- dashboard-client/package-lock.json | 28 +-- dashboard-client/package.json | 10 +- dashboard-client/public/index.html | 5 +- dashboard-client/src/App.js | 109 +++++---- .../src/components/FilenameResults.js | 34 +-- dashboard-client/src/components/Footer.js | 56 ++--- .../src/components/FullWidthDiv.js | 7 + dashboard-client/src/components/ListItem.js | 28 +++ dashboard-client/src/components/Pareto.js | 38 ++- dashboard-client/src/components/PrResults.js | 36 +-- dashboard-client/src/components/Result.js | 12 + dashboard-client/src/constants/index.js | 2 +- dashboard-client/src/index.css | 5 + sweeper/get-prs/index.js | 3 +- .../add-comment-on-frontmatter-issues.js | 9 +- .../one-off-scripts/add-test-locally-label.js | 7 +- .../close-open-specific-failures.js | 7 +- sweeper/one-off-scripts/find-failures.js | 7 +- .../get-changes-for-pr-relations-data.js | 134 ----------- .../one-off-scripts/get-pr-relations-data.js | 135 +++++------ .../one-off-scripts/get-unknown-repo-prs.js | 45 ++++ sweeper/package.json | 1 + sweeper/pr-tasks/labeler.js | 2 +- sweeper/sample.env | 3 + sweeper/sweeper.js | 10 +- sweeper/utils/processing-log.js | 57 +++-- .../validation/guide-folder-checks/index.js | 2 +- sweeper/validation/index.js | 1 - 43 files changed, 749 insertions(+), 481 deletions(-) create mode 100644 dashboard-api/data.js create mode 100644 dashboard-api/routes/upload.js create mode 100644 dashboard-api/sample.env create mode 100644 dashboard-api/sample_data.json create mode 100644 dashboard-client/src/components/FullWidthDiv.js create mode 100644 dashboard-client/src/components/ListItem.js create mode 100644 dashboard-client/src/components/Result.js delete mode 100644 sweeper/one-off-scripts/get-changes-for-pr-relations-data.js create mode 100644 sweeper/one-off-scripts/get-unknown-repo-prs.js diff --git a/.gitignore b/.gitignore index 74529b1872..113eaf8542 100644 --- a/.gitignore +++ b/.gitignore @@ -92,14 +92,18 @@ typings/ /coverage # production -/build +dashboard-client/build # ------------ # Custom Files # ------------ # local-work-logs -work-logs/* +sweeper/work-logs/* # local input files -input-files/* \ No newline at end of file +sweeper/input-files/* + +dashboard-api/data.json +dashboard-api/public +dashboard-api/uploads diff --git a/dashboard-api/data.js b/dashboard-api/data.js new file mode 100644 index 0000000000..e0a87ac0bc --- /dev/null +++ b/dashboard-api/data.js @@ -0,0 +1,15 @@ +const fs = require('fs'); + +let data = require('./data.json'); + +const Container = { + data, + update(newData) { + Container.data = newData; + }, + getData() { + return Container.data; + } +}; + +module.exports = Container; diff --git a/dashboard-api/package-lock.json b/dashboard-api/package-lock.json index 1712ec91ae..067bee3755 100644 --- a/dashboard-api/package-lock.json +++ b/dashboard-api/package-lock.json @@ -12,6 +12,11 @@ "negotiator": "0.6.1" } }, + "append-field": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", + "integrity": "sha1-HjRA6RXwsSA9I3SOeO3XubW0PlY=" + }, "array-flatten": { "version": "1.1.1", "resolved": "http://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", @@ -34,11 +39,65 @@ "type-is": "~1.6.16" } }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + }, + "busboy": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz", + "integrity": "sha1-bCpiLvz0fFe7vh4qnDetNseSVFM=", + "requires": { + "dicer": "0.2.5", + "readable-stream": "1.1.x" + } + }, "bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "content-disposition": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", @@ -59,6 +118,32 @@ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cross-env": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz", + "integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==", + "requires": { + "cross-spawn": "^6.0.5", + "is-windows": "^1.0.0" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -77,6 +162,20 @@ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" }, + "dicer": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz", + "integrity": "sha1-WZbAhrszIYyBLAkL3cCc0S+stw8=", + "requires": { + "readable-stream": "1.1.x", + "streamsearch": "0.1.2" + } + }, + "dotenv": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.2.0.tgz", + "integrity": "sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==" + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -187,6 +286,21 @@ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=" }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, "media-typer": { "version": "0.3.0", "resolved": "http://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -220,16 +334,54 @@ "mime-db": "~1.37.0" } }, + "minimist": { + "version": "0.0.8", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" }, + "multer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.1.tgz", + "integrity": "sha512-zzOLNRxzszwd+61JFuAo0fxdQfvku12aNJgnla0AQ+hHxFmfc/B7jBVuPr5Rmvu46Jze/iJrFpSOsD7afO8SDw==", + "requires": { + "append-field": "^1.0.0", + "busboy": "^0.2.11", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.1", + "object-assign": "^4.1.1", + "on-finished": "^2.3.0", + "type-is": "^1.6.4", + "xtend": "^4.0.0" + } + }, "negotiator": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, "on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", @@ -243,11 +395,21 @@ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, "proxy-addr": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", @@ -278,6 +440,17 @@ "unpipe": "1.0.0" } }, + "readable-stream": { + "version": "1.1.14", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", @@ -288,6 +461,11 @@ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, + "semver": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", + "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==" + }, "send": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", @@ -324,11 +502,34 @@ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + }, "statuses": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" }, + "streamsearch": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz", + "integrity": "sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=" + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, "type-is": { "version": "1.6.16", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", @@ -338,11 +539,21 @@ "mime-types": "~2.1.18" } }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", @@ -352,6 +563,19 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" } } } diff --git a/dashboard-api/package.json b/dashboard-api/package.json index 92ffcddca7..03d9966b8a 100644 --- a/dashboard-api/package.json +++ b/dashboard-api/package.json @@ -3,10 +3,14 @@ "private": true, "main": "server.js", "scripts": { - "start": "node server.js" + "start": "node server.js", + "develop": "cross-env PORT=3001 node server.js" }, "dependencies": { - "express": "^4.16.3" + "cross-env": "^5.2.0", + "dotenv": "^6.2.0", + "express": "^4.16.3", + "multer": "^1.4.1" }, "devDependencies": {}, "license": "BSD-3-Clause" diff --git a/dashboard-api/routes/catchAll.js b/dashboard-api/routes/catchAll.js index c87e1bb1fc..21de7a6482 100644 --- a/dashboard-api/routes/catchAll.js +++ b/dashboard-api/routes/catchAll.js @@ -1,8 +1,7 @@ -const { indices, prs } = require('../data.json'); const router = require('express').Router(); router.get('/', (request, response) => { response.json({ ok: true, foundPRs: [] }); }); -module.exports = router; \ No newline at end of file +module.exports = router; diff --git a/dashboard-api/routes/getCurrData.js b/dashboard-api/routes/getCurrData.js index 950924bdeb..53e924e126 100644 --- a/dashboard-api/routes/getCurrData.js +++ b/dashboard-api/routes/getCurrData.js @@ -1,8 +1,9 @@ -const data = require('../data.json'); const router = require('express').Router(); +const container = require ('../data'); + router.get('/', (request, response) => { - response.json(data); + response.json(container.data); }); -module.exports = router; \ No newline at end of file +module.exports = router; diff --git a/dashboard-api/routes/index.js b/dashboard-api/routes/index.js index 775927d31a..df39247cfe 100644 --- a/dashboard-api/routes/index.js +++ b/dashboard-api/routes/index.js @@ -4,5 +4,6 @@ const pr = require('./pr'); const search = require('./search'); const info = require('./info'); const getCurrData = require('./getCurrData'); +const upload = require('./upload'); -module.exports = { catchAll, pareto, pr, search, info, getCurrData }; \ No newline at end of file +module.exports = { catchAll, pareto, pr, search, info, getCurrData, upload }; diff --git a/dashboard-api/routes/info.js b/dashboard-api/routes/info.js index 0ef240aefc..f32edcac5b 100644 --- a/dashboard-api/routes/info.js +++ b/dashboard-api/routes/info.js @@ -1,9 +1,14 @@ -const { prs, startTime } = require('../data.json'); const router = require('express').Router(); +const fs = require('fs'); +const path = require('path'); + +const container = require ('../data'); -const firstPR = prs[0].number; -const lastPR = prs[prs.length - 1].number; router.get('/', (request, response) => { + const { prs, startTime } = container.data; + const firstPR = prs[0].number; + const lastPR = prs[prs.length - 1].number; + response.json({ ok: true, lastUpdate: startTime, @@ -12,4 +17,4 @@ router.get('/', (request, response) => { }); }); -module.exports = router; \ No newline at end of file +module.exports = router; diff --git a/dashboard-api/routes/pareto.js b/dashboard-api/routes/pareto.js index 03bfb8959b..3777f0ccb7 100644 --- a/dashboard-api/routes/pareto.js +++ b/dashboard-api/routes/pareto.js @@ -1,31 +1,35 @@ const router = require('express').Router(); -const { indices, prs } = require('../data.json'); - -const reportObj = prs.reduce((obj, pr) => { - const { number, filenames, username } = pr; - - filenames.forEach((filename) => { - if (obj[filename]) { - const { count, prs } = obj[filename]; - obj[filename] = { count: count + 1, prs: prs.concat({ number, username } ) }; - } - else { - obj[filename] = { count: 1, prs: [ { number, username } ] }; - } - }); - return obj; -}, {}); -const pareto = Object.keys(reportObj) - .map((filename) => { - const { count, prs } = reportObj[filename]; - return { filename, count, prs }; - }) - .sort((a, b) => b.count - a.count); - +const container = require ('../data'); router.get('/', (reqeust, response) => { - response.json({ ok: true, pareto }); + const { indices, prs } = container.data; + + const reportObj = prs.reduce((obj, pr) => { + const { number, filenames, username, title } = pr; + + filenames.forEach((filename) => { + if (obj[filename]) { + const { count, prs } = obj[filename]; + obj[filename] = { count: count + 1, prs: prs.concat({ number, username, title } ) }; + } + else { + obj[filename] = { count: 1, prs: [ { number, username, title } ] }; + } + }); + return obj; + }, {}); + const pareto = Object.keys(reportObj) + .reduce((arr, filename) => { + const { count, prs } = reportObj[filename]; + if (count > 1) { + arr.push({ filename, count, prs }); + } + return arr; + }, []) + .sort((a, b) => b.count - a.count); + + response.json({ ok: true, pareto }); }); -module.exports = router; \ No newline at end of file +module.exports = router; diff --git a/dashboard-api/routes/pr.js b/dashboard-api/routes/pr.js index 418288914a..6cf3c145aa 100644 --- a/dashboard-api/routes/pr.js +++ b/dashboard-api/routes/pr.js @@ -1,37 +1,39 @@ -const { indices, prs } = require('../data.json'); const router = require('express').Router(); +const container = require('../data'); + router.get('/:number', (request, response) => { + const { indices, prs } = container.data; const { number: refNumber } = request.params; const index = indices[refNumber]; - - if (!index) { - response.json({ ok: true, message: 'Not a valid PR #.', results: [] }); + + if (!index && index !== 0) { + response.json({ ok: true, message: 'Unable to find that open PR #.', results: [] }); return; } - + const pr = prs[index]; const results = []; const { filenames: refFilenames } = pr; - prs.forEach(({ number, filenames, username }) => { + prs.forEach(({ number, filenames, username, title }) => { if (number != refNumber) { const matchedFilenames = filenames.filter((filename) => { return refFilenames.includes(filename); }); if (matchedFilenames.length) { - results.push({ number, filenames: matchedFilenames, username }); + results.push({ number, filenames: matchedFilenames, username, title }); } } }); - + if (!results.length) { - response.json({ ok: true, message: 'No matching results.', results: [] }); + response.json({ ok: true, message: `No other open PRs with at least one filename which PR #${refNumber} has.`, results: [] }); return; } response.json({ ok: true, results }); }); -module.exports = router; \ No newline at end of file +module.exports = router; diff --git a/dashboard-api/routes/search.js b/dashboard-api/routes/search.js index dd69395132..874f61124c 100644 --- a/dashboard-api/routes/search.js +++ b/dashboard-api/routes/search.js @@ -1,23 +1,26 @@ - -const { indices, prs } = require('../data.json'); const router = require('express').Router(); +const container = require ('../data'); + router.get('/', (request, response) => { + const { indices, prs } = container.data; const value = request.query.value; - + if (value) { const filesFound = {}; - prs.forEach(({ number, filenames }) => { + prs.forEach(({ number, filenames, username, title }) => { filenames.forEach((filename) => { if (filename.toLowerCase().includes(value.toLowerCase())) { const prObj = { number, - fileCount: prs[indices[number]].filenames.length + fileCount: prs[indices[number]].filenames.length, + username, + title }; if (filesFound.hasOwnProperty(filename)) { - filesFound[filename].push(prObj); + filesFound[filename].push(prObj); } else { filesFound[filename] = [prObj] @@ -39,4 +42,4 @@ router.get('/', (request, response) => { } }); -module.exports = router; \ No newline at end of file +module.exports = router; diff --git a/dashboard-api/routes/upload.js b/dashboard-api/routes/upload.js new file mode 100644 index 0000000000..38b4c7145a --- /dev/null +++ b/dashboard-api/routes/upload.js @@ -0,0 +1,43 @@ +require('dotenv').config(); +const fs = require('fs'); +const path = require('path'); +const multer = require('multer'); +const router = require('express').Router(); + +const container = require('../data'); + +const upload = multer({ dest: 'uploads' }); + +router.post('/', upload.single('file'), (request, response) => { + const secret = process.env.UPLOAD_SECRET; + const { password } = request.query; + if (!secret) { + console.log('Environment variable for upload secret has not been set!'); + } + + if (!!secret && password === secret) { + const { file: { path: filePath } } = request; + const uploaded = path.resolve(__dirname, '../' + filePath); + const dest = path.resolve(__dirname, '../data.json'); + const data = JSON.parse(fs.readFileSync(uploaded)); + const { indices, prs } = data; + const dataOK = Object.keys(data).every((key) => { + return !!data[key]; + }); + const lengthsMatch = Object.keys(indices).length === prs.length; + + if (dataOK && lengthsMatch) { + container.update(data); + fs.renameSync(uploaded, dest); + } + else { + const logPath = path.resolve(__dirname, '../log.txt'); + const errorMsg = `Upload failed with ${uploaded}, dataOK: ${dataOK}, lengthsMatch: ${lengthsMatch}.`; + fs.appendFileSync(logPath, errorMsg); + } + + response.send(dest); + } +}); + +module.exports = router; diff --git a/dashboard-api/sample.env b/dashboard-api/sample.env new file mode 100644 index 0000000000..48359167eb --- /dev/null +++ b/dashboard-api/sample.env @@ -0,0 +1,10 @@ +# Environment Config + +# store your secrets and config variables in here +# only invited collaborators will be able to see your .env values + +# reference these in your code with process.env.UPLOAD_SECRET + +UPLOAD_SECRET='replace with upload secret' + +# note: .env is a shell file so there can't be spaces around = diff --git a/dashboard-api/sample_data.json b/dashboard-api/sample_data.json new file mode 100644 index 0000000000..9dda6af774 --- /dev/null +++ b/dashboard-api/sample_data.json @@ -0,0 +1 @@ +{"startTime":"2018-12-12T00:38:35.975Z","finishTime":"2018-12-12T00:42:09.645Z","elapsedTime":"3.56 mins","prCount":7077,"firstPR":18059,"lastPR":34644,"indices":{"18059":0,"19073":1,"19077":2,"19319":3,"19347":4,"19360":5,"19402":6,"19477":7,"19538":8,"19554":9,"19555":10,"19557":11,"19573":12,"19602":13,"19622":14,"19629":15,"19648":16,"19653":17,"19686":18,"19690":19,"19701":20,"19711":21,"19718":22,"19739":23,"19744":24,"19749":25,"19752":26,"19754":27,"19756":28,"19761":29,"19766":30,"19767":31,"19769":32,"19811":33,"19859":34,"19880":35,"19894":36,"19911":37,"19949":38,"19957":39,"19962":40,"19977":41,"19985":42,"19990":43,"20012":44,"20061":45,"20082":46,"20096":47,"20120":48,"20137":49,"20186":50,"20224":51,"20244":52,"20255":53,"20258":54,"20259":55,"20268":56,"20287":57,"20302":58,"20317":59,"20320":60,"20324":61,"20327":62,"20359":63,"20399":64,"20407":65,"20434":66,"20469":67,"20475":68,"20476":69,"20496":70,"20501":71,"20510":72,"20587":73,"20590":74,"20597":75,"20599":76,"20625":77,"20685":78,"20703":79,"20789":80,"20795":81,"20796":82,"20813":83,"20819":84,"20825":85,"20826":86,"20827":87,"20829":88,"20833":89,"20834":90,"20838":91,"20840":92,"20848":93,"20850":94,"20857":95,"20864":96,"20873":97,"20884":98,"20895":99,"20897":100,"20899":101,"20909":102,"20916":103,"20931":104,"20945":105,"20952":106,"20955":107,"20958":108,"20960":109,"20977":110,"20990":111,"21004":112,"21015":113,"21016":114,"21023":115,"21029":116,"21033":117,"21055":118,"21072":119,"21086":120,"21114":121,"21133":122,"21140":123,"21144":124,"21148":125,"21157":126,"21160":127,"21161":128,"21167":129,"21177":130,"21185":131,"21189":132,"21196":133,"21208":134,"21215":135,"21217":136,"21220":137,"21230":138,"21253":139,"21267":140,"21269":141,"21281":142,"21289":143,"21290":144,"21292":145,"21297":146,"21304":147,"21305":148,"21319":149,"21321":150,"21326":151,"21330":152,"21337":153,"21341":154,"21346":155,"21349":156,"21351":157,"21362":158,"21368":159,"21387":160,"21393":161,"21403":162,"21477":163,"21535":164,"21562":165,"21564":166,"21572":167,"21579":168,"21581":169,"21608":170,"21612":171,"21623":172,"21629":173,"21632":174,"21636":175,"21638":176,"21640":177,"21643":178,"21650":179,"21672":180,"21673":181,"21720":182,"21761":183,"21777":184,"21804":185,"21821":186,"21824":187,"21834":188,"21848":189,"21882":190,"21892":191,"21909":192,"21912":193,"21915":194,"21917":195,"21943":196,"21945":197,"21966":198,"21977":199,"21983":200,"21984":201,"21990":202,"22001":203,"22052":204,"22061":205,"22064":206,"22065":207,"22079":208,"22089":209,"22090":210,"22092":211,"22095":212,"22101":213,"22103":214,"22110":215,"22114":216,"22115":217,"22120":218,"22123":219,"22124":220,"22128":221,"22133":222,"22139":223,"22143":224,"22152":225,"22154":226,"22156":227,"22157":228,"22162":229,"22168":230,"22171":231,"22173":232,"22177":233,"22180":234,"22182":235,"22185":236,"22198":237,"22206":238,"22207":239,"22212":240,"22213":241,"22249":242,"22264":243,"22281":244,"22297":245,"22301":246,"22328":247,"22346":248,"22370":249,"22383":250,"22393":251,"22406":252,"22412":253,"22424":254,"22430":255,"22434":256,"22444":257,"22457":258,"22458":259,"22469":260,"22471":261,"22475":262,"22477":263,"22481":264,"22485":265,"22492":266,"22496":267,"22500":268,"22513":269,"22524":270,"22543":271,"22549":272,"22555":273,"22562":274,"22580":275,"22585":276,"22589":277,"22601":278,"22602":279,"22611":280,"22618":281,"22619":282,"22629":283,"22635":284,"22643":285,"22644":286,"22646":287,"22647":288,"22652":289,"22661":290,"22678":291,"22700":292,"22704":293,"22710":294,"22712":295,"22720":296,"22730":297,"22736":298,"22739":299,"22744":300,"22746":301,"22749":302,"22754":303,"22759":304,"22764":305,"22783":306,"22792":307,"22809":308,"22812":309,"22813":310,"22828":311,"22836":312,"22841":313,"22848":314,"22853":315,"22855":316,"22857":317,"22858":318,"22859":319,"22861":320,"22863":321,"22880":322,"22882":323,"22886":324,"22889":325,"22892":326,"22893":327,"22899":328,"22910":329,"22915":330,"22927":331,"22934":332,"22936":333,"22950":334,"22968":335,"22970":336,"22976":337,"22996":338,"23004":339,"23017":340,"23030":341,"23032":342,"23038":343,"23046":344,"23048":345,"23051":346,"23053":347,"23056":348,"23058":349,"23067":350,"23069":351,"23080":352,"23085":353,"23086":354,"23092":355,"23094":356,"23097":357,"23104":358,"23107":359,"23110":360,"23111":361,"23124":362,"23132":363,"23143":364,"23160":365,"23166":366,"23172":367,"23183":368,"23187":369,"23191":370,"23196":371,"23205":372,"23220":373,"23226":374,"23235":375,"23261":376,"23273":377,"23279":378,"23282":379,"23293":380,"23297":381,"23303":382,"23314":383,"23318":384,"23321":385,"23327":386,"23330":387,"23340":388,"23341":389,"23344":390,"23358":391,"23361":392,"23363":393,"23365":394,"23367":395,"23379":396,"23385":397,"23390":398,"23393":399,"23401":400,"23404":401,"23417":402,"23422":403,"23424":404,"23425":405,"23426":406,"23431":407,"23435":408,"23440":409,"23449":410,"23450":411,"23453":412,"23454":413,"23456":414,"23464":415,"23472":416,"23483":417,"23487":418,"23488":419,"23492":420,"23493":421,"23504":422,"23507":423,"23510":424,"23513":425,"23515":426,"23524":427,"23525":428,"23534":429,"23538":430,"23546":431,"23547":432,"23550":433,"23553":434,"23556":435,"23560":436,"23561":437,"23566":438,"23570":439,"23572":440,"23573":441,"23574":442,"23575":443,"23578":444,"23580":445,"23583":446,"23585":447,"23586":448,"23590":449,"23593":450,"23594":451,"23595":452,"23596":453,"23597":454,"23598":455,"23601":456,"23609":457,"23618":458,"23621":459,"23623":460,"23635":461,"23641":462,"23647":463,"23650":464,"23652":465,"23653":466,"23657":467,"23663":468,"23668":469,"23687":470,"23696":471,"23704":472,"23707":473,"23709":474,"23710":475,"23719":476,"23724":477,"23728":478,"23730":479,"23735":480,"23737":481,"23739":482,"23740":483,"23741":484,"23742":485,"23747":486,"23750":487,"23758":488,"23762":489,"23763":490,"23772":491,"23776":492,"23780":493,"23784":494,"23790":495,"23800":496,"23812":497,"23813":498,"23831":499,"23833":500,"23834":501,"23844":502,"23848":503,"23849":504,"23850":505,"23852":506,"23853":507,"23854":508,"23855":509,"23858":510,"23859":511,"23860":512,"23861":513,"23865":514,"23868":515,"23874":516,"23876":517,"23883":518,"23885":519,"23886":520,"23890":521,"23891":522,"23892":523,"23897":524,"23901":525,"23904":526,"23913":527,"23914":528,"23915":529,"23919":530,"23922":531,"23926":532,"23929":533,"23930":534,"23935":535,"23936":536,"23937":537,"23942":538,"23949":539,"23950":540,"23953":541,"23954":542,"23955":543,"23956":544,"23967":545,"23968":546,"23970":547,"23971":548,"23977":549,"23991":550,"23993":551,"23994":552,"23998":553,"24003":554,"24004":555,"24007":556,"24009":557,"24017":558,"24020":559,"24033":560,"24038":561,"24039":562,"24042":563,"24043":564,"24044":565,"24061":566,"24077":567,"24090":568,"24095":569,"24097":570,"24102":571,"24106":572,"24112":573,"24123":574,"24124":575,"24126":576,"24134":577,"24135":578,"24142":579,"24146":580,"24151":581,"24153":582,"24155":583,"24157":584,"24163":585,"24165":586,"24170":587,"24176":588,"24178":589,"24185":590,"24188":591,"24190":592,"24191":593,"24192":594,"24193":595,"24195":596,"24197":597,"24199":598,"24200":599,"24201":600,"24203":601,"24204":602,"24217":603,"24237":604,"24241":605,"24243":606,"24245":607,"24246":608,"24247":609,"24249":610,"24250":611,"24251":612,"24252":613,"24259":614,"24266":615,"24269":616,"24283":617,"24294":618,"24300":619,"24301":620,"24311":621,"24312":622,"24322":623,"24339":624,"24341":625,"24343":626,"24344":627,"24349":628,"24350":629,"24353":630,"24359":631,"24363":632,"24365":633,"24367":634,"24368":635,"24372":636,"24373":637,"24377":638,"24378":639,"24379":640,"24383":641,"24386":642,"24390":643,"24391":644,"24393":645,"24396":646,"24398":647,"24400":648,"24405":649,"24410":650,"24417":651,"24418":652,"24422":653,"24424":654,"24426":655,"24428":656,"24432":657,"24442":658,"24445":659,"24458":660,"24467":661,"24468":662,"24471":663,"24475":664,"24476":665,"24481":666,"24487":667,"24489":668,"24490":669,"24494":670,"24505":671,"24507":672,"24508":673,"24514":674,"24517":675,"24518":676,"24520":677,"24521":678,"24522":679,"24524":680,"24527":681,"24528":682,"24531":683,"24538":684,"24539":685,"24540":686,"24541":687,"24542":688,"24543":689,"24545":690,"24546":691,"24548":692,"24549":693,"24554":694,"24555":695,"24558":696,"24563":697,"24564":698,"24567":699,"24568":700,"24571":701,"24572":702,"24574":703,"24577":704,"24579":705,"24581":706,"24582":707,"24583":708,"24584":709,"24588":710,"24590":711,"24591":712,"24593":713,"24595":714,"24598":715,"24599":716,"24602":717,"24604":718,"24607":719,"24612":720,"24613":721,"24614":722,"24616":723,"24619":724,"24620":725,"24622":726,"24624":727,"24627":728,"24630":729,"24631":730,"24635":731,"24636":732,"24639":733,"24641":734,"24643":735,"24644":736,"24645":737,"24646":738,"24647":739,"24649":740,"24652":741,"24655":742,"24656":743,"24658":744,"24659":745,"24661":746,"24662":747,"24664":748,"24669":749,"24670":750,"24671":751,"24674":752,"24675":753,"24684":754,"24693":755,"24694":756,"24696":757,"24698":758,"24700":759,"24702":760,"24705":761,"24706":762,"24707":763,"24709":764,"24710":765,"24711":766,"24712":767,"24713":768,"24715":769,"24716":770,"24717":771,"24718":772,"24720":773,"24722":774,"24724":775,"24726":776,"24727":777,"24728":778,"24730":779,"24731":780,"24734":781,"24738":782,"24740":783,"24742":784,"24744":785,"24746":786,"24747":787,"24750":788,"24753":789,"24755":790,"24757":791,"24758":792,"24759":793,"24760":794,"24761":795,"24762":796,"24766":797,"24767":798,"24768":799,"24771":800,"24775":801,"24776":802,"24777":803,"24780":804,"24781":805,"24784":806,"24787":807,"24789":808,"24791":809,"24792":810,"24796":811,"24798":812,"24801":813,"24807":814,"24813":815,"24814":816,"24818":817,"24820":818,"24821":819,"24822":820,"24823":821,"24825":822,"24826":823,"24828":824,"24833":825,"24836":826,"24838":827,"24839":828,"24842":829,"24843":830,"24844":831,"24845":832,"24846":833,"24847":834,"24850":835,"24852":836,"24853":837,"24855":838,"24856":839,"24857":840,"24859":841,"24860":842,"24861":843,"24862":844,"24863":845,"24864":846,"24865":847,"24869":848,"24870":849,"24871":850,"24873":851,"24874":852,"24875":853,"24877":854,"24878":855,"24879":856,"24886":857,"24887":858,"24888":859,"24895":860,"24896":861,"24898":862,"24899":863,"24902":864,"24906":865,"24907":866,"24908":867,"24909":868,"24910":869,"24912":870,"24914":871,"24916":872,"24918":873,"24919":874,"24920":875,"24921":876,"24922":877,"24923":878,"24924":879,"24927":880,"24928":881,"24929":882,"24931":883,"24935":884,"24936":885,"24937":886,"24939":887,"24940":888,"24941":889,"24942":890,"24943":891,"24945":892,"24946":893,"24947":894,"24949":895,"24952":896,"24954":897,"24957":898,"24963":899,"24964":900,"24966":901,"24968":902,"24974":903,"24975":904,"24978":905,"24979":906,"24980":907,"24985":908,"24987":909,"24988":910,"24991":911,"24993":912,"24995":913,"24997":914,"24999":915,"25000":916,"25007":917,"25010":918,"25011":919,"25012":920,"25014":921,"25016":922,"25026":923,"25027":924,"25031":925,"25032":926,"25033":927,"25036":928,"25038":929,"25042":930,"25043":931,"25044":932,"25048":933,"25050":934,"25054":935,"25056":936,"25058":937,"25060":938,"25063":939,"25068":940,"25071":941,"25072":942,"25077":943,"25080":944,"25082":945,"25083":946,"25085":947,"25088":948,"25089":949,"25090":950,"25091":951,"25092":952,"25093":953,"25095":954,"25097":955,"25098":956,"25100":957,"25103":958,"25105":959,"25106":960,"25107":961,"25108":962,"25110":963,"25111":964,"25113":965,"25115":966,"25119":967,"25120":968,"25121":969,"25122":970,"25123":971,"25124":972,"25126":973,"25128":974,"25133":975,"25134":976,"25137":977,"25138":978,"25140":979,"25143":980,"25145":981,"25148":982,"25156":983,"25158":984,"25161":985,"25162":986,"25163":987,"25164":988,"25165":989,"25167":990,"25168":991,"25169":992,"25170":993,"25171":994,"25173":995,"25174":996,"25177":997,"25178":998,"25179":999,"25181":1000,"25182":1001,"25183":1002,"25184":1003,"25185":1004,"25188":1005,"25189":1006,"25190":1007,"25194":1008,"25197":1009,"25200":1010,"25201":1011,"25203":1012,"25205":1013,"25206":1014,"25207":1015,"25211":1016,"25212":1017,"25213":1018,"25214":1019,"25216":1020,"25219":1021,"25221":1022,"25226":1023,"25227":1024,"25228":1025,"25229":1026,"25230":1027,"25232":1028,"25233":1029,"25234":1030,"25237":1031,"25238":1032,"25239":1033,"25240":1034,"25241":1035,"25242":1036,"25243":1037,"25244":1038,"25247":1039,"25252":1040,"25253":1041,"25256":1042,"25258":1043,"25259":1044,"25261":1045,"25262":1046,"25264":1047,"25266":1048,"25267":1049,"25268":1050,"25269":1051,"25270":1052,"25272":1053,"25273":1054,"25274":1055,"25275":1056,"25278":1057,"25281":1058,"25282":1059,"25286":1060,"25287":1061,"25291":1062,"25293":1063,"25294":1064,"25295":1065,"25297":1066,"25300":1067,"25305":1068,"25307":1069,"25313":1070,"25315":1071,"25323":1072,"25324":1073,"25325":1074,"25326":1075,"25328":1076,"25331":1077,"25334":1078,"25336":1079,"25339":1080,"25340":1081,"25342":1082,"25343":1083,"25344":1084,"25345":1085,"25348":1086,"25350":1087,"25351":1088,"25354":1089,"25355":1090,"25359":1091,"25360":1092,"25362":1093,"25363":1094,"25365":1095,"25368":1096,"25369":1097,"25372":1098,"25373":1099,"25375":1100,"25376":1101,"25380":1102,"25382":1103,"25383":1104,"25384":1105,"25390":1106,"25391":1107,"25392":1108,"25393":1109,"25394":1110,"25398":1111,"25400":1112,"25403":1113,"25404":1114,"25405":1115,"25407":1116,"25412":1117,"25413":1118,"25414":1119,"25415":1120,"25416":1121,"25417":1122,"25418":1123,"25421":1124,"25423":1125,"25424":1126,"25426":1127,"25427":1128,"25430":1129,"25431":1130,"25433":1131,"25435":1132,"25437":1133,"25438":1134,"25439":1135,"25441":1136,"25444":1137,"25446":1138,"25447":1139,"25449":1140,"25450":1141,"25452":1142,"25453":1143,"25454":1144,"25455":1145,"25456":1146,"25457":1147,"25458":1148,"25459":1149,"25460":1150,"25461":1151,"25462":1152,"25463":1153,"25464":1154,"25465":1155,"25466":1156,"25467":1157,"25468":1158,"25474":1159,"25475":1160,"25476":1161,"25477":1162,"25480":1163,"25482":1164,"25483":1165,"25485":1166,"25486":1167,"25487":1168,"25488":1169,"25490":1170,"25491":1171,"25493":1172,"25496":1173,"25497":1174,"25498":1175,"25499":1176,"25500":1177,"25501":1178,"25503":1179,"25506":1180,"25507":1181,"25510":1182,"25513":1183,"25514":1184,"25515":1185,"25517":1186,"25518":1187,"25519":1188,"25520":1189,"25521":1190,"25522":1191,"25524":1192,"25525":1193,"25527":1194,"25529":1195,"25532":1196,"25534":1197,"25538":1198,"25539":1199,"25541":1200,"25542":1201,"25544":1202,"25545":1203,"25546":1204,"25547":1205,"25550":1206,"25552":1207,"25554":1208,"25555":1209,"25556":1210,"25557":1211,"25558":1212,"25560":1213,"25563":1214,"25564":1215,"25566":1216,"25568":1217,"25569":1218,"25571":1219,"25574":1220,"25575":1221,"25576":1222,"25582":1223,"25585":1224,"25586":1225,"25588":1226,"25590":1227,"25591":1228,"25592":1229,"25593":1230,"25596":1231,"25598":1232,"25599":1233,"25601":1234,"25602":1235,"25604":1236,"25607":1237,"25608":1238,"25609":1239,"25611":1240,"25612":1241,"25614":1242,"25615":1243,"25617":1244,"25618":1245,"25619":1246,"25620":1247,"25623":1248,"25626":1249,"25629":1250,"25631":1251,"25632":1252,"25633":1253,"25634":1254,"25635":1255,"25636":1256,"25637":1257,"25638":1258,"25641":1259,"25643":1260,"25644":1261,"25645":1262,"25648":1263,"25649":1264,"25650":1265,"25651":1266,"25652":1267,"25682":1268,"25683":1269,"25684":1270,"25688":1271,"25689":1272,"25692":1273,"25694":1274,"25696":1275,"25698":1276,"25701":1277,"25702":1278,"25706":1279,"25710":1280,"25711":1281,"25713":1282,"25714":1283,"25716":1284,"25717":1285,"25718":1286,"25723":1287,"25725":1288,"25727":1289,"25729":1290,"25730":1291,"25731":1292,"25732":1293,"25733":1294,"25734":1295,"25735":1296,"25736":1297,"25737":1298,"25738":1299,"25744":1300,"25746":1301,"25749":1302,"25751":1303,"25753":1304,"25754":1305,"25756":1306,"25759":1307,"25760":1308,"25763":1309,"25764":1310,"25765":1311,"25766":1312,"25768":1313,"25769":1314,"25771":1315,"25774":1316,"25775":1317,"25776":1318,"25780":1319,"25781":1320,"25783":1321,"25785":1322,"25787":1323,"25789":1324,"25793":1325,"25794":1326,"25795":1327,"25796":1328,"25798":1329,"25799":1330,"25800":1331,"25802":1332,"25805":1333,"25806":1334,"25811":1335,"25812":1336,"25816":1337,"25818":1338,"25822":1339,"25826":1340,"25828":1341,"25831":1342,"25833":1343,"25836":1344,"25839":1345,"25841":1346,"25842":1347,"25844":1348,"25845":1349,"25846":1350,"25849":1351,"25854":1352,"25855":1353,"25858":1354,"25861":1355,"25871":1356,"25873":1357,"25875":1358,"25876":1359,"25880":1360,"25882":1361,"25883":1362,"25884":1363,"25885":1364,"25886":1365,"25888":1366,"25892":1367,"25893":1368,"25895":1369,"25896":1370,"25897":1371,"25898":1372,"25899":1373,"25900":1374,"25904":1375,"25906":1376,"25908":1377,"25910":1378,"25911":1379,"25912":1380,"25914":1381,"25915":1382,"25918":1383,"25919":1384,"25921":1385,"25923":1386,"25924":1387,"25927":1388,"25928":1389,"25930":1390,"25932":1391,"25933":1392,"25934":1393,"25936":1394,"25937":1395,"25938":1396,"25940":1397,"25941":1398,"25942":1399,"25943":1400,"25945":1401,"25946":1402,"25948":1403,"25949":1404,"25950":1405,"25951":1406,"25953":1407,"25954":1408,"25955":1409,"25965":1410,"25968":1411,"25970":1412,"25973":1413,"25976":1414,"25977":1415,"25980":1416,"25981":1417,"25982":1418,"25983":1419,"25985":1420,"25986":1421,"25987":1422,"25988":1423,"25989":1424,"25990":1425,"25992":1426,"25993":1427,"25995":1428,"25996":1429,"25997":1430,"25998":1431,"26000":1432,"26001":1433,"26003":1434,"26005":1435,"26007":1436,"26009":1437,"26012":1438,"26013":1439,"26015":1440,"26018":1441,"26022":1442,"26023":1443,"26026":1444,"26027":1445,"26028":1446,"26029":1447,"26031":1448,"26032":1449,"26033":1450,"26035":1451,"26036":1452,"26038":1453,"26041":1454,"26042":1455,"26043":1456,"26045":1457,"26046":1458,"26047":1459,"26048":1460,"26050":1461,"26051":1462,"26053":1463,"26054":1464,"26055":1465,"26056":1466,"26057":1467,"26058":1468,"26059":1469,"26061":1470,"26063":1471,"26064":1472,"26067":1473,"26069":1474,"26070":1475,"26074":1476,"26075":1477,"26076":1478,"26078":1479,"26079":1480,"26081":1481,"26083":1482,"26084":1483,"26085":1484,"26086":1485,"26088":1486,"26089":1487,"26090":1488,"26091":1489,"26094":1490,"26095":1491,"26096":1492,"26097":1493,"26099":1494,"26102":1495,"26103":1496,"26106":1497,"26107":1498,"26108":1499,"26110":1500,"26111":1501,"26116":1502,"26118":1503,"26119":1504,"26120":1505,"26122":1506,"26124":1507,"26125":1508,"26127":1509,"26128":1510,"26129":1511,"26130":1512,"26134":1513,"26135":1514,"26136":1515,"26137":1516,"26140":1517,"26143":1518,"26144":1519,"26145":1520,"26148":1521,"26149":1522,"26150":1523,"26152":1524,"26153":1525,"26154":1526,"26155":1527,"26156":1528,"26158":1529,"26159":1530,"26160":1531,"26161":1532,"26162":1533,"26163":1534,"26164":1535,"26165":1536,"26167":1537,"26168":1538,"26169":1539,"26170":1540,"26172":1541,"26173":1542,"26174":1543,"26176":1544,"26177":1545,"26178":1546,"26180":1547,"26182":1548,"26185":1549,"26186":1550,"26188":1551,"26189":1552,"26190":1553,"26194":1554,"26197":1555,"26198":1556,"26199":1557,"26200":1558,"26201":1559,"26202":1560,"26203":1561,"26204":1562,"26206":1563,"26210":1564,"26212":1565,"26213":1566,"26214":1567,"26216":1568,"26218":1569,"26219":1570,"26220":1571,"26222":1572,"26224":1573,"26225":1574,"26226":1575,"26228":1576,"26229":1577,"26232":1578,"26234":1579,"26236":1580,"26237":1581,"26239":1582,"26242":1583,"26244":1584,"26246":1585,"26249":1586,"26250":1587,"26251":1588,"26253":1589,"26255":1590,"26257":1591,"26258":1592,"26259":1593,"26260":1594,"26262":1595,"26263":1596,"26264":1597,"26265":1598,"26267":1599,"26270":1600,"26271":1601,"26272":1602,"26273":1603,"26275":1604,"26279":1605,"26280":1606,"26285":1607,"26287":1608,"26288":1609,"26289":1610,"26290":1611,"26291":1612,"26292":1613,"26296":1614,"26297":1615,"26299":1616,"26301":1617,"26302":1618,"26303":1619,"26304":1620,"26305":1621,"26306":1622,"26307":1623,"26309":1624,"26310":1625,"26311":1626,"26312":1627,"26314":1628,"26315":1629,"26316":1630,"26318":1631,"26319":1632,"26320":1633,"26322":1634,"26323":1635,"26324":1636,"26326":1637,"26328":1638,"26329":1639,"26330":1640,"26331":1641,"26333":1642,"26334":1643,"26336":1644,"26337":1645,"26338":1646,"26339":1647,"26340":1648,"26342":1649,"26343":1650,"26344":1651,"26345":1652,"26346":1653,"26347":1654,"26349":1655,"26350":1656,"26354":1657,"26355":1658,"26356":1659,"26357":1660,"26358":1661,"26359":1662,"26362":1663,"26364":1664,"26365":1665,"26367":1666,"26368":1667,"26371":1668,"26372":1669,"26373":1670,"26374":1671,"26375":1672,"26376":1673,"26378":1674,"26379":1675,"26380":1676,"26382":1677,"26383":1678,"26384":1679,"26386":1680,"26387":1681,"26388":1682,"26389":1683,"26390":1684,"26391":1685,"26392":1686,"26393":1687,"26394":1688,"26395":1689,"26396":1690,"26397":1691,"26399":1692,"26400":1693,"26402":1694,"26404":1695,"26405":1696,"26407":1697,"26408":1698,"26410":1699,"26412":1700,"26413":1701,"26414":1702,"26415":1703,"26416":1704,"26417":1705,"26418":1706,"26420":1707,"26422":1708,"26423":1709,"26424":1710,"26425":1711,"26426":1712,"26428":1713,"26429":1714,"26433":1715,"26434":1716,"26435":1717,"26436":1718,"26437":1719,"26438":1720,"26439":1721,"26440":1722,"26441":1723,"26442":1724,"26444":1725,"26446":1726,"26447":1727,"26450":1728,"26451":1729,"26454":1730,"26455":1731,"26457":1732,"26458":1733,"26459":1734,"26461":1735,"26462":1736,"26463":1737,"26465":1738,"26466":1739,"26468":1740,"26470":1741,"26471":1742,"26472":1743,"26474":1744,"26475":1745,"26476":1746,"26477":1747,"26478":1748,"26479":1749,"26481":1750,"26483":1751,"26484":1752,"26485":1753,"26486":1754,"26488":1755,"26492":1756,"26493":1757,"26494":1758,"26495":1759,"26496":1760,"26497":1761,"26498":1762,"26502":1763,"26503":1764,"26504":1765,"26507":1766,"26508":1767,"26512":1768,"26513":1769,"26514":1770,"26516":1771,"26517":1772,"26518":1773,"26520":1774,"26521":1775,"26522":1776,"26523":1777,"26524":1778,"26525":1779,"26526":1780,"26527":1781,"26528":1782,"26531":1783,"26532":1784,"26533":1785,"26534":1786,"26537":1787,"26540":1788,"26541":1789,"26545":1790,"26546":1791,"26548":1792,"26549":1793,"26550":1794,"26551":1795,"26552":1796,"26553":1797,"26554":1798,"26558":1799,"26559":1800,"26560":1801,"26561":1802,"26562":1803,"26565":1804,"26566":1805,"26567":1806,"26568":1807,"26569":1808,"26570":1809,"26571":1810,"26572":1811,"26573":1812,"26574":1813,"26575":1814,"26577":1815,"26578":1816,"26579":1817,"26580":1818,"26582":1819,"26583":1820,"26584":1821,"26587":1822,"26588":1823,"26591":1824,"26592":1825,"26593":1826,"26594":1827,"26595":1828,"26597":1829,"26598":1830,"26599":1831,"26600":1832,"26601":1833,"26602":1834,"26603":1835,"26604":1836,"26605":1837,"26607":1838,"26609":1839,"26611":1840,"26612":1841,"26613":1842,"26614":1843,"26615":1844,"26616":1845,"26617":1846,"26619":1847,"26621":1848,"26622":1849,"26623":1850,"26624":1851,"26625":1852,"26626":1853,"26628":1854,"26629":1855,"26630":1856,"26631":1857,"26632":1858,"26636":1859,"26641":1860,"26642":1861,"26643":1862,"26644":1863,"26646":1864,"26647":1865,"26648":1866,"26651":1867,"26652":1868,"26653":1869,"26657":1870,"26658":1871,"26659":1872,"26660":1873,"26662":1874,"26663":1875,"26664":1876,"26665":1877,"26666":1878,"26667":1879,"26668":1880,"26671":1881,"26673":1882,"26674":1883,"26675":1884,"26677":1885,"26678":1886,"26679":1887,"26680":1888,"26682":1889,"26684":1890,"26685":1891,"26686":1892,"26690":1893,"26692":1894,"26694":1895,"26695":1896,"26697":1897,"26701":1898,"26702":1899,"26707":1900,"26709":1901,"26710":1902,"26713":1903,"26715":1904,"26716":1905,"26718":1906,"26720":1907,"26721":1908,"26725":1909,"26726":1910,"26728":1911,"26731":1912,"26733":1913,"26734":1914,"26735":1915,"26739":1916,"26740":1917,"26741":1918,"26742":1919,"26743":1920,"26746":1921,"26747":1922,"26752":1923,"26753":1924,"26757":1925,"26758":1926,"26759":1927,"26760":1928,"26762":1929,"26763":1930,"26765":1931,"26766":1932,"26767":1933,"26769":1934,"26770":1935,"26771":1936,"26772":1937,"26776":1938,"26778":1939,"26779":1940,"26781":1941,"26782":1942,"26783":1943,"26784":1944,"26785":1945,"26786":1946,"26788":1947,"26789":1948,"26790":1949,"26793":1950,"26795":1951,"26796":1952,"26797":1953,"26798":1954,"26799":1955,"26800":1956,"26803":1957,"26804":1958,"26808":1959,"26809":1960,"26812":1961,"26814":1962,"26816":1963,"26818":1964,"26819":1965,"26821":1966,"26822":1967,"26823":1968,"26824":1969,"26825":1970,"26828":1971,"26829":1972,"26831":1973,"26832":1974,"26836":1975,"26837":1976,"26839":1977,"26847":1978,"26849":1979,"26851":1980,"26852":1981,"26855":1982,"26858":1983,"26861":1984,"26864":1985,"26865":1986,"26866":1987,"26868":1988,"26870":1989,"26872":1990,"26874":1991,"26876":1992,"26877":1993,"26879":1994,"26880":1995,"26881":1996,"26884":1997,"26885":1998,"26887":1999,"26889":2000,"26891":2001,"26895":2002,"26898":2003,"26899":2004,"26900":2005,"26901":2006,"26902":2007,"26904":2008,"26905":2009,"26906":2010,"26908":2011,"26911":2012,"26912":2013,"26913":2014,"26914":2015,"26915":2016,"26916":2017,"26917":2018,"26918":2019,"26920":2020,"26922":2021,"26923":2022,"26926":2023,"26927":2024,"26929":2025,"26930":2026,"26932":2027,"26934":2028,"26935":2029,"26936":2030,"26939":2031,"26941":2032,"26943":2033,"26946":2034,"26949":2035,"26951":2036,"26952":2037,"26953":2038,"26954":2039,"26956":2040,"26957":2041,"26959":2042,"26960":2043,"26961":2044,"26962":2045,"26963":2046,"26965":2047,"26968":2048,"26970":2049,"26972":2050,"26973":2051,"26974":2052,"26975":2053,"26977":2054,"26978":2055,"26983":2056,"26985":2057,"26986":2058,"26987":2059,"26988":2060,"26990":2061,"26991":2062,"26992":2063,"26993":2064,"26995":2065,"26997":2066,"26998":2067,"27003":2068,"27006":2069,"27007":2070,"27008":2071,"27009":2072,"27010":2073,"27011":2074,"27012":2075,"27016":2076,"27017":2077,"27018":2078,"27019":2079,"27020":2080,"27021":2081,"27023":2082,"27027":2083,"27028":2084,"27029":2085,"27030":2086,"27031":2087,"27032":2088,"27034":2089,"27035":2090,"27036":2091,"27037":2092,"27038":2093,"27040":2094,"27041":2095,"27042":2096,"27043":2097,"27044":2098,"27045":2099,"27047":2100,"27048":2101,"27049":2102,"27051":2103,"27052":2104,"27053":2105,"27054":2106,"27055":2107,"27057":2108,"27060":2109,"27061":2110,"27062":2111,"27063":2112,"27065":2113,"27066":2114,"27068":2115,"27069":2116,"27071":2117,"27072":2118,"27073":2119,"27074":2120,"27075":2121,"27076":2122,"27077":2123,"27079":2124,"27084":2125,"27085":2126,"27087":2127,"27090":2128,"27091":2129,"27093":2130,"27094":2131,"27095":2132,"27096":2133,"27097":2134,"27098":2135,"27099":2136,"27100":2137,"27102":2138,"27104":2139,"27105":2140,"27106":2141,"27107":2142,"27108":2143,"27109":2144,"27111":2145,"27112":2146,"27113":2147,"27115":2148,"27116":2149,"27118":2150,"27120":2151,"27121":2152,"27122":2153,"27123":2154,"27124":2155,"27125":2156,"27126":2157,"27127":2158,"27128":2159,"27129":2160,"27130":2161,"27131":2162,"27134":2163,"27137":2164,"27138":2165,"27139":2166,"27141":2167,"27143":2168,"27144":2169,"27146":2170,"27147":2171,"27148":2172,"27149":2173,"27150":2174,"27152":2175,"27153":2176,"27154":2177,"27156":2178,"27158":2179,"27159":2180,"27160":2181,"27161":2182,"27162":2183,"27164":2184,"27165":2185,"27166":2186,"27167":2187,"27168":2188,"27169":2189,"27170":2190,"27171":2191,"27172":2192,"27173":2193,"27174":2194,"27175":2195,"27176":2196,"27177":2197,"27180":2198,"27181":2199,"27183":2200,"27184":2201,"27185":2202,"27186":2203,"27187":2204,"27188":2205,"27191":2206,"27192":2207,"27193":2208,"27194":2209,"27195":2210,"27196":2211,"27197":2212,"27198":2213,"27199":2214,"27200":2215,"27201":2216,"27202":2217,"27203":2218,"27204":2219,"27205":2220,"27206":2221,"27207":2222,"27208":2223,"27209":2224,"27210":2225,"27211":2226,"27212":2227,"27213":2228,"27215":2229,"27216":2230,"27217":2231,"27218":2232,"27219":2233,"27221":2234,"27222":2235,"27223":2236,"27225":2237,"27226":2239,"27227":2238,"27229":2240,"27230":2241,"27231":2242,"27233":2243,"27235":2244,"27236":2245,"27237":2246,"27238":2247,"27239":2248,"27240":2249,"27241":2250,"27242":2251,"27243":2252,"27245":2253,"27246":2254,"27249":2255,"27251":2256,"27252":2257,"27253":2258,"27255":2259,"27256":2260,"27257":2261,"27259":2262,"27260":2263,"27263":2264,"27265":2265,"27266":2266,"27267":2267,"27270":2268,"27271":2269,"27272":2270,"27277":2271,"27278":2272,"27282":2273,"27283":2274,"27284":2275,"27285":2276,"27287":2277,"27288":2278,"27289":2279,"27290":2280,"27292":2281,"27293":2282,"27294":2283,"27295":2284,"27298":2285,"27300":2286,"27301":2287,"27303":2288,"27305":2289,"27307":2290,"27308":2291,"27312":2292,"27315":2293,"27318":2294,"27321":2295,"27322":2296,"27323":2297,"27324":2298,"27325":2299,"27328":2300,"27329":2301,"27330":2302,"27332":2303,"27334":2304,"27335":2305,"27337":2306,"27338":2307,"27339":2308,"27340":2309,"27341":2310,"27342":2311,"27345":2312,"27348":2313,"27349":2314,"27350":2315,"27351":2316,"27353":2317,"27354":2318,"27355":2319,"27356":2320,"27357":2321,"27358":2322,"27360":2323,"27363":2324,"27366":2325,"27367":2326,"27369":2327,"27370":2328,"27371":2329,"27372":2330,"27374":2331,"27375":2332,"27376":2333,"27378":2334,"27379":2335,"27380":2336,"27382":2337,"27383":2338,"27384":2339,"27385":2340,"27387":2341,"27388":2342,"27391":2343,"27392":2344,"27394":2345,"27396":2346,"27397":2347,"27398":2348,"27401":2349,"27402":2350,"27403":2351,"27404":2352,"27405":2353,"27407":2354,"27408":2355,"27410":2356,"27412":2357,"27413":2358,"27414":2359,"27416":2360,"27417":2361,"27421":2362,"27423":2363,"27424":2364,"27428":2365,"27430":2366,"27432":2367,"27433":2368,"27434":2369,"27435":2370,"27437":2371,"27440":2372,"27441":2373,"27442":2374,"27443":2375,"27444":2376,"27445":2377,"27447":2378,"27448":2379,"27449":2380,"27450":2381,"27451":2382,"27452":2383,"27453":2384,"27454":2385,"27455":2386,"27456":2387,"27457":2388,"27458":2389,"27459":2390,"27460":2391,"27462":2392,"27464":2393,"27465":2394,"27467":2395,"27468":2396,"27469":2397,"27470":2398,"27471":2399,"27473":2400,"27476":2401,"27477":2402,"27478":2403,"27479":2404,"27480":2405,"27483":2406,"27484":2407,"27485":2408,"27486":2409,"27488":2410,"27489":2411,"27490":2412,"27491":2413,"27492":2414,"27495":2415,"27496":2416,"27498":2417,"27499":2418,"27501":2419,"27502":2420,"27503":2421,"27505":2422,"27506":2423,"27507":2424,"27509":2425,"27510":2426,"27511":2427,"27512":2428,"27514":2429,"27517":2430,"27523":2431,"27524":2432,"27526":2433,"27527":2434,"27531":2435,"27532":2436,"27533":2437,"27536":2438,"27537":2439,"27539":2440,"27540":2441,"27542":2442,"27543":2443,"27544":2444,"27545":2445,"27546":2446,"27547":2447,"27549":2448,"27551":2449,"27552":2450,"27553":2451,"27554":2452,"27556":2453,"27558":2454,"27559":2455,"27561":2456,"27562":2457,"27564":2458,"27565":2459,"27567":2460,"27573":2461,"27574":2462,"27575":2463,"27576":2464,"27577":2465,"27578":2466,"27580":2467,"27581":2468,"27583":2469,"27584":2470,"27585":2471,"27588":2472,"27589":2473,"27590":2474,"27591":2475,"27592":2476,"27593":2477,"27594":2478,"27595":2479,"27596":2480,"27598":2481,"27599":2482,"27600":2483,"27601":2484,"27602":2485,"27605":2486,"27606":2487,"27607":2488,"27608":2489,"27609":2490,"27610":2491,"27611":2492,"27613":2493,"27614":2494,"27615":2495,"27616":2496,"27617":2497,"27618":2498,"27620":2499,"27622":2500,"27623":2501,"27624":2502,"27625":2503,"27626":2504,"27627":2505,"27628":2506,"27629":2507,"27630":2508,"27632":2509,"27633":2510,"27638":2511,"27639":2512,"27640":2513,"27641":2514,"27644":2515,"27645":2516,"27647":2517,"27648":2518,"27650":2519,"27651":2520,"27654":2521,"27658":2522,"27660":2523,"27661":2524,"27662":2525,"27663":2526,"27665":2527,"27671":2528,"27672":2529,"27676":2530,"27678":2531,"27683":2532,"27686":2533,"27691":2534,"27692":2535,"27694":2536,"27695":2537,"27697":2538,"27698":2539,"27699":2540,"27701":2541,"27702":2542,"27703":2543,"27705":2544,"27708":2545,"27709":2546,"27710":2547,"27712":2548,"27717":2549,"27718":2550,"27719":2551,"27721":2552,"27727":2553,"27728":2554,"27729":2555,"27730":2556,"27731":2557,"27733":2558,"27734":2559,"27735":2560,"27737":2561,"27738":2562,"27740":2563,"27741":2564,"27743":2565,"27745":2566,"27746":2567,"27748":2568,"27749":2569,"27750":2570,"27751":2571,"27752":2572,"27753":2573,"27754":2574,"27755":2575,"27756":2576,"27757":2577,"27758":2578,"27760":2579,"27761":2580,"27764":2581,"27765":2582,"27767":2583,"27768":2584,"27769":2585,"27770":2586,"27771":2587,"27772":2588,"27773":2589,"27774":2590,"27775":2591,"27776":2592,"27777":2593,"27778":2594,"27780":2595,"27782":2596,"27783":2597,"27785":2598,"27786":2599,"27787":2600,"27788":2601,"27789":2602,"27790":2603,"27791":2604,"27792":2605,"27793":2606,"27794":2607,"27795":2608,"27796":2609,"27797":2610,"27798":2611,"27799":2612,"27801":2613,"27802":2614,"27803":2615,"27804":2616,"27805":2617,"27806":2618,"27807":2619,"27809":2620,"27810":2621,"27811":2622,"27812":2623,"27813":2624,"27814":2625,"27815":2626,"27816":2627,"27817":2628,"27819":2629,"27820":2630,"27821":2631,"27823":2632,"27824":2633,"27825":2634,"27826":2635,"27827":2636,"27828":2637,"27829":2638,"27830":2639,"27831":2640,"27836":2641,"27837":2642,"27838":2643,"27839":2644,"27842":2645,"27843":2646,"27844":2647,"27845":2648,"27846":2649,"27848":2650,"27849":2651,"27850":2652,"27851":2653,"27852":2654,"27856":2655,"27858":2656,"27859":2657,"27860":2658,"27862":2659,"27866":2660,"27867":2661,"27868":2662,"27870":2663,"27872":2664,"27873":2665,"27874":2666,"27875":2667,"27877":2668,"27878":2669,"27879":2670,"27880":2671,"27882":2672,"27885":2673,"27886":2674,"27888":2675,"27889":2676,"27890":2677,"27891":2678,"27892":2679,"27893":2680,"27894":2681,"27896":2682,"27897":2683,"27898":2684,"27900":2685,"27902":2686,"27903":2687,"27904":2688,"27905":2689,"27906":2690,"27907":2691,"27909":2692,"27910":2693,"27911":2694,"27912":2695,"27915":2696,"27917":2697,"27921":2698,"27922":2699,"27923":2700,"27924":2701,"27926":2702,"27927":2703,"27928":2704,"27929":2705,"27931":2706,"27932":2707,"27933":2708,"27934":2709,"27935":2710,"27936":2711,"27938":2712,"27939":2713,"27941":2714,"27943":2715,"27944":2716,"27945":2717,"27946":2718,"27947":2719,"27951":2720,"27952":2721,"27953":2722,"27961":2723,"27962":2724,"27965":2725,"27966":2726,"27967":2727,"27968":2728,"27969":2729,"27970":2730,"27971":2731,"27972":2732,"27973":2733,"27974":2734,"27975":2735,"27976":2736,"27977":2737,"27981":2738,"27983":2739,"27984":2740,"27985":2741,"27986":2742,"27987":2743,"27989":2744,"27990":2745,"27991":2746,"27994":2747,"27995":2748,"27996":2749,"27998":2750,"27999":2751,"28000":2752,"28001":2753,"28002":2754,"28004":2755,"28006":2756,"28007":2757,"28008":2758,"28009":2759,"28012":2760,"28013":2761,"28014":2762,"28015":2763,"28016":2764,"28017":2765,"28018":2766,"28019":2767,"28020":2768,"28021":2769,"28023":2770,"28024":2771,"28025":2772,"28026":2773,"28027":2774,"28028":2775,"28030":2776,"28033":2777,"28038":2778,"28039":2779,"28041":2780,"28042":2781,"28044":2782,"28045":2783,"28046":2784,"28048":2785,"28049":2786,"28050":2787,"28051":2788,"28052":2789,"28054":2790,"28055":2791,"28056":2792,"28057":2793,"28058":2794,"28060":2795,"28061":2796,"28062":2797,"28063":2798,"28065":2799,"28066":2800,"28070":2801,"28072":2802,"28073":2803,"28074":2804,"28075":2805,"28076":2806,"28077":2807,"28078":2808,"28079":2809,"28080":2810,"28081":2811,"28082":2812,"28084":2813,"28086":2814,"28088":2815,"28089":2816,"28090":2817,"28091":2818,"28093":2819,"28095":2820,"28101":2821,"28102":2822,"28103":2823,"28107":2824,"28108":2825,"28112":2826,"28115":2827,"28116":2828,"28118":2829,"28119":2830,"28120":2831,"28121":2832,"28122":2833,"28128":2834,"28130":2835,"28131":2836,"28132":2837,"28133":2838,"28135":2839,"28136":2840,"28137":2841,"28139":2842,"28144":2843,"28145":2844,"28147":2845,"28150":2846,"28151":2847,"28152":2848,"28153":2849,"28156":2850,"28157":2851,"28158":2852,"28160":2853,"28161":2854,"28162":2855,"28163":2856,"28165":2857,"28166":2858,"28167":2859,"28172":2860,"28173":2861,"28174":2862,"28176":2863,"28178":2864,"28179":2865,"28182":2866,"28183":2867,"28184":2868,"28185":2869,"28186":2870,"28187":2871,"28189":2872,"28190":2873,"28191":2874,"28192":2875,"28193":2876,"28194":2877,"28195":2878,"28197":2879,"28198":2880,"28200":2881,"28203":2882,"28204":2883,"28205":2884,"28206":2885,"28209":2886,"28210":2887,"28212":2888,"28213":2889,"28214":2890,"28215":2891,"28216":2892,"28217":2893,"28218":2894,"28219":2895,"28221":2896,"28222":2897,"28223":2898,"28225":2899,"28227":2900,"28228":2901,"28229":2902,"28230":2903,"28231":2904,"28232":2905,"28233":2906,"28234":2907,"28235":2908,"28236":2909,"28237":2910,"28238":2911,"28239":2912,"28240":2913,"28241":2914,"28242":2915,"28243":2916,"28244":2917,"28245":2918,"28246":2919,"28247":2920,"28248":2921,"28251":2922,"28252":2923,"28254":2924,"28255":2925,"28257":2926,"28259":2927,"28260":2928,"28261":2929,"28264":2930,"28265":2931,"28270":2932,"28271":2933,"28272":2934,"28273":2935,"28274":2936,"28275":2937,"28276":2938,"28277":2939,"28279":2940,"28280":2941,"28290":2942,"28292":2943,"28293":2944,"28294":2945,"28295":2946,"28297":2947,"28300":2948,"28301":2949,"28304":2950,"28305":2951,"28310":2952,"28311":2953,"28312":2954,"28313":2955,"28315":2956,"28316":2957,"28317":2958,"28319":2959,"28320":2960,"28321":2961,"28322":2962,"28323":2963,"28324":2964,"28326":2965,"28331":2966,"28332":2967,"28333":2968,"28334":2969,"28336":2970,"28337":2971,"28338":2972,"28341":2973,"28342":2974,"28343":2975,"28344":2976,"28348":2977,"28352":2978,"28353":2979,"28356":2980,"28357":2981,"28358":2982,"28359":2983,"28360":2984,"28361":2985,"28363":2986,"28364":2987,"28365":2988,"28366":2989,"28367":2990,"28368":2991,"28369":2992,"28370":2993,"28371":2994,"28372":2995,"28373":2996,"28377":2997,"28378":2998,"28379":2999,"28380":3000,"28384":3001,"28386":3002,"28387":3003,"28394":3004,"28397":3005,"28398":3006,"28401":3007,"28402":3008,"28403":3009,"28404":3010,"28405":3011,"28406":3012,"28407":3013,"28408":3014,"28409":3015,"28411":3016,"28412":3017,"28413":3018,"28415":3019,"28416":3020,"28418":3021,"28419":3022,"28420":3023,"28421":3024,"28422":3025,"28423":3026,"28425":3027,"28427":3028,"28428":3029,"28429":3030,"28431":3031,"28433":3032,"28434":3033,"28435":3034,"28438":3035,"28439":3036,"28442":3037,"28443":3038,"28445":3039,"28447":3040,"28449":3041,"28450":3042,"28451":3043,"28452":3044,"28454":3045,"28455":3046,"28458":3047,"28461":3048,"28463":3049,"28468":3050,"28472":3051,"28473":3052,"28474":3053,"28475":3054,"28476":3055,"28477":3056,"28478":3057,"28481":3058,"28482":3059,"28483":3060,"28484":3061,"28485":3062,"28487":3063,"28488":3064,"28489":3065,"28490":3066,"28491":3067,"28494":3068,"28497":3069,"28498":3070,"28499":3071,"28500":3072,"28501":3073,"28502":3074,"28504":3075,"28505":3076,"28506":3077,"28507":3078,"28508":3079,"28509":3080,"28510":3081,"28511":3082,"28513":3083,"28518":3084,"28519":3085,"28520":3086,"28521":3087,"28523":3088,"28530":3089,"28532":3090,"28533":3091,"28534":3092,"28537":3093,"28538":3094,"28540":3095,"28542":3096,"28551":3097,"28552":3098,"28554":3099,"28555":3100,"28556":3101,"28557":3102,"28559":3103,"28560":3104,"28561":3105,"28565":3106,"28569":3107,"28570":3108,"28571":3109,"28572":3110,"28573":3111,"28574":3112,"28575":3113,"28576":3114,"28579":3115,"28582":3116,"28584":3117,"28586":3118,"28591":3119,"28592":3120,"28593":3121,"28594":3122,"28595":3123,"28596":3124,"28598":3125,"28599":3126,"28601":3127,"28602":3128,"28603":3129,"28604":3130,"28605":3131,"28606":3132,"28607":3133,"28608":3134,"28610":3135,"28611":3136,"28612":3137,"28613":3138,"28614":3139,"28616":3140,"28618":3141,"28619":3142,"28621":3143,"28622":3144,"28623":3145,"28624":3146,"28625":3147,"28626":3148,"28627":3149,"28628":3150,"28630":3151,"28632":3152,"28633":3153,"28637":3154,"28638":3155,"28639":3156,"28640":3157,"28641":3158,"28644":3159,"28645":3160,"28648":3161,"28650":3162,"28651":3163,"28653":3164,"28654":3165,"28655":3166,"28656":3167,"28657":3168,"28658":3169,"28659":3170,"28660":3171,"28661":3172,"28662":3173,"28664":3174,"28667":3175,"28668":3176,"28670":3177,"28671":3178,"28672":3179,"28673":3180,"28674":3181,"28675":3182,"28676":3183,"28678":3184,"28679":3185,"28682":3186,"28684":3187,"28685":3188,"28689":3189,"28693":3190,"28694":3191,"28695":3192,"28696":3193,"28697":3194,"28698":3195,"28701":3196,"28703":3197,"28705":3198,"28708":3199,"28712":3200,"28713":3201,"28714":3202,"28715":3203,"28717":3204,"28718":3205,"28719":3206,"28721":3207,"28722":3208,"28723":3209,"28724":3210,"28725":3211,"28727":3212,"28728":3213,"28729":3214,"28730":3215,"28731":3216,"28732":3217,"28734":3218,"28736":3219,"28737":3220,"28739":3221,"28740":3222,"28742":3223,"28744":3224,"28745":3225,"28746":3226,"28747":3227,"28748":3228,"28749":3229,"28750":3230,"28751":3231,"28752":3232,"28754":3233,"28755":3234,"28756":3235,"28758":3236,"28759":3237,"28761":3238,"28766":3239,"28768":3240,"28769":3241,"28772":3242,"28773":3243,"28775":3244,"28776":3245,"28777":3246,"28778":3247,"28779":3248,"28780":3249,"28781":3250,"28782":3251,"28783":3252,"28784":3253,"28785":3254,"28786":3255,"28787":3256,"28788":3257,"28789":3258,"28790":3259,"28791":3260,"28793":3261,"28794":3262,"28795":3263,"28796":3264,"28799":3265,"28803":3266,"28804":3267,"28805":3268,"28806":3269,"28807":3270,"28808":3271,"28809":3272,"28810":3273,"28811":3274,"28813":3275,"28814":3276,"28815":3277,"28816":3278,"28817":3279,"28819":3280,"28821":3281,"28822":3282,"28823":3283,"28824":3284,"28825":3285,"28826":3286,"28830":3288,"28831":3287,"28832":3289,"28833":3290,"28834":3291,"28835":3292,"28836":3293,"28837":3294,"28838":3295,"28839":3296,"28840":3297,"28842":3298,"28843":3299,"28844":3300,"28845":3301,"28846":3302,"28847":3303,"28848":3304,"28849":3305,"28850":3306,"28851":3307,"28852":3308,"28854":3309,"28855":3310,"28856":3311,"28857":3312,"28858":3313,"28859":3314,"28860":3315,"28861":3316,"28862":3317,"28863":3318,"28864":3319,"28865":3320,"28866":3321,"28867":3322,"28868":3323,"28869":3324,"28870":3325,"28871":3326,"28872":3327,"28874":3328,"28875":3329,"28876":3330,"28877":3331,"28878":3332,"28879":3333,"28881":3334,"28882":3335,"28883":3336,"28884":3337,"28885":3338,"28886":3339,"28888":3340,"28889":3341,"28890":3342,"28892":3343,"28893":3344,"28894":3345,"28895":3346,"28898":3347,"28899":3348,"28903":3349,"28904":3350,"28906":3351,"28907":3352,"28908":3353,"28909":3354,"28910":3355,"28912":3356,"28913":3358,"28914":3357,"28916":3359,"28917":3360,"28919":3361,"28920":3362,"28921":3363,"28922":3364,"28923":3365,"28924":3366,"28925":3367,"28926":3368,"28927":3369,"28928":3370,"28930":3371,"28931":3372,"28933":3373,"28934":3374,"28935":3375,"28937":3376,"28938":3377,"28940":3378,"28941":3379,"28942":3380,"28944":3381,"28947":3382,"28948":3383,"28949":3384,"28950":3385,"28952":3386,"28953":3387,"28954":3388,"28955":3389,"28956":3390,"28958":3391,"28959":3392,"28960":3393,"28961":3394,"28962":3395,"28966":3396,"28969":3397,"28971":3398,"28974":3399,"28975":3400,"28976":3401,"28977":3402,"28978":3403,"28979":3404,"28980":3405,"28981":3406,"28982":3407,"28983":3408,"28984":3409,"28985":3410,"28986":3411,"28987":3412,"28988":3413,"28989":3414,"28990":3415,"28991":3416,"28992":3417,"28993":3418,"28994":3419,"28995":3420,"28996":3421,"28997":3422,"28998":3423,"28999":3424,"29000":3425,"29001":3426,"29003":3427,"29005":3428,"29006":3429,"29007":3430,"29008":3431,"29011":3432,"29012":3433,"29013":3434,"29014":3435,"29015":3436,"29016":3437,"29017":3438,"29018":3439,"29019":3440,"29020":3441,"29021":3442,"29022":3443,"29023":3444,"29024":3445,"29026":3446,"29027":3447,"29028":3448,"29029":3449,"29030":3450,"29031":3451,"29032":3452,"29033":3453,"29034":3454,"29035":3455,"29038":3456,"29039":3457,"29040":3458,"29041":3459,"29042":3460,"29043":3461,"29044":3462,"29045":3463,"29046":3464,"29047":3465,"29048":3466,"29050":3467,"29051":3468,"29052":3469,"29053":3470,"29054":3471,"29055":3472,"29056":3473,"29057":3474,"29058":3475,"29059":3476,"29060":3477,"29061":3478,"29062":3479,"29063":3480,"29064":3481,"29065":3482,"29066":3483,"29067":3484,"29070":3485,"29071":3486,"29072":3487,"29075":3488,"29076":3489,"29077":3490,"29078":3491,"29079":3492,"29080":3493,"29082":3494,"29086":3495,"29087":3496,"29088":3497,"29090":3498,"29092":3499,"29095":3500,"29096":3501,"29097":3502,"29098":3503,"29099":3504,"29100":3505,"29102":3506,"29104":3507,"29105":3508,"29107":3509,"29108":3510,"29109":3511,"29110":3512,"29111":3513,"29112":3514,"29114":3515,"29117":3516,"29118":3517,"29119":3518,"29120":3519,"29121":3520,"29122":3521,"29123":3522,"29124":3523,"29125":3524,"29126":3525,"29127":3526,"29128":3527,"29129":3528,"29131":3529,"29132":3530,"29133":3531,"29134":3532,"29135":3533,"29136":3534,"29137":3535,"29139":3536,"29141":3537,"29145":3538,"29146":3539,"29147":3540,"29149":3541,"29150":3542,"29151":3543,"29154":3544,"29155":3545,"29156":3546,"29157":3547,"29161":3548,"29162":3549,"29166":3550,"29168":3551,"29169":3552,"29172":3553,"29173":3554,"29174":3555,"29175":3556,"29176":3557,"29177":3558,"29178":3559,"29179":3560,"29180":3561,"29181":3562,"29183":3563,"29185":3564,"29188":3565,"29189":3566,"29190":3567,"29191":3568,"29192":3569,"29193":3570,"29196":3571,"29197":3572,"29198":3573,"29199":3574,"29202":3575,"29203":3576,"29205":3577,"29207":3578,"29208":3579,"29209":3580,"29210":3581,"29211":3582,"29212":3583,"29213":3584,"29214":3585,"29215":3586,"29216":3587,"29217":3588,"29218":3589,"29219":3590,"29220":3591,"29221":3592,"29222":3593,"29223":3594,"29224":3595,"29225":3596,"29226":3597,"29227":3598,"29228":3599,"29229":3600,"29230":3601,"29231":3602,"29232":3603,"29233":3604,"29234":3605,"29236":3606,"29237":3607,"29238":3608,"29239":3609,"29240":3610,"29243":3611,"29244":3612,"29245":3613,"29246":3614,"29248":3615,"29249":3616,"29251":3617,"29252":3618,"29254":3619,"29255":3620,"29257":3621,"29259":3622,"29260":3623,"29261":3624,"29263":3625,"29264":3626,"29265":3627,"29266":3628,"29267":3629,"29269":3630,"29270":3631,"29272":3632,"29274":3633,"29275":3634,"29276":3635,"29277":3636,"29278":3637,"29279":3638,"29280":3639,"29281":3640,"29282":3641,"29283":3642,"29284":3643,"29285":3644,"29286":3645,"29287":3646,"29289":3647,"29291":3648,"29292":3649,"29294":3650,"29295":3651,"29298":3652,"29300":3653,"29301":3654,"29302":3655,"29303":3656,"29304":3657,"29305":3658,"29306":3659,"29307":3660,"29308":3661,"29309":3662,"29310":3663,"29312":3664,"29313":3665,"29315":3666,"29316":3667,"29317":3668,"29318":3669,"29319":3670,"29320":3671,"29321":3672,"29323":3673,"29324":3674,"29325":3675,"29326":3676,"29327":3677,"29329":3678,"29330":3679,"29331":3680,"29332":3681,"29334":3682,"29335":3683,"29336":3684,"29337":3685,"29338":3686,"29339":3687,"29341":3688,"29342":3689,"29343":3690,"29344":3691,"29345":3692,"29346":3693,"29348":3694,"29350":3695,"29351":3696,"29354":3697,"29356":3698,"29357":3699,"29358":3700,"29360":3701,"29362":3702,"29364":3703,"29365":3704,"29366":3705,"29367":3706,"29368":3707,"29369":3708,"29373":3709,"29375":3710,"29377":3711,"29378":3712,"29379":3713,"29380":3714,"29382":3715,"29383":3716,"29385":3717,"29386":3718,"29387":3719,"29388":3720,"29389":3721,"29390":3722,"29391":3723,"29392":3724,"29393":3725,"29394":3726,"29395":3727,"29397":3728,"29399":3729,"29401":3730,"29403":3731,"29404":3732,"29405":3733,"29406":3734,"29407":3735,"29408":3736,"29409":3737,"29410":3738,"29412":3739,"29414":3740,"29415":3741,"29416":3742,"29421":3743,"29422":3744,"29423":3745,"29425":3746,"29426":3747,"29427":3748,"29428":3749,"29429":3750,"29430":3751,"29431":3752,"29432":3753,"29433":3754,"29434":3755,"29435":3756,"29436":3757,"29437":3758,"29438":3759,"29439":3760,"29442":3761,"29443":3762,"29444":3763,"29445":3764,"29446":3765,"29449":3766,"29450":3767,"29453":3768,"29454":3769,"29456":3770,"29457":3771,"29458":3772,"29460":3773,"29461":3774,"29462":3775,"29464":3776,"29465":3777,"29466":3778,"29467":3779,"29470":3780,"29472":3781,"29473":3782,"29476":3783,"29477":3784,"29478":3785,"29479":3786,"29480":3787,"29482":3788,"29486":3789,"29490":3790,"29491":3791,"29492":3792,"29494":3793,"29495":3794,"29496":3795,"29497":3796,"29499":3797,"29500":3798,"29503":3799,"29505":3800,"29506":3801,"29507":3802,"29508":3803,"29509":3804,"29510":3805,"29511":3806,"29513":3807,"29514":3808,"29516":3809,"29518":3810,"29519":3811,"29520":3812,"29521":3813,"29522":3814,"29523":3815,"29526":3816,"29527":3817,"29528":3818,"29529":3819,"29531":3820,"29533":3821,"29535":3822,"29537":3823,"29538":3824,"29539":3825,"29543":3826,"29544":3827,"29545":3828,"29547":3829,"29548":3830,"29549":3831,"29550":3832,"29551":3833,"29552":3834,"29553":3835,"29555":3836,"29556":3837,"29561":3838,"29562":3839,"29563":3840,"29565":3841,"29566":3842,"29568":3843,"29569":3844,"29570":3845,"29572":3846,"29573":3847,"29574":3848,"29575":3849,"29576":3850,"29577":3851,"29578":3852,"29579":3853,"29582":3854,"29583":3855,"29585":3856,"29586":3857,"29587":3858,"29589":3859,"29590":3860,"29591":3861,"29592":3862,"29593":3863,"29594":3864,"29595":3865,"29596":3866,"29597":3867,"29598":3868,"29600":3869,"29602":3870,"29603":3871,"29604":3872,"29605":3873,"29606":3874,"29607":3875,"29608":3876,"29609":3877,"29610":3878,"29611":3879,"29612":3880,"29613":3881,"29617":3882,"29620":3883,"29623":3884,"29624":3885,"29625":3886,"29626":3887,"29627":3888,"29632":3889,"29633":3890,"29634":3891,"29635":3892,"29637":3893,"29638":3894,"29639":3895,"29641":3896,"29643":3897,"29647":3898,"29648":3899,"29649":3900,"29650":3901,"29651":3902,"29652":3903,"29653":3904,"29654":3905,"29655":3906,"29656":3907,"29657":3908,"29658":3909,"29659":3910,"29661":3911,"29662":3912,"29663":3913,"29664":3914,"29665":3915,"29667":3916,"29668":3917,"29669":3918,"29670":3919,"29671":3920,"29672":3921,"29674":3922,"29675":3923,"29676":3924,"29678":3925,"29681":3926,"29682":3927,"29684":3928,"29686":3929,"29688":3930,"29689":3931,"29690":3932,"29691":3933,"29692":3934,"29693":3935,"29696":3936,"29697":3937,"29698":3938,"29700":3939,"29703":3940,"29704":3941,"29706":3942,"29707":3943,"29709":3944,"29710":3945,"29712":3946,"29713":3947,"29714":3948,"29715":3949,"29717":3950,"29718":3951,"29720":3952,"29723":3953,"29725":3954,"29726":3955,"29731":3956,"29733":3957,"29735":3958,"29739":3959,"29740":3960,"29741":3961,"29742":3962,"29743":3963,"29744":3964,"29745":3965,"29747":3966,"29748":3967,"29756":3968,"29758":3969,"29759":3970,"29761":3971,"29764":3972,"29770":3973,"29772":3974,"29773":3975,"29774":3976,"29775":3977,"29776":3978,"29777":3979,"29778":3980,"29779":3981,"29781":3982,"29782":3983,"29783":3984,"29785":3985,"29786":3986,"29787":3987,"29788":3988,"29789":3989,"29790":3990,"29791":3991,"29792":3992,"29793":3993,"29794":3994,"29795":3995,"29796":3996,"29797":3997,"29799":3998,"29800":3999,"29801":4000,"29802":4001,"29804":4002,"29805":4003,"29812":4004,"29814":4005,"29821":4006,"29824":4007,"29825":4008,"29827":4009,"29829":4010,"29830":4011,"29832":4012,"29833":4013,"29835":4014,"29838":4015,"29840":4016,"29841":4017,"29842":4018,"29843":4019,"29844":4020,"29845":4021,"29846":4022,"29847":4023,"29849":4024,"29850":4025,"29851":4026,"29852":4027,"29853":4028,"29854":4029,"29855":4030,"29856":4031,"29858":4032,"29861":4033,"29863":4034,"29867":4035,"29868":4036,"29869":4037,"29870":4038,"29871":4039,"29872":4040,"29874":4041,"29875":4042,"29876":4043,"29877":4044,"29878":4045,"29879":4046,"29880":4047,"29881":4048,"29882":4049,"29883":4050,"29884":4051,"29885":4052,"29886":4053,"29887":4054,"29888":4055,"29889":4056,"29890":4057,"29891":4058,"29893":4059,"29897":4060,"29899":4061,"29902":4062,"29904":4063,"29905":4064,"29906":4065,"29907":4066,"29909":4067,"29910":4068,"29911":4069,"29912":4070,"29914":4071,"29915":4072,"29916":4073,"29917":4074,"29918":4075,"29919":4076,"29921":4077,"29922":4078,"29923":4079,"29924":4080,"29925":4081,"29926":4082,"29927":4083,"29928":4084,"29929":4085,"29930":4086,"29931":4087,"29932":4088,"29933":4089,"29935":4090,"29936":4091,"29937":4092,"29940":4093,"29942":4094,"29943":4095,"29946":4096,"29947":4097,"29948":4098,"29949":4099,"29950":4100,"29951":4101,"29952":4102,"29954":4103,"29955":4104,"29956":4105,"29960":4106,"29961":4107,"29963":4108,"29964":4109,"29965":4110,"29966":4111,"29967":4112,"29969":4113,"29970":4114,"29973":4115,"29976":4116,"29977":4117,"29979":4118,"29983":4119,"29985":4120,"29986":4121,"29987":4122,"29988":4123,"29991":4124,"29992":4125,"29993":4126,"29996":4127,"30000":4128,"30005":4129,"30006":4130,"30010":4131,"30013":4132,"30015":4133,"30016":4134,"30018":4135,"30020":4136,"30021":4137,"30022":4138,"30023":4139,"30024":4140,"30028":4141,"30030":4142,"30032":4143,"30033":4144,"30034":4145,"30035":4146,"30036":4147,"30037":4148,"30038":4149,"30039":4150,"30040":4151,"30041":4152,"30043":4153,"30045":4154,"30046":4155,"30047":4156,"30048":4157,"30049":4158,"30051":4159,"30052":4160,"30053":4161,"30054":4162,"30055":4163,"30056":4164,"30057":4165,"30058":4166,"30059":4167,"30061":4168,"30062":4169,"30063":4170,"30064":4171,"30067":4172,"30069":4173,"30070":4174,"30071":4175,"30073":4176,"30074":4177,"30075":4178,"30078":4179,"30079":4180,"30081":4181,"30083":4182,"30085":4183,"30086":4184,"30087":4185,"30088":4186,"30089":4187,"30091":4188,"30092":4189,"30093":4190,"30094":4191,"30095":4192,"30098":4193,"30099":4194,"30100":4195,"30101":4196,"30102":4197,"30106":4198,"30109":4199,"30111":4200,"30112":4201,"30115":4202,"30118":4203,"30120":4204,"30121":4205,"30123":4206,"30124":4207,"30128":4208,"30132":4209,"30133":4210,"30135":4211,"30136":4212,"30138":4213,"30140":4214,"30143":4215,"30145":4216,"30146":4217,"30147":4218,"30149":4219,"30150":4220,"30151":4221,"30152":4222,"30153":4223,"30157":4224,"30158":4225,"30159":4226,"30161":4227,"30162":4228,"30164":4229,"30165":4230,"30166":4231,"30169":4232,"30170":4233,"30171":4234,"30172":4235,"30173":4236,"30175":4237,"30176":4238,"30178":4239,"30179":4240,"30180":4241,"30181":4242,"30183":4243,"30184":4244,"30187":4245,"30188":4246,"30189":4247,"30190":4248,"30191":4249,"30192":4250,"30193":4251,"30194":4252,"30195":4253,"30196":4254,"30199":4255,"30200":4256,"30202":4257,"30203":4258,"30204":4259,"30205":4260,"30206":4261,"30207":4262,"30208":4263,"30209":4264,"30210":4265,"30211":4266,"30212":4267,"30213":4268,"30214":4269,"30215":4270,"30217":4271,"30218":4272,"30219":4273,"30220":4274,"30222":4275,"30223":4276,"30225":4277,"30227":4278,"30230":4279,"30232":4280,"30234":4281,"30236":4282,"30237":4283,"30239":4284,"30241":4285,"30242":4286,"30246":4287,"30248":4288,"30249":4289,"30250":4290,"30253":4291,"30254":4292,"30256":4293,"30258":4294,"30259":4295,"30260":4296,"30261":4297,"30262":4298,"30264":4299,"30265":4300,"30267":4301,"30268":4302,"30269":4303,"30270":4304,"30271":4305,"30272":4306,"30273":4307,"30274":4308,"30275":4309,"30277":4310,"30278":4311,"30279":4312,"30281":4313,"30282":4314,"30283":4315,"30285":4316,"30286":4317,"30287":4318,"30288":4319,"30290":4320,"30291":4321,"30293":4322,"30296":4323,"30300":4324,"30301":4325,"30302":4326,"30303":4327,"30305":4328,"30306":4329,"30309":4330,"30311":4331,"30314":4332,"30317":4333,"30319":4334,"30327":4335,"30330":4336,"30333":4337,"30334":4338,"30335":4339,"30336":4340,"30338":4341,"30339":4342,"30340":4343,"30342":4344,"30343":4345,"30344":4346,"30345":4347,"30346":4348,"30347":4349,"30348":4350,"30349":4351,"30350":4352,"30351":4353,"30352":4354,"30355":4355,"30356":4356,"30357":4357,"30358":4358,"30359":4359,"30360":4360,"30363":4361,"30364":4362,"30365":4363,"30366":4364,"30367":4365,"30368":4366,"30369":4367,"30370":4368,"30371":4369,"30372":4370,"30373":4371,"30374":4372,"30375":4373,"30376":4374,"30377":4375,"30378":4376,"30379":4377,"30380":4378,"30381":4379,"30382":4380,"30383":4381,"30384":4382,"30386":4383,"30387":4384,"30390":4385,"30391":4386,"30394":4387,"30395":4388,"30396":4389,"30402":4390,"30403":4391,"30404":4392,"30405":4393,"30406":4394,"30407":4395,"30408":4396,"30409":4397,"30410":4398,"30411":4399,"30412":4400,"30414":4401,"30415":4402,"30416":4403,"30419":4404,"30421":4405,"30422":4406,"30423":4407,"30424":4408,"30425":4409,"30426":4410,"30427":4411,"30428":4412,"30429":4413,"30431":4414,"30434":4415,"30435":4416,"30440":4417,"30441":4418,"30445":4419,"30447":4420,"30448":4421,"30449":4422,"30450":4423,"30451":4424,"30452":4425,"30453":4426,"30454":4427,"30455":4428,"30456":4429,"30458":4430,"30459":4431,"30461":4432,"30463":4433,"30464":4434,"30465":4435,"30466":4436,"30467":4437,"30468":4438,"30469":4439,"30471":4440,"30473":4441,"30475":4442,"30479":4443,"30480":4444,"30481":4445,"30482":4446,"30483":4447,"30484":4448,"30485":4449,"30487":4450,"30488":4451,"30489":4452,"30492":4453,"30493":4454,"30494":4455,"30496":4456,"30499":4457,"30500":4458,"30504":4459,"30505":4460,"30506":4461,"30507":4462,"30508":4463,"30510":4464,"30511":4465,"30513":4466,"30516":4467,"30518":4468,"30524":4469,"30526":4470,"30527":4471,"30528":4472,"30530":4473,"30532":4474,"30533":4475,"30534":4476,"30535":4477,"30538":4478,"30539":4479,"30540":4480,"30541":4481,"30542":4482,"30544":4483,"30545":4484,"30546":4485,"30547":4486,"30548":4487,"30549":4488,"30550":4489,"30551":4490,"30552":4491,"30553":4492,"30554":4493,"30555":4494,"30557":4495,"30558":4496,"30560":4497,"30561":4498,"30563":4499,"30564":4500,"30565":4501,"30566":4502,"30569":4503,"30571":4504,"30573":4505,"30574":4506,"30576":4507,"30577":4508,"30579":4509,"30584":4510,"30585":4511,"30587":4512,"30589":4513,"30593":4514,"30595":4515,"30597":4516,"30603":4517,"30604":4518,"30605":4519,"30606":4520,"30607":4521,"30608":4522,"30609":4523,"30610":4524,"30611":4525,"30612":4526,"30614":4527,"30616":4528,"30617":4529,"30618":4530,"30619":4531,"30620":4532,"30622":4533,"30623":4534,"30624":4535,"30627":4536,"30628":4537,"30629":4538,"30633":4539,"30635":4540,"30638":4541,"30639":4542,"30640":4543,"30642":4544,"30643":4545,"30644":4546,"30645":4547,"30647":4548,"30648":4549,"30649":4550,"30650":4551,"30651":4552,"30652":4553,"30655":4554,"30657":4555,"30658":4556,"30660":4557,"30661":4558,"30662":4559,"30663":4560,"30664":4561,"30665":4562,"30666":4563,"30668":4564,"30669":4565,"30670":4566,"30672":4567,"30673":4568,"30674":4569,"30675":4570,"30676":4571,"30677":4572,"30678":4573,"30679":4574,"30680":4575,"30681":4576,"30682":4577,"30683":4578,"30684":4579,"30686":4580,"30687":4581,"30689":4582,"30690":4583,"30691":4584,"30693":4585,"30694":4586,"30695":4587,"30696":4588,"30697":4589,"30698":4590,"30699":4591,"30701":4592,"30702":4593,"30703":4594,"30704":4595,"30705":4596,"30706":4597,"30707":4598,"30708":4599,"30711":4600,"30712":4601,"30713":4602,"30714":4603,"30715":4604,"30717":4605,"30718":4606,"30719":4607,"30720":4608,"30721":4609,"30722":4610,"30723":4611,"30724":4612,"30725":4613,"30726":4614,"30727":4615,"30728":4616,"30729":4617,"30730":4618,"30731":4619,"30732":4620,"30733":4621,"30734":4622,"30735":4623,"30737":4624,"30738":4625,"30740":4626,"30741":4627,"30742":4628,"30743":4629,"30746":4630,"30748":4631,"30754":4632,"30756":4633,"30757":4634,"30758":4635,"30760":4636,"30761":4637,"30762":4638,"30765":4639,"30766":4640,"30767":4641,"30770":4642,"30773":4643,"30774":4644,"30775":4645,"30776":4646,"30778":4647,"30779":4648,"30780":4649,"30781":4650,"30782":4651,"30783":4652,"30785":4653,"30786":4654,"30788":4655,"30789":4656,"30790":4657,"30791":4658,"30792":4659,"30793":4660,"30794":4661,"30795":4662,"30796":4663,"30797":4664,"30798":4665,"30800":4666,"30801":4667,"30803":4668,"30804":4669,"30805":4670,"30806":4671,"30808":4672,"30811":4673,"30813":4674,"30814":4675,"30816":4676,"30820":4677,"30821":4678,"30823":4679,"30825":4680,"30826":4681,"30827":4682,"30828":4683,"30829":4684,"30830":4685,"30831":4686,"30832":4687,"30836":4688,"30838":4689,"30841":4690,"30842":4691,"30844":4692,"30845":4693,"30846":4694,"30847":4695,"30848":4696,"30849":4697,"30850":4698,"30851":4699,"30852":4700,"30853":4701,"30854":4702,"30856":4703,"30857":4704,"30858":4705,"30859":4706,"30860":4707,"30861":4708,"30862":4709,"30863":4710,"30865":4711,"30867":4712,"30868":4713,"30872":4714,"30875":4715,"30876":4716,"30877":4717,"30878":4718,"30880":4719,"30881":4720,"30882":4721,"30883":4722,"30885":4723,"30886":4724,"30887":4725,"30889":4726,"30890":4727,"30892":4728,"30893":4729,"30894":4730,"30896":4731,"30899":4732,"30902":4733,"30903":4734,"30908":4735,"30909":4736,"30910":4737,"30911":4738,"30913":4739,"30914":4740,"30917":4741,"30921":4742,"30922":4743,"30923":4744,"30927":4745,"30931":4746,"30934":4747,"30935":4748,"30937":4749,"30938":4750,"30940":4751,"30941":4752,"30942":4753,"30943":4754,"30945":4755,"30946":4756,"30947":4757,"30948":4758,"30950":4759,"30953":4760,"30954":4761,"30955":4762,"30956":4763,"30957":4764,"30958":4765,"30959":4766,"30960":4767,"30962":4768,"30963":4769,"30964":4770,"30965":4771,"30966":4772,"30967":4773,"30969":4774,"30970":4775,"30971":4776,"30972":4777,"30973":4778,"30974":4779,"30975":4780,"30976":4781,"30977":4782,"30978":4783,"30979":4784,"30980":4785,"30983":4786,"30984":4787,"30985":4788,"30986":4789,"30987":4790,"30988":4791,"30990":4792,"30991":4793,"30993":4794,"30994":4795,"30995":4796,"30996":4797,"30997":4798,"30998":4799,"31001":4800,"31002":4801,"31004":4802,"31005":4803,"31006":4804,"31007":4805,"31008":4806,"31009":4807,"31010":4808,"31011":4809,"31012":4810,"31013":4811,"31014":4812,"31015":4813,"31016":4814,"31017":4815,"31018":4816,"31020":4817,"31021":4818,"31022":4819,"31023":4820,"31025":4821,"31026":4822,"31028":4823,"31029":4824,"31031":4825,"31032":4826,"31033":4827,"31034":4828,"31035":4829,"31037":4830,"31038":4831,"31040":4832,"31041":4833,"31042":4834,"31044":4835,"31045":4836,"31047":4837,"31050":4838,"31051":4839,"31052":4840,"31053":4841,"31054":4842,"31055":4843,"31056":4844,"31058":4845,"31059":4846,"31060":4847,"31062":4848,"31064":4849,"31065":4850,"31067":4851,"31068":4852,"31070":4853,"31071":4854,"31073":4855,"31075":4856,"31076":4857,"31077":4858,"31080":4859,"31081":4860,"31083":4861,"31084":4862,"31085":4863,"31086":4864,"31087":4865,"31088":4866,"31089":4867,"31090":4868,"31091":4869,"31092":4870,"31095":4871,"31096":4872,"31097":4873,"31099":4874,"31100":4875,"31101":4876,"31102":4877,"31104":4878,"31106":4879,"31107":4880,"31108":4881,"31109":4882,"31110":4883,"31111":4884,"31112":4885,"31113":4886,"31115":4887,"31116":4888,"31117":4889,"31118":4890,"31120":4891,"31121":4892,"31122":4893,"31123":4894,"31125":4895,"31126":4896,"31127":4897,"31128":4898,"31129":4899,"31130":4900,"31131":4901,"31132":4902,"31133":4903,"31135":4904,"31136":4905,"31140":4906,"31141":4907,"31142":4908,"31143":4909,"31144":4910,"31147":4911,"31148":4912,"31149":4913,"31150":4914,"31151":4915,"31152":4916,"31153":4917,"31154":4918,"31157":4919,"31159":4920,"31161":4921,"31163":4922,"31164":4923,"31165":4924,"31166":4925,"31167":4926,"31168":4927,"31170":4928,"31171":4929,"31172":4930,"31175":4931,"31177":4932,"31179":4933,"31181":4934,"31182":4935,"31183":4936,"31185":4937,"31188":4938,"31189":4939,"31190":4940,"31191":4941,"31193":4942,"31194":4943,"31195":4944,"31196":4945,"31199":4946,"31200":4947,"31201":4948,"31203":4949,"31204":4950,"31205":4951,"31210":4952,"31211":4953,"31214":4954,"31215":4955,"31221":4956,"31223":4957,"31225":4958,"31228":4959,"31229":4960,"31230":4961,"31231":4962,"31232":4963,"31233":4964,"31234":4965,"31235":4966,"31237":4967,"31238":4968,"31239":4969,"31244":4970,"31245":4971,"31246":4972,"31247":4973,"31249":4974,"31250":4975,"31251":4976,"31253":4977,"31254":4978,"31256":4979,"31258":4980,"31259":4981,"31260":4982,"31262":4983,"31263":4984,"31264":4985,"31265":4986,"31267":4987,"31268":4988,"31270":4989,"31271":4990,"31272":4991,"31273":4992,"31277":4993,"31278":4994,"31279":4995,"31282":4996,"31283":4997,"31284":4998,"31286":4999,"31288":5000,"31289":5001,"31291":5002,"31292":5003,"31295":5004,"31299":5005,"31300":5006,"31301":5007,"31302":5008,"31305":5009,"31308":5010,"31309":5011,"31310":5012,"31311":5013,"31312":5014,"31314":5015,"31318":5016,"31319":5017,"31321":5018,"31328":5019,"31329":5020,"31332":5021,"31333":5022,"31334":5023,"31335":5024,"31336":5025,"31337":5026,"31338":5027,"31339":5028,"31341":5029,"31342":5030,"31343":5031,"31344":5032,"31345":5033,"31347":5034,"31348":5035,"31349":5036,"31350":5037,"31351":5038,"31353":5039,"31354":5040,"31355":5041,"31356":5042,"31357":5043,"31358":5044,"31359":5045,"31361":5046,"31362":5047,"31363":5048,"31364":5049,"31365":5050,"31366":5051,"31367":5052,"31368":5053,"31370":5054,"31371":5055,"31382":5056,"31383":5057,"31384":5058,"31385":5059,"31386":5060,"31388":5061,"31389":5062,"31390":5063,"31393":5064,"31394":5065,"31396":5066,"31398":5067,"31399":5068,"31400":5069,"31401":5070,"31402":5071,"31403":5072,"31404":5073,"31405":5074,"31406":5075,"31407":5076,"31408":5077,"31410":5078,"31411":5079,"31412":5080,"31413":5081,"31414":5082,"31415":5083,"31416":5084,"31418":5085,"31423":5086,"31430":5087,"31431":5088,"31432":5089,"31433":5090,"31434":5091,"31436":5092,"31438":5093,"31439":5094,"31440":5095,"31441":5096,"31442":5097,"31443":5098,"31444":5099,"31445":5100,"31447":5101,"31449":5102,"31450":5103,"31451":5104,"31453":5105,"31454":5106,"31455":5107,"31456":5108,"31458":5109,"31459":5110,"31460":5111,"31462":5112,"31463":5113,"31465":5114,"31466":5115,"31468":5116,"31469":5117,"31470":5118,"31471":5119,"31472":5120,"31473":5121,"31475":5122,"31477":5123,"31478":5124,"31479":5125,"31482":5126,"31491":5127,"31495":5128,"31502":5129,"31504":5130,"31505":5131,"31506":5132,"31508":5133,"31509":5134,"31510":5135,"31511":5136,"31512":5137,"31513":5138,"31515":5139,"31516":5140,"31518":5141,"31519":5142,"31520":5143,"31522":5144,"31523":5145,"31524":5146,"31525":5147,"31529":5148,"31531":5149,"31532":5150,"31534":5151,"31535":5152,"31537":5153,"31538":5154,"31539":5155,"31540":5156,"31541":5157,"31542":5158,"31543":5159,"31544":5160,"31545":5161,"31547":5162,"31548":5163,"31550":5164,"31551":5165,"31552":5166,"31553":5167,"31554":5168,"31555":5169,"31557":5170,"31558":5171,"31559":5172,"31560":5173,"31561":5174,"31562":5175,"31564":5176,"31565":5177,"31566":5178,"31568":5179,"31569":5180,"31572":5181,"31573":5182,"31575":5183,"31576":5184,"31577":5185,"31578":5186,"31579":5187,"31580":5188,"31582":5189,"31583":5190,"31586":5191,"31587":5192,"31589":5193,"31590":5194,"31591":5195,"31592":5196,"31593":5197,"31594":5198,"31595":5199,"31597":5200,"31599":5201,"31601":5202,"31603":5203,"31604":5204,"31605":5205,"31608":5206,"31610":5207,"31612":5208,"31613":5209,"31614":5210,"31615":5211,"31617":5212,"31619":5213,"31621":5214,"31622":5215,"31625":5216,"31627":5217,"31631":5218,"31634":5219,"31635":5220,"31637":5221,"31639":5222,"31641":5223,"31642":5224,"31643":5225,"31644":5226,"31645":5227,"31647":5228,"31648":5229,"31650":5230,"31652":5231,"31656":5232,"31657":5233,"31658":5234,"31659":5235,"31660":5236,"31661":5237,"31662":5238,"31663":5239,"31664":5240,"31665":5241,"31666":5242,"31667":5243,"31668":5244,"31670":5245,"31671":5246,"31672":5247,"31673":5248,"31674":5249,"31676":5250,"31677":5251,"31678":5252,"31679":5253,"31680":5254,"31681":5255,"31682":5256,"31683":5257,"31684":5258,"31689":5259,"31690":5260,"31691":5261,"31693":5262,"31695":5263,"31696":5264,"31697":5265,"31700":5266,"31702":5267,"31704":5268,"31706":5269,"31709":5270,"31710":5271,"31713":5272,"31715":5273,"31720":5274,"31721":5275,"31723":5276,"31726":5277,"31728":5278,"31729":5279,"31730":5280,"31731":5281,"31732":5282,"31733":5283,"31735":5284,"31737":5285,"31739":5286,"31743":5287,"31744":5288,"31746":5289,"31749":5290,"31752":5291,"31756":5292,"31757":5293,"31759":5294,"31763":5295,"31767":5296,"31768":5297,"31769":5298,"31770":5299,"31771":5300,"31773":5301,"31774":5302,"31776":5303,"31778":5304,"31780":5305,"31781":5306,"31782":5307,"31783":5308,"31786":5309,"31788":5310,"31789":5311,"31790":5312,"31791":5313,"31792":5314,"31793":5315,"31794":5316,"31795":5317,"31797":5318,"31799":5319,"31800":5320,"31801":5321,"31802":5322,"31803":5323,"31804":5324,"31805":5325,"31806":5326,"31807":5327,"31808":5328,"31809":5329,"31810":5330,"31811":5331,"31812":5332,"31813":5333,"31814":5334,"31816":5335,"31817":5336,"31821":5337,"31822":5338,"31823":5339,"31825":5340,"31826":5341,"31827":5342,"31829":5343,"31830":5344,"31832":5345,"31834":5346,"31836":5347,"31837":5348,"31838":5349,"31840":5350,"31843":5351,"31845":5352,"31846":5353,"31848":5354,"31850":5355,"31851":5356,"31852":5357,"31853":5358,"31854":5359,"31856":5360,"31860":5361,"31861":5362,"31863":5363,"31864":5364,"31865":5365,"31866":5366,"31867":5367,"31868":5368,"31870":5369,"31871":5370,"31872":5371,"31873":5372,"31874":5373,"31877":5374,"31878":5375,"31885":5376,"31887":5377,"31888":5378,"31889":5379,"31891":5380,"31892":5381,"31894":5382,"31902":5383,"31903":5384,"31910":5385,"31912":5386,"31917":5387,"31918":5388,"31922":5389,"31923":5390,"31924":5391,"31927":5392,"31929":5393,"31930":5394,"31932":5395,"31936":5396,"31938":5397,"31943":5398,"31946":5399,"31948":5400,"31949":5401,"31951":5402,"31958":5403,"31963":5404,"31967":5405,"31968":5406,"31969":5407,"31971":5408,"31972":5409,"31974":5410,"31976":5411,"31978":5412,"31980":5413,"31981":5414,"31984":5415,"31987":5416,"31988":5417,"31989":5418,"31995":5419,"31996":5420,"31999":5421,"32006":5422,"32007":5423,"32009":5424,"32010":5425,"32014":5426,"32015":5427,"32016":5428,"32018":5429,"32019":5430,"32022":5431,"32023":5432,"32024":5433,"32025":5434,"32027":5435,"32028":5436,"32029":5437,"32030":5438,"32031":5439,"32032":5440,"32033":5441,"32034":5442,"32035":5443,"32036":5444,"32037":5445,"32039":5446,"32040":5447,"32041":5448,"32042":5449,"32043":5450,"32044":5451,"32046":5452,"32047":5453,"32048":5454,"32049":5455,"32051":5456,"32052":5457,"32053":5458,"32054":5459,"32056":5460,"32057":5461,"32058":5462,"32061":5463,"32062":5464,"32063":5465,"32064":5466,"32065":5467,"32068":5468,"32069":5469,"32070":5470,"32071":5471,"32072":5472,"32073":5473,"32074":5474,"32075":5475,"32076":5476,"32077":5477,"32078":5478,"32079":5479,"32080":5480,"32081":5481,"32082":5482,"32083":5483,"32084":5484,"32085":5485,"32087":5486,"32088":5487,"32089":5488,"32090":5489,"32091":5490,"32092":5491,"32093":5492,"32094":5493,"32095":5494,"32096":5495,"32097":5496,"32099":5497,"32100":5498,"32101":5499,"32102":5500,"32103":5501,"32104":5502,"32105":5503,"32106":5504,"32107":5505,"32108":5506,"32109":5507,"32111":5508,"32114":5509,"32115":5510,"32116":5511,"32117":5512,"32119":5513,"32121":5514,"32122":5515,"32123":5516,"32124":5517,"32125":5518,"32126":5519,"32127":5520,"32128":5521,"32129":5522,"32130":5523,"32132":5524,"32133":5525,"32134":5526,"32135":5527,"32138":5528,"32141":5529,"32142":5530,"32143":5531,"32145":5532,"32146":5533,"32149":5534,"32151":5535,"32152":5536,"32153":5537,"32154":5538,"32155":5539,"32156":5540,"32157":5541,"32158":5542,"32159":5543,"32161":5544,"32163":5545,"32164":5546,"32165":5547,"32168":5548,"32169":5549,"32170":5550,"32172":5551,"32174":5552,"32175":5553,"32176":5554,"32178":5555,"32179":5556,"32180":5557,"32181":5558,"32182":5559,"32183":5560,"32184":5561,"32186":5562,"32192":5563,"32194":5564,"32195":5565,"32196":5566,"32197":5567,"32198":5568,"32199":5569,"32200":5570,"32201":5571,"32202":5572,"32203":5573,"32204":5574,"32205":5575,"32206":5576,"32208":5577,"32209":5578,"32210":5579,"32211":5580,"32212":5581,"32213":5582,"32215":5583,"32216":5584,"32218":5585,"32221":5586,"32222":5587,"32225":5588,"32227":5589,"32231":5590,"32232":5591,"32233":5592,"32235":5593,"32236":5594,"32238":5595,"32241":5596,"32242":5597,"32250":5598,"32253":5599,"32255":5600,"32256":5601,"32257":5602,"32258":5603,"32260":5604,"32261":5605,"32262":5606,"32263":5607,"32264":5608,"32265":5609,"32267":5610,"32268":5611,"32269":5612,"32270":5613,"32271":5614,"32272":5615,"32275":5616,"32276":5617,"32277":5618,"32279":5619,"32280":5620,"32281":5621,"32283":5622,"32285":5623,"32287":5624,"32288":5625,"32289":5626,"32291":5627,"32292":5628,"32293":5629,"32294":5630,"32295":5631,"32296":5632,"32297":5633,"32298":5634,"32299":5635,"32300":5636,"32302":5637,"32304":5638,"32306":5639,"32307":5640,"32309":5641,"32310":5642,"32311":5643,"32312":5644,"32313":5645,"32315":5646,"32316":5647,"32317":5648,"32320":5649,"32322":5650,"32325":5651,"32326":5652,"32331":5653,"32333":5654,"32334":5655,"32335":5656,"32337":5657,"32340":5658,"32341":5659,"32342":5660,"32343":5661,"32344":5662,"32345":5663,"32346":5664,"32347":5665,"32348":5666,"32350":5667,"32351":5668,"32352":5669,"32353":5670,"32355":5671,"32356":5672,"32358":5673,"32359":5674,"32360":5675,"32362":5676,"32363":5677,"32365":5678,"32368":5679,"32369":5680,"32370":5681,"32372":5682,"32374":5683,"32375":5684,"32376":5685,"32378":5686,"32380":5687,"32382":5688,"32383":5689,"32384":5690,"32387":5691,"32388":5692,"32389":5693,"32390":5694,"32391":5695,"32394":5696,"32395":5697,"32396":5698,"32398":5699,"32400":5700,"32402":5701,"32412":5702,"32413":5703,"32414":5704,"32416":5705,"32418":5706,"32419":5707,"32420":5708,"32421":5709,"32423":5710,"32425":5711,"32427":5712,"32428":5713,"32429":5714,"32430":5715,"32431":5716,"32432":5717,"32433":5718,"32436":5719,"32439":5720,"32440":5721,"32441":5722,"32442":5723,"32443":5724,"32444":5725,"32446":5726,"32447":5727,"32448":5728,"32449":5729,"32450":5730,"32456":5731,"32458":5732,"32459":5733,"32460":5734,"32461":5735,"32462":5736,"32463":5737,"32472":5738,"32473":5739,"32474":5740,"32476":5741,"32477":5742,"32479":5743,"32480":5744,"32482":5745,"32483":5746,"32484":5747,"32485":5748,"32486":5749,"32487":5750,"32488":5751,"32489":5752,"32493":5753,"32494":5754,"32497":5755,"32499":5756,"32501":5757,"32502":5758,"32503":5759,"32504":5760,"32505":5761,"32506":5762,"32508":5763,"32509":5764,"32510":5765,"32511":5766,"32512":5767,"32513":5768,"32519":5769,"32520":5770,"32521":5771,"32522":5772,"32523":5773,"32524":5774,"32526":5775,"32527":5776,"32529":5777,"32530":5778,"32531":5779,"32532":5780,"32534":5781,"32535":5782,"32537":5783,"32538":5784,"32539":5785,"32540":5786,"32541":5787,"32542":5788,"32543":5789,"32544":5790,"32545":5791,"32547":5792,"32548":5793,"32549":5794,"32551":5795,"32552":5796,"32553":5797,"32555":5798,"32557":5799,"32558":5800,"32559":5801,"32560":5802,"32562":5803,"32564":5804,"32565":5805,"32566":5806,"32567":5807,"32568":5808,"32571":5809,"32574":5810,"32576":5811,"32577":5812,"32579":5813,"32580":5814,"32583":5815,"32585":5816,"32586":5817,"32588":5818,"32590":5819,"32593":5820,"32594":5821,"32595":5822,"32597":5823,"32598":5824,"32599":5825,"32602":5826,"32603":5827,"32606":5828,"32610":5829,"32612":5830,"32616":5831,"32619":5832,"32620":5833,"32621":5834,"32622":5835,"32624":5836,"32625":5837,"32626":5838,"32627":5839,"32628":5840,"32629":5841,"32630":5842,"32632":5843,"32633":5844,"32634":5845,"32637":5846,"32639":5847,"32640":5848,"32641":5849,"32644":5850,"32645":5851,"32646":5852,"32647":5853,"32648":5854,"32649":5855,"32650":5856,"32652":5857,"32653":5858,"32655":5859,"32658":5860,"32659":5861,"32660":5862,"32662":5863,"32663":5864,"32664":5865,"32665":5866,"32667":5867,"32668":5868,"32669":5869,"32670":5870,"32671":5871,"32672":5872,"32674":5873,"32676":5874,"32677":5875,"32678":5876,"32680":5877,"32682":5878,"32683":5879,"32684":5880,"32685":5881,"32686":5882,"32689":5883,"32692":5884,"32693":5885,"32694":5886,"32696":5887,"32697":5888,"32698":5889,"32701":5890,"32702":5891,"32703":5892,"32704":5893,"32705":5894,"32707":5895,"32708":5896,"32710":5897,"32711":5898,"32712":5899,"32713":5900,"32715":5901,"32717":5902,"32719":5903,"32720":5904,"32721":5905,"32722":5906,"32723":5907,"32725":5908,"32726":5909,"32727":5910,"32729":5911,"32731":5912,"32732":5913,"32733":5914,"32734":5915,"32735":5916,"32736":5917,"32737":5918,"32738":5919,"32741":5920,"32742":5921,"32743":5922,"32744":5923,"32745":5924,"32746":5925,"32747":5926,"32748":5927,"32749":5928,"32750":5929,"32752":5930,"32753":5931,"32754":5932,"32755":5933,"32756":5934,"32757":5935,"32758":5936,"32760":5937,"32761":5938,"32762":5939,"32763":5940,"32765":5941,"32766":5942,"32767":5943,"32769":5944,"32770":5945,"32771":5946,"32772":5947,"32773":5948,"32774":5949,"32775":5950,"32776":5951,"32777":5952,"32778":5953,"32779":5954,"32781":5955,"32782":5956,"32783":5957,"32784":5958,"32785":5959,"32786":5960,"32787":5961,"32789":5962,"32791":5963,"32792":5964,"32794":5965,"32795":5966,"32796":5967,"32797":5968,"32798":5969,"32799":5970,"32800":5971,"32801":5972,"32802":5973,"32804":5974,"32805":5975,"32806":5976,"32807":5977,"32808":5978,"32809":5979,"32810":5980,"32811":5981,"32812":5982,"32814":5983,"32816":5984,"32817":5985,"32818":5986,"32819":5987,"32820":5988,"32822":5989,"32823":5990,"32824":5991,"32825":5992,"32826":5993,"32827":5994,"32829":5995,"32830":5996,"32831":5997,"32832":5998,"32833":5999,"32834":6000,"32835":6001,"32836":6002,"32837":6003,"32840":6004,"32841":6005,"32842":6006,"32843":6007,"32844":6008,"32846":6009,"32849":6010,"32850":6011,"32851":6012,"32853":6013,"32854":6014,"32855":6015,"32856":6016,"32858":6017,"32859":6018,"32860":6019,"32864":6020,"32869":6021,"32870":6022,"32871":6023,"32872":6024,"32873":6025,"32874":6026,"32875":6027,"32877":6028,"32878":6029,"32879":6030,"32880":6031,"32881":6032,"32882":6033,"32883":6034,"32886":6035,"32887":6036,"32888":6037,"32889":6038,"32890":6039,"32894":6040,"32896":6041,"32897":6042,"32898":6043,"32899":6044,"32900":6045,"32904":6046,"32905":6047,"32906":6048,"32908":6049,"32909":6050,"32910":6051,"32911":6052,"32912":6053,"32913":6054,"32914":6055,"32915":6056,"32916":6057,"32917":6058,"32919":6059,"32921":6060,"32922":6061,"32923":6062,"32924":6063,"32925":6064,"32926":6065,"32927":6066,"32929":6067,"32930":6068,"32931":6069,"32932":6070,"32935":6071,"32937":6072,"32938":6073,"32940":6074,"32941":6075,"32942":6076,"32943":6077,"32944":6078,"32945":6079,"32946":6080,"32947":6081,"32948":6082,"32949":6083,"32950":6084,"32951":6085,"32952":6086,"32953":6087,"32954":6088,"32955":6089,"32957":6090,"32958":6091,"32959":6092,"32962":6093,"32964":6094,"32965":6095,"32966":6096,"32967":6097,"32968":6098,"32969":6099,"32971":6100,"32973":6101,"32974":6102,"32979":6103,"32988":6104,"32989":6105,"32992":6106,"32994":6107,"32997":6108,"32998":6109,"32999":6110,"33002":6111,"33003":6112,"33004":6113,"33005":6114,"33010":6115,"33011":6116,"33012":6117,"33013":6118,"33014":6119,"33015":6120,"33017":6121,"33021":6122,"33023":6123,"33024":6124,"33025":6125,"33028":6126,"33029":6127,"33033":6128,"33034":6129,"33035":6130,"33038":6131,"33040":6132,"33041":6133,"33042":6134,"33043":6135,"33044":6136,"33045":6137,"33046":6138,"33047":6139,"33049":6140,"33052":6141,"33053":6142,"33054":6143,"33055":6144,"33056":6145,"33057":6146,"33058":6147,"33059":6148,"33060":6149,"33062":6150,"33063":6151,"33065":6152,"33067":6153,"33068":6154,"33069":6155,"33072":6156,"33073":6157,"33074":6158,"33076":6159,"33077":6160,"33078":6161,"33079":6162,"33081":6163,"33083":6164,"33085":6165,"33086":6166,"33087":6167,"33089":6168,"33090":6169,"33092":6170,"33094":6171,"33096":6172,"33097":6173,"33098":6174,"33099":6175,"33100":6176,"33101":6177,"33102":6178,"33104":6179,"33106":6180,"33107":6181,"33110":6182,"33111":6183,"33116":6184,"33119":6185,"33120":6186,"33121":6187,"33126":6188,"33129":6189,"33132":6190,"33133":6191,"33134":6192,"33135":6193,"33136":6194,"33137":6195,"33138":6196,"33140":6197,"33141":6198,"33142":6199,"33143":6200,"33145":6201,"33146":6202,"33147":6203,"33149":6204,"33150":6205,"33151":6206,"33153":6207,"33154":6208,"33155":6209,"33157":6210,"33158":6211,"33159":6212,"33160":6213,"33163":6214,"33164":6215,"33165":6216,"33166":6217,"33167":6218,"33171":6219,"33173":6220,"33176":6221,"33179":6222,"33183":6223,"33185":6224,"33187":6225,"33189":6226,"33192":6227,"33193":6228,"33194":6229,"33196":6230,"33197":6231,"33198":6232,"33199":6233,"33200":6234,"33201":6235,"33202":6236,"33203":6237,"33204":6238,"33206":6239,"33207":6240,"33209":6241,"33210":6242,"33211":6243,"33214":6244,"33216":6245,"33217":6246,"33219":6247,"33220":6248,"33221":6249,"33222":6250,"33223":6251,"33224":6252,"33226":6253,"33227":6254,"33228":6255,"33229":6256,"33230":6257,"33231":6258,"33232":6259,"33233":6260,"33235":6261,"33236":6262,"33237":6263,"33239":6264,"33241":6265,"33242":6266,"33243":6267,"33244":6268,"33245":6269,"33246":6270,"33248":6271,"33249":6272,"33251":6273,"33252":6274,"33253":6275,"33257":6276,"33258":6277,"33260":6278,"33268":6279,"33270":6280,"33271":6281,"33274":6282,"33275":6283,"33276":6284,"33279":6285,"33280":6286,"33283":6287,"33284":6288,"33285":6289,"33287":6290,"33288":6291,"33289":6292,"33290":6293,"33292":6294,"33294":6295,"33295":6296,"33296":6297,"33298":6298,"33300":6299,"33301":6300,"33302":6301,"33303":6302,"33304":6303,"33305":6304,"33307":6305,"33308":6306,"33309":6307,"33312":6308,"33313":6309,"33314":6310,"33315":6311,"33316":6312,"33317":6313,"33318":6314,"33319":6315,"33320":6316,"33321":6317,"33324":6318,"33326":6319,"33328":6320,"33329":6321,"33331":6322,"33332":6323,"33333":6324,"33334":6325,"33335":6326,"33338":6327,"33339":6328,"33340":6329,"33341":6330,"33342":6331,"33343":6332,"33345":6333,"33346":6334,"33347":6335,"33348":6336,"33350":6337,"33352":6338,"33355":6339,"33356":6340,"33357":6341,"33358":6342,"33359":6343,"33362":6344,"33363":6345,"33365":6346,"33366":6347,"33367":6348,"33369":6349,"33370":6350,"33373":6351,"33374":6352,"33376":6353,"33377":6354,"33379":6355,"33384":6356,"33388":6357,"33389":6358,"33390":6359,"33391":6360,"33392":6361,"33393":6362,"33394":6363,"33396":6364,"33397":6365,"33399":6366,"33401":6367,"33402":6368,"33405":6369,"33406":6370,"33407":6371,"33421":6372,"33422":6373,"33423":6374,"33424":6375,"33425":6376,"33427":6377,"33429":6378,"33431":6379,"33432":6380,"33436":6381,"33441":6382,"33442":6383,"33444":6384,"33445":6385,"33446":6386,"33449":6387,"33452":6388,"33453":6389,"33455":6390,"33456":6391,"33457":6392,"33460":6393,"33461":6394,"33462":6395,"33463":6396,"33464":6397,"33465":6398,"33466":6399,"33467":6400,"33469":6401,"33470":6402,"33471":6403,"33473":6404,"33474":6405,"33476":6406,"33478":6407,"33480":6408,"33482":6409,"33483":6410,"33486":6411,"33487":6412,"33488":6413,"33489":6414,"33490":6415,"33492":6416,"33498":6417,"33500":6418,"33502":6419,"33504":6420,"33505":6421,"33507":6422,"33508":6423,"33509":6424,"33510":6425,"33511":6426,"33513":6427,"33514":6428,"33515":6429,"33517":6430,"33518":6431,"33519":6432,"33520":6433,"33522":6434,"33523":6435,"33526":6436,"33528":6437,"33529":6438,"33530":6439,"33532":6440,"33533":6441,"33535":6442,"33536":6443,"33540":6444,"33541":6445,"33543":6446,"33544":6447,"33545":6448,"33546":6449,"33548":6450,"33550":6451,"33551":6452,"33553":6453,"33555":6454,"33557":6455,"33558":6456,"33559":6457,"33562":6458,"33564":6459,"33566":6460,"33567":6461,"33571":6462,"33573":6463,"33574":6464,"33578":6465,"33580":6466,"33583":6467,"33585":6468,"33586":6469,"33587":6470,"33589":6471,"33590":6472,"33591":6473,"33592":6474,"33593":6475,"33594":6476,"33595":6477,"33596":6478,"33598":6479,"33599":6480,"33600":6481,"33601":6482,"33602":6483,"33603":6484,"33605":6485,"33607":6486,"33608":6487,"33609":6488,"33610":6489,"33611":6490,"33613":6491,"33615":6492,"33616":6493,"33621":6494,"33624":6495,"33625":6496,"33627":6497,"33628":6498,"33629":6499,"33630":6500,"33631":6501,"33634":6502,"33635":6503,"33637":6504,"33638":6505,"33639":6506,"33641":6507,"33643":6508,"33645":6509,"33646":6510,"33647":6511,"33648":6512,"33649":6513,"33653":6514,"33654":6515,"33656":6516,"33658":6517,"33659":6518,"33661":6519,"33662":6520,"33663":6521,"33664":6522,"33665":6523,"33666":6524,"33669":6525,"33670":6526,"33671":6527,"33672":6528,"33674":6529,"33675":6530,"33677":6531,"33681":6532,"33682":6533,"33685":6534,"33686":6535,"33688":6536,"33689":6537,"33690":6538,"33694":6539,"33695":6540,"33697":6541,"33698":6542,"33700":6543,"33703":6544,"33704":6545,"33705":6546,"33707":6547,"33708":6548,"33710":6549,"33712":6550,"33713":6551,"33714":6552,"33715":6553,"33717":6554,"33718":6555,"33719":6556,"33725":6557,"33726":6558,"33732":6559,"33733":6560,"33736":6561,"33737":6562,"33738":6563,"33739":6564,"33740":6565,"33741":6566,"33742":6567,"33743":6568,"33744":6569,"33745":6570,"33746":6571,"33751":6572,"33752":6573,"33753":6574,"33756":6575,"33757":6576,"33758":6577,"33759":6578,"33760":6579,"33761":6580,"33762":6581,"33764":6582,"33765":6583,"33766":6584,"33767":6585,"33768":6586,"33769":6587,"33770":6588,"33771":6589,"33772":6590,"33773":6591,"33774":6592,"33777":6593,"33779":6594,"33782":6595,"33783":6596,"33784":6597,"33785":6598,"33786":6599,"33787":6600,"33788":6601,"33791":6602,"33792":6603,"33793":6604,"33794":6605,"33795":6606,"33796":6607,"33797":6608,"33798":6609,"33800":6610,"33801":6611,"33802":6612,"33803":6613,"33804":6614,"33805":6615,"33806":6616,"33808":6617,"33809":6618,"33810":6619,"33811":6620,"33812":6621,"33813":6622,"33814":6623,"33815":6624,"33817":6625,"33818":6626,"33820":6627,"33821":6628,"33822":6629,"33823":6630,"33824":6631,"33825":6632,"33826":6633,"33827":6634,"33828":6635,"33832":6636,"33833":6637,"33835":6638,"33836":6639,"33837":6640,"33838":6641,"33839":6642,"33840":6643,"33841":6644,"33845":6645,"33846":6646,"33847":6647,"33848":6648,"33849":6649,"33850":6650,"33851":6651,"33853":6652,"33854":6653,"33855":6654,"33857":6655,"33858":6656,"33859":6657,"33860":6658,"33861":6659,"33863":6660,"33864":6661,"33865":6662,"33866":6663,"33867":6664,"33868":6665,"33869":6666,"33870":6667,"33871":6668,"33873":6669,"33874":6670,"33879":6671,"33880":6672,"33881":6673,"33882":6674,"33883":6675,"33884":6676,"33885":6677,"33887":6678,"33888":6679,"33889":6680,"33890":6681,"33891":6682,"33892":6683,"33893":6684,"33894":6685,"33895":6686,"33896":6687,"33897":6688,"33898":6689,"33899":6690,"33901":6691,"33902":6692,"33903":6693,"33904":6694,"33907":6695,"33908":6696,"33909":6697,"33911":6698,"33913":6699,"33914":6700,"33915":6701,"33916":6702,"33917":6703,"33918":6704,"33919":6705,"33920":6706,"33921":6707,"33922":6708,"33923":6709,"33924":6710,"33925":6711,"33926":6712,"33927":6713,"33928":6714,"33930":6715,"33932":6716,"33933":6717,"33935":6718,"33937":6719,"33938":6720,"33940":6721,"33941":6722,"33942":6723,"33943":6724,"33945":6725,"33946":6726,"33947":6727,"33949":6728,"33950":6729,"33951":6730,"33952":6731,"33955":6732,"33956":6733,"33957":6734,"33959":6735,"33960":6736,"33961":6737,"33962":6738,"33965":6739,"33966":6740,"33967":6741,"33968":6742,"33969":6743,"33971":6744,"33972":6745,"33973":6746,"33974":6747,"33976":6748,"33978":6749,"33979":6750,"33980":6751,"33981":6752,"33982":6753,"33983":6754,"33984":6755,"33985":6756,"33987":6757,"33988":6758,"33989":6759,"33990":6760,"33991":6761,"33992":6762,"33994":6763,"33995":6764,"33996":6765,"33997":6766,"33998":6767,"33999":6768,"34000":6769,"34001":6770,"34002":6771,"34003":6772,"34004":6773,"34005":6774,"34006":6775,"34011":6776,"34013":6777,"34014":6778,"34017":6779,"34018":6780,"34019":6781,"34021":6782,"34023":6783,"34026":6784,"34029":6785,"34030":6786,"34032":6787,"34033":6788,"34034":6789,"34035":6790,"34036":6791,"34037":6792,"34038":6793,"34040":6794,"34041":6795,"34042":6796,"34043":6797,"34046":6798,"34047":6799,"34048":6800,"34049":6801,"34050":6802,"34051":6803,"34053":6804,"34054":6805,"34055":6806,"34056":6807,"34058":6808,"34059":6809,"34060":6810,"34062":6811,"34063":6812,"34064":6813,"34065":6814,"34066":6815,"34067":6816,"34069":6817,"34070":6818,"34072":6819,"34074":6820,"34077":6821,"34079":6822,"34081":6823,"34085":6824,"34086":6825,"34088":6826,"34090":6827,"34091":6828,"34092":6829,"34093":6830,"34094":6831,"34095":6832,"34096":6833,"34098":6834,"34099":6835,"34100":6836,"34101":6837,"34102":6838,"34106":6839,"34107":6840,"34108":6841,"34109":6842,"34112":6843,"34114":6844,"34115":6845,"34116":6846,"34117":6847,"34119":6848,"34122":6849,"34124":6850,"34125":6851,"34127":6852,"34128":6853,"34129":6854,"34132":6855,"34137":6856,"34138":6857,"34144":6858,"34145":6859,"34147":6860,"34148":6861,"34151":6862,"34153":6863,"34162":6864,"34174":6865,"34181":6866,"34182":6867,"34183":6868,"34184":6869,"34186":6870,"34188":6871,"34189":6872,"34190":6873,"34191":6874,"34192":6875,"34194":6876,"34195":6877,"34197":6878,"34205":6879,"34210":6880,"34211":6881,"34226":6882,"34238":6883,"34241":6884,"34242":6885,"34249":6886,"34252":6887,"34253":6888,"34257":6889,"34258":6890,"34265":6891,"34268":6892,"34269":6893,"34271":6894,"34273":6895,"34280":6896,"34281":6897,"34282":6898,"34284":6899,"34287":6900,"34289":6901,"34290":6902,"34292":6903,"34294":6904,"34295":6905,"34299":6906,"34300":6907,"34302":6908,"34304":6909,"34305":6910,"34306":6911,"34310":6912,"34311":6913,"34317":6914,"34318":6915,"34322":6916,"34324":6917,"34325":6918,"34327":6919,"34329":6920,"34330":6921,"34331":6922,"34332":6923,"34334":6924,"34335":6925,"34339":6926,"34340":6927,"34341":6928,"34342":6929,"34345":6930,"34346":6931,"34347":6932,"34348":6933,"34349":6934,"34350":6935,"34351":6936,"34353":6937,"34354":6938,"34356":6939,"34359":6940,"34360":6941,"34362":6942,"34364":6943,"34365":6944,"34366":6945,"34369":6946,"34371":6947,"34372":6948,"34375":6949,"34379":6950,"34382":6951,"34384":6952,"34385":6953,"34397":6954,"34398":6955,"34405":6956,"34406":6957,"34408":6958,"34413":6959,"34414":6960,"34415":6961,"34416":6962,"34418":6963,"34419":6964,"34420":6965,"34423":6966,"34424":6967,"34429":6968,"34430":6969,"34431":6970,"34433":6971,"34436":6972,"34437":6973,"34442":6974,"34446":6975,"34447":6976,"34455":6977,"34456":6978,"34460":6979,"34461":6980,"34463":6981,"34465":6982,"34466":6983,"34470":6984,"34473":6985,"34474":6986,"34475":6987,"34477":6988,"34480":6989,"34483":6990,"34485":6991,"34486":6992,"34487":6993,"34489":6994,"34495":6995,"34496":6996,"34497":6997,"34499":6998,"34500":6999,"34503":7000,"34506":7001,"34508":7002,"34509":7003,"34512":7004,"34513":7005,"34514":7006,"34515":7007,"34516":7008,"34519":7009,"34520":7010,"34527":7011,"34528":7012,"34529":7013,"34538":7014,"34539":7015,"34542":7016,"34545":7017,"34546":7018,"34548":7019,"34549":7020,"34550":7021,"34559":7022,"34561":7023,"34563":7024,"34564":7025,"34566":7026,"34568":7027,"34569":7028,"34570":7029,"34577":7030,"34579":7031,"34580":7032,"34581":7033,"34582":7034,"34583":7035,"34586":7036,"34587":7037,"34588":7038,"34590":7039,"34591":7040,"34592":7041,"34593":7042,"34594":7043,"34595":7044,"34598":7045,"34600":7046,"34601":7047,"34602":7048,"34605":7049,"34607":7050,"34608":7051,"34610":7052,"34611":7053,"34612":7054,"34615":7055,"34616":7056,"34618":7057,"34619":7058,"34620":7059,"34621":7060,"34622":7061,"34623":7062,"34625":7063,"34628":7064,"34629":7065,"34630":7066,"34631":7067,"34633":7068,"34634":7069,"34636":7070,"34637":7071,"34638":7072,"34639":7073,"34642":7074,"34643":7075,"34644":7076},"prs":[{"number":18059,"updated_at":"2018-10-16T16:05:46Z","username":"ojeytonwilliams","title":"fix(sync-utils): Change utils to match learn","filenames":["server/utils/index.js"]},{"number":19073,"updated_at":"2018-12-05T16:18:12Z","username":"brenoxav","title":"fix(coding): update instructions to CSS Flexbox challenge in Portuguese","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-row.portuguese.md"]},{"number":19077,"updated_at":"2018-12-05T16:18:13Z","username":"brenoxav","title":"fix(coding): update instructions to CSS Flexbox challenge in Portuguese","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/css-flexbox/use-the-flex-shorthand-property.portuguese.md"]},{"number":19319,"updated_at":"2018-11-15T19:45:17Z","username":"MiguelSMendoza","title":"Spanish Language Updates to add-items-to-an-array-with-push-and-unshift.spanish.md","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-data-structures/add-items-to-an-array-with-push-and-unshift.spanish.md"]},{"number":19347,"updated_at":"2018-12-05T16:18:08Z","username":"Josev47","title":"Colocación correcta del ejemplo en CSS","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/use-abbreviated-hex-code.spanish.md"]},{"number":19360,"updated_at":"2018-11-15T19:45:20Z","username":"Rosalyn0403","title":"re-translate the Description","filenames":["curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-carefully-choosing-colors-that-convey-information.chinese.md"]},{"number":19402,"updated_at":"2018-12-05T16:18:13Z","username":"math77","title":"Translation of parts of the text into Portuguese","filenames":["curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/basic-javascript/chaining-if-else-statements.portuguese.md"]},{"number":19477,"updated_at":"2018-12-05T16:18:04Z","username":"Lewis65","title":"Add tests reflecting #19390","filenames":["curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-data-structures/check-if-an-object-has-a-property.english.md"]},{"number":19538,"updated_at":"2018-11-15T19:45:23Z","username":"luis-munguia","title":"Changed tabla to gráfico.","filenames":["curriculum/challenges/spanish/04-data-visualization/data-visualization-projects/visualize-data-with-a-bar-chart.spanish.md"]},{"number":19554,"updated_at":"2018-11-15T19:45:26Z","username":"noandersonls","title":"Add spanish translation","filenames":["curriculum/challenges/spanish/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.spanish.md"]},{"number":19555,"updated_at":"2018-11-15T19:45:28Z","username":"noandersonls","title":"Add spanish translation","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/object-oriented-programming/remember-to-set-the-constructor-property-when-changing-the-prototype.spanish.md"]},{"number":19557,"updated_at":"2018-11-15T19:45:29Z","username":"od-c0d3r","title":"Language correction","filenames":["curriculum/challenges/arabic/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.arabic.md"]},{"number":19573,"updated_at":"2018-12-05T16:18:09Z","username":"Catherinesjkim","title":"Fixed some typos and grammatical errors","filenames":["docs/spanish/how-to-work-on-guide-articles.md"]},{"number":19602,"updated_at":"2018-11-15T19:45:37Z","username":"gabysantosw","title":"Some corrections and fixed untranslated word","filenames":["curriculum/challenges/spanish/03-front-end-libraries/jquery/target-elements-by-class-using-jquery.spanish.md"]},{"number":19622,"updated_at":"2018-11-15T19:45:38Z","username":"Catherinesjkim","title":"Fixed some typos and grammatical errors","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-carefully-choosing-colors-that-convey-information.spanish.md"]},{"number":19629,"updated_at":"2018-10-17T16:40:58Z","username":"spencemal1","title":"add section on action creators","filenames":["guide/english/redux/redux-actions/index.md"]},{"number":19648,"updated_at":"2018-11-15T19:45:40Z","username":"Josev47","title":"Cambios a la redacción","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/add-rounded-corners-with-border-radius.spanish.md"]},{"number":19653,"updated_at":"2018-11-15T19:45:41Z","username":"Josev47","title":"Translation and CSS code changes","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/give-a-background-color-to-a-div-element.spanish.md"]},{"number":19686,"updated_at":"2018-10-29T06:22:21Z","username":"Catherinesjkim","title":"Fixed some typos and grammatical errors","filenames":["docs/spanish/how-to-work-on-coding-challenges.md"]},{"number":19690,"updated_at":"2018-12-05T16:19:05Z","username":"devbysalas","title":"Updated test text to Spanish","filenames":["curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md"]},{"number":19701,"updated_at":"2018-11-15T19:45:46Z","username":"yoelvisj","title":"General better translation + wikipedia links","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/functional-programming/introduction-to-currying-and-partial-application.spanish.md"]},{"number":19711,"updated_at":"2018-11-19T00:46:19Z","username":"thecodingaviator","title":"Fixed issue with accessibility challenge about contrast","filenames":["curriculum/challenges/english/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-using-sufficient-contrast.english.md"]},{"number":19718,"updated_at":"2018-12-05T16:19:06Z","username":"thecodingaviator","title":"Fixed problem with regex in es6 import challenge","filenames":["curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/import-a-default-export.english.md"]},{"number":19739,"updated_at":"2018-11-15T19:45:52Z","username":"Waddah-JD","title":"tranlsate challenge 'Inventory Update' from (coding interview prep / algorithms) to Arabic","filenames":["curriculum/challenges/arabic/08-coding-interview-prep/algorithms/inventory-update.arabic.md"]},{"number":19744,"updated_at":"2018-11-15T19:45:53Z","username":"Waddah-JD","title":"translate (Redux: Get State from the Redux Store)'s description and instructions to Arabic","filenames":["curriculum/challenges/arabic/03-front-end-libraries/redux/get-state-from-the-redux-store.arabic.md"]},{"number":19749,"updated_at":"2018-11-25T19:13:31Z","username":"LeWanderer","title":"add-an-accesible-date-picker Spanish translation","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/add-an-accessible-date-picker.spanish.md"]},{"number":19752,"updated_at":"2018-11-15T19:45:56Z","username":"Waddah-JD","title":"translate (JSON APIs and Ajax: Render Images from Data Sources)'s decription & instructions to Arabic","filenames":["curriculum/challenges/arabic/04-data-visualization/json-apis-and-ajax/render-images-from-data-sources.arabic.md"]},{"number":19754,"updated_at":"2018-11-15T19:45:58Z","username":"Waddah-JD","title":"translate (JSON APIs and Ajax: Pre-filter JSON to Get the Data You Need)'s description & instructons to Arabic","filenames":["curriculum/challenges/arabic/04-data-visualization/json-apis-and-ajax/pre-filter-json-to-get-the-data-you-need.arabic.md"]},{"number":19756,"updated_at":"2018-11-15T19:45:59Z","username":"Waddah-JD","title":"translate (JSON APIs and Ajax: Change Text with click Events)'s description and instructions","filenames":["curriculum/challenges/arabic/04-data-visualization/json-apis-and-ajax/change-text-with-click-events.arabic.md"]},{"number":19761,"updated_at":"2018-12-05T16:19:05Z","username":"Josev47","title":"Redaction and translation updated.","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/use-a-css-class-to-style-an-element.spanish.md"]},{"number":19766,"updated_at":"2018-12-01T06:31:45Z","username":"od-c0d3r","title":"Arabic Language correction and maintenance","filenames":["guide/arabic/security/bug-bounties/index.md"]},{"number":19767,"updated_at":"2018-10-21T16:57:16Z","username":"od-c0d3r","title":"Arabic language correction and maintenance","filenames":["guide/arabic/security/cryptography/index.md"]},{"number":19769,"updated_at":"2018-10-21T16:58:09Z","username":"od-c0d3r","title":"Arabic language correction","filenames":["guide/arabic/security/cyberattacks/index.md"]},{"number":19811,"updated_at":"2018-11-30T08:38:19Z","username":"Sebarbossus","title":"Sentence was unclear/ambiguous","filenames":["guide/spanish/blockchain/index.md"]},{"number":19859,"updated_at":"2018-12-05T16:19:07Z","username":"3l3ktron","title":"Change Agile to Ágil","filenames":["guide/spanish/agile/index.md"]},{"number":19880,"updated_at":"2018-11-30T16:29:02Z","username":"3l3ktron","title":"Canvas de Javascript","filenames":["guide/spanish/canvas/index.md"]},{"number":19894,"updated_at":"2018-11-30T16:29:38Z","username":"3l3ktron","title":"What apache is used for","filenames":["guide/spanish/apache/index.md"]},{"number":19911,"updated_at":"2018-11-30T16:31:34Z","username":"3l3ktron","title":"Edit to when the program was made and who bought it form who","filenames":["guide/spanish/virtualbox/index.md"]},{"number":19949,"updated_at":"2018-11-15T19:46:04Z","username":"DARIF","title":"grammar correction","filenames":["curriculum/challenges/arabic/03-front-end-libraries/bootstrap/center-text-with-bootstrap.arabic.md"]},{"number":19957,"updated_at":"2018-12-01T11:38:27Z","username":"odm275","title":"Analogous example","filenames":["guide/spanish/react/render-props-component/index.md"]},{"number":19962,"updated_at":"2018-11-15T19:46:05Z","username":"DARIF","title":"Grammar correction","filenames":["curriculum/challenges/arabic/01-responsive-web-design/css-flexbox/add-flex-superpowers-to-the-tweet-embed.arabic.md"]},{"number":19977,"updated_at":"2018-11-15T19:46:07Z","username":"DARIF","title":"grammar correction","filenames":["curriculum/challenges/arabic/03-front-end-libraries/bootstrap/add-id-attributes-to-bootstrap-elements.arabic.md"]},{"number":19985,"updated_at":"2018-11-15T19:46:08Z","username":"DARIF","title":"grammar fix","filenames":["curriculum/challenges/arabic/01-responsive-web-design/basic-html-and-html5/headline-with-the-h2-element.arabic.md"]},{"number":19990,"updated_at":"2018-11-15T19:46:10Z","username":"DARIF","title":"Adding localtitle","filenames":["curriculum/challenges/arabic/01-responsive-web-design/basic-css/use-clockwise-notation-to-specify-the-padding-of-an-element.arabic.md"]},{"number":20012,"updated_at":"2018-10-27T13:36:14Z","username":"retaric","title":"Improved Mandarin Grammar","filenames":["docs/chinese/README.md"]},{"number":20061,"updated_at":"2018-11-15T19:46:11Z","username":"TheVidoja","title":"Changed some Spanish translations a bit","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.spanish.md"]},{"number":20082,"updated_at":"2018-12-01T13:55:55Z","username":"TheVidoja","title":"Translated some headings and \"Read-Search-Ask\"","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.spanish.md"]},{"number":20096,"updated_at":"2018-10-28T04:04:29Z","username":"deramsey","title":"Added information on instructional design regarding ADDIE model","filenames":["guide/english/user-experience-design/instructional-design/index.md"]},{"number":20120,"updated_at":"2018-12-01T13:57:14Z","username":"TheVidoja","title":"Translated some headings, \"Read-Search-Ask\" and \"grueso\"","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.spanish.md"]},{"number":20137,"updated_at":"2018-12-01T14:02:27Z","username":"ivangaru","title":"Translate comments in code to Spanish","filenames":["guide/spanish/csharp/linq/count/index.md"]},{"number":20186,"updated_at":"2018-12-05T16:18:14Z","username":"fi-carvalho","title":"Fixing translation issue in \"Merge Sort\" section","filenames":["guide/portuguese/algorithms/index.md"]},{"number":20224,"updated_at":"2018-12-02T20:23:08Z","username":"raydelto","title":"Completing the Spanish translation for HTML tutorial","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.spanish.md"]},{"number":20244,"updated_at":"2018-12-05T16:19:09Z","username":"ACHELM","title":"Cambios gramaticales y traduccion","filenames":["guide/spanish/c/variables-and-basic-datatypes/index.md"]},{"number":20255,"updated_at":"2018-12-05T16:19:10Z","username":"raydelto","title":"Translating code and improving Spanish terminology","filenames":["guide/spanish/cplusplus/arrays/index.md"]},{"number":20258,"updated_at":"2018-12-05T16:19:10Z","username":"victoralloza","title":"improved translation","filenames":["guide/spanish/python/for-loop-statements/index.md"]},{"number":20259,"updated_at":"2018-10-27T17:43:10Z","username":"fi-carvalho","title":"Grammar corrections","filenames":["guide/portuguese/electron/index.md"]},{"number":20268,"updated_at":"2018-12-05T16:19:10Z","username":"ACHELM","title":"Traducción de algunos comentarios","filenames":["guide/spanish/java/basic-operations/index.md"]},{"number":20287,"updated_at":"2018-12-03T12:27:38Z","username":"raydelto","title":"Fixing the C++ loops Spanish lesson code","filenames":["guide/spanish/cplusplus/loops/index.md"]},{"number":20302,"updated_at":"2018-12-03T12:31:48Z","username":"luisgepeto","title":"Corrected syntax for bubble sort","filenames":["curriculum/challenges/spanish/08-coding-interview-prep/algorithms/implement-bubble-sort.spanish.md"]},{"number":20317,"updated_at":"2018-12-05T16:18:14Z","username":"juansaintclair","title":"Translated AngularJs Page, changed description and installing methods","filenames":["guide/portuguese/angularjs/index.md"]},{"number":20320,"updated_at":"2018-12-05T16:19:10Z","username":"raydelto","title":"Traduciendo código fuente al español","filenames":["guide/spanish/cplusplus/if-else-statement/index.md"]},{"number":20324,"updated_at":"2018-10-27T20:10:42Z","username":"ruifigueiredo","title":"instalação do apache","filenames":["guide/portuguese/apache/index.md"]},{"number":20327,"updated_at":"2018-12-04T17:54:53Z","username":"JaredEzz","title":"Unit Testing Definition update","filenames":["guide/spanish/software-engineering/unit-tests/index.md"]},{"number":20359,"updated_at":"2018-11-01T18:18:11Z","username":"matteodanelli","title":"Fixed typos","filenames":["docs/italian/CONTRIBUTING.md"]},{"number":20399,"updated_at":"2018-11-12T23:54:52Z","username":"juansaintclair","title":"Incluída nova informação sobre a daily meeting","filenames":["guide/portuguese/agile/daily-standup-and-daily-scrum/index.md"]},{"number":20407,"updated_at":"2018-11-12T23:54:54Z","username":"ruifigueiredo","title":"exibir um array","filenames":["guide/portuguese/php/arrays/index.md"]},{"number":20434,"updated_at":"2018-11-12T23:54:55Z","username":"WindowWaker","title":"Adicionei analogia para objeto","filenames":["guide/portuguese/java/classes-and-objects/index.md"]},{"number":20469,"updated_at":"2018-10-26T22:19:52Z","username":"BraveJhawk","title":"Update portuguese SQL INNER JOIN Guide","filenames":["guide/portuguese/sql/sql-inner-join-keyword/index.md"]},{"number":20475,"updated_at":"2018-12-05T16:19:12Z","username":"CarloMtzMartin","title":"Add basic information regarding Wordpress structure and templates.","filenames":["guide/spanish/wordpress/index.md"]},{"number":20476,"updated_at":"2018-10-29T15:08:40Z","username":"fabiotp91","title":"Short description added of the Godot Engine","filenames":["guide/portuguese/game-development/godot/index.md"]},{"number":20496,"updated_at":"2018-10-31T01:39:17Z","username":"fabiotp91","title":"Added a short introduction to Godot Scripting","filenames":["guide/portuguese/game-development/godot/scripting/index.md"]},{"number":20501,"updated_at":"2018-10-31T01:39:32Z","username":"ruifigueiredo","title":"Drupal Info","filenames":["guide/portuguese/drupal/index.md"]},{"number":20510,"updated_at":"2018-10-30T14:14:21Z","username":"Bloombug","title":"Grammar corrections","filenames":["guide/portuguese/user-experience-design/personas/index.md"]},{"number":20587,"updated_at":"2018-11-12T22:34:07Z","username":"fabiotp91","title":"Translated the Add Images to Your Website","filenames":["guide/portuguese/certifications/responsive-web-design/basic-html-and-html5/add-images-to-your-website/index.md"]},{"number":20590,"updated_at":"2018-12-09T20:51:56Z","username":"sriveros95","title":"Fixed some spelling mistakes an typos.","filenames":["docs/spanish/how-to-work-on-guide-articles.md"]},{"number":20597,"updated_at":"2018-10-31T15:27:14Z","username":"Bloombug","title":"Grammar corrections - third and forth paragraph","filenames":["guide/portuguese/user-experience-design/prototyping/index.md"]},{"number":20599,"updated_at":"2018-10-31T17:25:48Z","username":"juansaintclair","title":"Changed install link","filenames":["guide/portuguese/bootstrap/get-started/index.md"]},{"number":20625,"updated_at":"2018-10-31T16:47:21Z","username":"juansaintclair","title":"Adjustments on changelog.md","filenames":["guide/portuguese/css/text/index.md"]},{"number":20685,"updated_at":"2018-10-31T17:02:33Z","username":"diogoPT","title":"Change Bad translation (auto-translation)","filenames":["guide/portuguese/haskell/misc/index.md"]},{"number":20703,"updated_at":"2018-10-31T17:08:09Z","username":"diogoPT","title":"Extra Portugueses \"touch\"","filenames":["guide/portuguese/python/lists/list-append-method/index.md"]},{"number":20789,"updated_at":"2018-12-08T08:33:17Z","username":"dbarrerap","title":"Agregar una guia y referencia","filenames":["guide/spanish/css/index.md"]},{"number":20795,"updated_at":"2018-12-08T08:30:18Z","username":"ruckysolis","title":"Changed a space","filenames":["curriculum/challenges/spanish/06-information-security-and-quality-assurance/advanced-node-and-express/announce-new-users.spanish.md"]},{"number":20796,"updated_at":"2018-11-12T22:34:15Z","username":"CubeSkyy","title":"Updated code comments to portuguese","filenames":["guide/portuguese/algorithms/graph-algorithms/floyd-warshall-algorithm/index.md"]},{"number":20813,"updated_at":"2018-12-11T20:25:33Z","username":"sadokx","title":"Terms are being translated directly","filenames":["guide/spanish/bootstrap/buttons/index.md"]},{"number":20819,"updated_at":"2018-11-01T19:50:52Z","username":"m88zidan","title":"أجايل بدلا من رشيق","filenames":["guide/arabic/agile/business-value/index.md"]},{"number":20825,"updated_at":"2018-10-27T09:54:47Z","username":"CubeSkyy","title":"Added portuguese page for vagrant","filenames":["guide/portuguese/vagrant/index.md"]},{"number":20826,"updated_at":"2018-12-08T18:51:50Z","username":"ruckysolis","title":"Added an initial interrogation sign","filenames":["guide/spanish/game-development/minecraft-forge/index.md"]},{"number":20827,"updated_at":"2018-12-08T18:53:43Z","username":"Hummingbird-12","title":"fix Spanish grammar errors","filenames":["guide/spanish/vim/useful-commands/index.md"]},{"number":20829,"updated_at":"2018-11-01T19:50:59Z","username":"m88zidan","title":"عملة رقمية بدل عملة معماة","filenames":["guide/arabic/blockchain/cryptocurrency/index.md"]},{"number":20833,"updated_at":"2018-11-15T19:46:28Z","username":"joaomfiumari","title":"improved translation of no-repeats-please pt-br","filenames":["curriculum/challenges/portuguese/08-coding-interview-prep/algorithms/no-repeats-please.portuguese.md"]},{"number":20834,"updated_at":"2018-11-21T22:19:34Z","username":"m88zidan","title":"المبدأ بدل المنطق","filenames":["guide/arabic/blockchain/smart-contracts/index.md"]},{"number":20838,"updated_at":"2018-11-21T22:19:36Z","username":"dbarrerap","title":"Guia de instalacion basica","filenames":["guide/spanish/laravel/instalacion/index.md"]},{"number":20840,"updated_at":"2018-12-08T18:56:34Z","username":"ruckysolis","title":"Changed Syntax","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-carefully-choosing-colors-that-convey-information.spanish.md"]},{"number":20848,"updated_at":"2018-12-03T17:57:31Z","username":"aaronsum1102","title":"Update Chinese translation of CONTRIBUTING.md ","filenames":["docs/chinese/CONTRIBUTING.md"]},{"number":20850,"updated_at":"2018-12-09T12:06:28Z","username":"Hummingbird-12","title":"update Spanish translation of \"About Vim\"","filenames":["guide/spanish/vim/basic-usage/index.md"]},{"number":20857,"updated_at":"2018-12-09T12:07:59Z","username":"Hummingbird-12","title":"fix Spanish translation, more grammatically natural","filenames":["guide/spanish/vim/vundle/index.md"]},{"number":20864,"updated_at":"2018-12-09T12:08:44Z","username":"Hummingbird-12","title":"fix parallelism for Spanish translation","filenames":["guide/spanish/vim/split/index.md"]},{"number":20873,"updated_at":"2018-12-09T12:09:47Z","username":"GonzaloGM","title":"Typo y cambio de traducción","filenames":["guide/spanish/nodejs/index.md"]},{"number":20884,"updated_at":"2018-12-09T12:10:26Z","username":"odm275","title":"Reference to module/factory pattern in redux","filenames":["guide/spanish/javascript/closures/index.md"]},{"number":20895,"updated_at":"2018-12-09T12:15:48Z","username":"dbarrerap","title":"Agregar definicion y ejemplo.","filenames":["guide/spanish/flask/index.md","guide/spanish/flask/instalacion/index.md","guide/spanish/mathematics/perimeter/index.md"]},{"number":20897,"updated_at":"2018-12-09T12:21:41Z","username":"Carla08","title":"Translated python class tutorial to spanish","filenames":["guide/spanish/python/class/index.md"]},{"number":20899,"updated_at":"2018-11-12T22:34:32Z","username":"MrSuperPotato","title":"Update CONTRIBUTING.md","filenames":["docs/arabic/CONTRIBUTING.md"]},{"number":20909,"updated_at":"2018-10-19T23:49:43Z","username":"RiruKira","title":"Translation change.","filenames":["guide/arabic/algorithms/algorithm-design-patterns/structual-patterns/index.md"]},{"number":20916,"updated_at":"2018-12-09T12:23:06Z","username":"GonzaloGM","title":"Typo y errores de traducción - typo and translation errors","filenames":["guide/spanish/nodejs/npm/index.md"]},{"number":20931,"updated_at":"2018-11-21T22:19:50Z","username":"GonzaloGM","title":"Typos y errores de traducción - typos and translation errors","filenames":["guide/spanish/nodejs/socket.io/index.md"]},{"number":20945,"updated_at":"2018-11-04T02:28:27Z","username":"GonzaloGM","title":"Typos y errores de traducción - typos and translation errors","filenames":["guide/spanish/nodejs/process/index.md"]},{"number":20952,"updated_at":"2018-11-12T22:34:41Z","username":"DavidNguyen02","title":"Correcting missing accent marks, whitespace","filenames":["guide/spanish/ruby/ruby-methods/index.md"]},{"number":20955,"updated_at":"2018-11-01T18:06:59Z","username":"leofontes","title":"Fix Translation PT Finding a Remainder in JavaScript","filenames":["guide/portuguese/javascript/tutorials/finding-a-remainder-in-javascript/index.md"]},{"number":20958,"updated_at":"2018-11-04T03:29:25Z","username":"GonzaloGM","title":"Corrige el título - Fixes title","filenames":["guide/spanish/nodejs/http/index.md"]},{"number":20960,"updated_at":"2018-10-27T09:56:15Z","username":"HelioGuilherme66","title":"Improve Portuguese translation - CONTRIBUTING.md","filenames":["docs/portuguese/CONTRIBUTING.md"]},{"number":20977,"updated_at":"2018-11-04T09:40:18Z","username":"GonzaloGM","title":"Fixes title - Corrige el título","filenames":["guide/spanish/nodejs/file-system/index.md"]},{"number":20990,"updated_at":"2018-10-28T19:42:56Z","username":"ortrigger","title":"Update grammatical mistake in Contributing.md Spanish translation","filenames":["docs/spanish/CONTRIBUTING.md"]},{"number":21004,"updated_at":"2018-10-27T09:57:20Z","username":"HelioGuilherme66","title":"Improve Portuguese translation - README.md","filenames":["docs/portuguese/README.md"]},{"number":21015,"updated_at":"2018-11-15T19:46:31Z","username":"JonathanChavezTamales","title":"Mejora de texto","filenames":["curriculum/challenges/spanish/04-data-visualization/data-visualization-projects/visualize-data-with-a-bar-chart.spanish.md"]},{"number":21016,"updated_at":"2018-10-29T05:28:50Z","username":"kalmufti","title":"Add Arabic translation for bash-ssh","filenames":["guide/arabic/bash/bash-ssh/index.md"]},{"number":21023,"updated_at":"2018-11-05T02:46:51Z","username":"azuzunaga","title":"Azuzunaga patch 1","filenames":["guide/spanish/terminal-commandline/macos-terminal/index.md"]},{"number":21029,"updated_at":"2018-11-01T18:07:22Z","username":"GonzaloGM","title":"Typos y errores de traducción - Typos and translation errors","filenames":["guide/spanish/nodejs/buffer/index.md"]},{"number":21033,"updated_at":"2018-11-12T22:34:44Z","username":"fatima12nm","title":"Redudancy Mistake","filenames":["docs/spanish/README.md"]},{"number":21055,"updated_at":"2018-12-03T10:02:32Z","username":"honya99","title":"Create Extension Functions file","filenames":["guide/arabic/kotlin/Extension Functions"]},{"number":21072,"updated_at":"2018-11-05T13:27:51Z","username":"GiuseppeVarriale","title":"Fixed some Translation Errors","filenames":["guide/portuguese/ruby/classes-and-objects/index.md"]},{"number":21086,"updated_at":"2018-11-05T14:45:46Z","username":"fatima12nm","title":"Word Correction","filenames":["docs/spanish/how-to-work-on-guide-articles.md"]},{"number":21114,"updated_at":"2018-11-05T15:25:06Z","username":"mmmeyers","title":"Fix grammatical errors","filenames":["guide/spanish/accessibility/index.md"]},{"number":21133,"updated_at":"2018-11-05T22:58:55Z","username":"Pedro568","title":"agrego el video \"preintroduccion\"","filenames":["guide/spanish/algorithms/index.md"]},{"number":21140,"updated_at":"2018-11-05T23:01:19Z","username":"zd6","title":"Translation optimized index.md","filenames":["guide/chinese/python/max-function/index.md"]},{"number":21144,"updated_at":"2018-12-05T16:18:39Z","username":"jhoard08","title":"Fixed grammar issues to help readability","filenames":["guide/english/php/loop/index.md"]},{"number":21148,"updated_at":"2018-11-06T14:24:27Z","username":"mmmeyers","title":"Fix areas where informal address is used","filenames":["guide/spanish/accessibility/accessibility-basics/index.md"]},{"number":21157,"updated_at":"2018-12-09T02:34:07Z","username":"tjsullivan1","title":"Expanded explanation, added links","filenames":["guide/english/bash/bash-ssh/index.md"]},{"number":21160,"updated_at":"2018-10-27T09:57:48Z","username":"JaceFrio","title":"Minor Addition of English Translated to Portuguese","filenames":["guide/portuguese/game-development/minecraft-forge/index.md"]},{"number":21161,"updated_at":"2018-11-21T22:20:05Z","username":"zd6","title":"optimized translation index.md","filenames":["guide/chinese/mathematics/algebra/simplify-square-roots/index.md"]},{"number":21167,"updated_at":"2018-11-07T03:54:25Z","username":"thegodland","title":"replace with 备注 and 结尾","filenames":["guide/chinese/swift/comments/index.md"]},{"number":21177,"updated_at":"2018-10-28T19:43:39Z","username":"Kirajav","title":"Updated some redaction errors","filenames":["guide/spanish/javascript/with/index.md"]},{"number":21185,"updated_at":"2018-11-15T19:46:32Z","username":"JaceFrio","title":"Small Comment Translation Addition","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.portuguese.md"]},{"number":21189,"updated_at":"2018-11-07T14:46:52Z","username":"zd6","title":"optimized translation index.md","filenames":["guide/chinese/python/numeric-operations/index.md"]},{"number":21196,"updated_at":"2018-11-07T14:45:44Z","username":"rogervieiraa","title":"Fix some bugs on the translation","filenames":["guide/portuguese/cplusplus/vector/index.md"]},{"number":21208,"updated_at":"2018-11-07T13:48:08Z","username":"zd6","title":"optimized translation index.dm","filenames":["guide/chinese/python/while-loop-statements/index.md"]},{"number":21215,"updated_at":"2018-11-15T19:46:34Z","username":"JaceFrio","title":"Forgotten Updates of English Parts to Portuguese","filenames":["curriculum/challenges/portuguese/08-coding-interview-prep/take-home-projects/build-a-camper-leaderboard.portuguese.md"]},{"number":21217,"updated_at":"2018-10-29T05:43:25Z","username":"thegodland","title":"retranslate the sentence from english to chinese","filenames":["guide/chinese/swift/variables/index.md"]},{"number":21220,"updated_at":"2018-11-07T15:40:41Z","username":"toucedam","title":"Fix some translations","filenames":["guide/spanish/algorithms/exponentiation/index.md"]},{"number":21230,"updated_at":"2018-10-29T05:29:12Z","username":"kalmufti","title":"Add Arabic translation for bash-chmod","filenames":["guide/arabic/bash/bash-chmod/index.md"]},{"number":21253,"updated_at":"2018-11-08T05:17:28Z","username":"GiuseppeVarriale","title":"Fixed som translations and Translated Method Descriptions","filenames":["guide/portuguese/ruby/common-array-methods/index.md"]},{"number":21267,"updated_at":"2018-11-14T20:27:46Z","username":"ChaoticCooties","title":"Spelling Correction","filenames":["guide/chinese/c/dynamic-memory-management/index.md"]},{"number":21269,"updated_at":"2018-11-12T23:55:27Z","username":"EGMartins","title":"Adding some more information","filenames":["guide/portuguese/ruby/ruby-for-loop/index.md"]},{"number":21281,"updated_at":"2018-11-08T15:09:53Z","username":"GiuseppeVarriale","title":"Fixed translations","filenames":["guide/portuguese/ruby/rubocop/index.md"]},{"number":21289,"updated_at":"2018-11-15T19:46:35Z","username":"JaceFrio","title":"Update consistency in Portuguese","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.portuguese.md"]},{"number":21290,"updated_at":"2018-11-15T19:46:37Z","username":"joaomfiumari","title":"Update implement-selection-sort.portuguese.md","filenames":["curriculum/challenges/portuguese/08-coding-interview-prep/algorithms/implement-selection-sort.portuguese.md"]},{"number":21292,"updated_at":"2018-11-09T07:27:57Z","username":"GiuseppeVarriale","title":"Fixed Translation","filenames":["guide/portuguese/ruby/ruby-arrays/index.md"]},{"number":21297,"updated_at":"2018-10-29T05:29:34Z","username":"kalmufti","title":"Add Arabic translation for bash-touch","filenames":["guide/arabic/bash/bash-touch/index.md"]},{"number":21304,"updated_at":"2018-11-15T19:46:38Z","username":"JaceFrio","title":"Portuguese Consistency Update","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/responsive-web-design-principles/make-typography-responsive.portuguese.md"]},{"number":21305,"updated_at":"2018-11-03T00:29:53Z","username":"viggo111","title":"Modified text “背景 到紫色” to ”背景为紫色“.","filenames":["guide/chinese/css/background/index.md"]},{"number":21319,"updated_at":"2018-11-15T19:46:40Z","username":"JaceFrio","title":"Update to English Translation Consistency","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/responsive-web-design-projects/build-a-personal-portfolio-webpage.portuguese.md"]},{"number":21321,"updated_at":"2018-10-28T19:43:56Z","username":"Kirajav","title":"Redaction and missing paragraph lines corrected","filenames":["guide/spanish/javascript/advantages-and-disadvantages-of-javascript/index.md"]},{"number":21326,"updated_at":"2018-11-12T07:19:00Z","username":"don0t","title":"Full text editing","filenames":["guide/spanish/accessibility/accessibility-basics/index.md"]},{"number":21330,"updated_at":"2018-10-29T05:43:49Z","username":"viggo111","title":"Modified some Chinese syntax errors.","filenames":["guide/chinese/css/before-selector/index.md"]},{"number":21337,"updated_at":"2018-11-10T12:04:08Z","username":"viggo111","title":"Modify translation errors \"localeTitle: 边境财产\"","filenames":["guide/chinese/css/borders/index.md"]},{"number":21341,"updated_at":"2018-11-04T11:44:45Z","username":"devarthurribeiro","title":"Add conditional vue pt","filenames":["guide/portuguese/vue/conditionals/index.md"]},{"number":21346,"updated_at":"2018-11-10T06:28:33Z","username":"Rinsington-DC","title":"Comments translated for easy native reading","filenames":["guide/chinese/javascript/booleans/index.md"]},{"number":21349,"updated_at":"2018-10-29T05:29:55Z","username":"kalmufti","title":"Add Arabic translation for bash-rm","filenames":["guide/arabic/bash/bash-rm/index.md"]},{"number":21351,"updated_at":"2018-11-10T06:29:02Z","username":"jing-xuan","title":"Edit formatting of code sections, as well as corrected typos","filenames":["guide/chinese/css/css3-nth-child-selector/index.md"]},{"number":21362,"updated_at":"2018-11-04T11:52:31Z","username":"CynthiaGiesecke","title":"punctuation edit","filenames":["guide/spanish/accessibility/accessibility-basics/index.md"]},{"number":21368,"updated_at":"2018-10-28T19:44:28Z","username":"Naaani","title":"Translate some lines into Spanish","filenames":["guide/spanish/java/abstract-class/index.md"]},{"number":21387,"updated_at":"2018-11-04T12:00:17Z","username":"Rinsington-DC","title":"Minor grammatical fix, some things were translated but shouldn't be","filenames":["guide/chinese/javascript/callback-functions/index.md"]},{"number":21393,"updated_at":"2018-11-09T23:55:46Z","username":"jrobertorma","title":"Aditions defining the basic structure of a css-grid rule","filenames":["guide/spanish/css/css3-grid-layout/index.md"]},{"number":21403,"updated_at":"2018-11-04T12:10:05Z","username":"Rinsington-DC","title":"Hyperlink code and typo fixed, grammar","filenames":["guide/chinese/javascript/functions-list/index.md"]},{"number":21477,"updated_at":"2018-11-10T13:50:28Z","username":"camilocf","title":"Asociación: tipo de aprendizaje no supervisado","filenames":["guide/spanish/machine-learning/unsupervised-learning/index.md"]},{"number":21535,"updated_at":"2018-11-10T22:24:02Z","username":"jing-xuan","title":"Translated descriptions","filenames":["guide/chinese/css/css3-nth-child-selector/index.md"]},{"number":21562,"updated_at":"2018-11-11T02:54:03Z","username":"rafaellfaria","title":"Alterando alguns erros gramaticais na explicação","filenames":["guide/portuguese/css/colors/index.md"]},{"number":21564,"updated_at":"2018-11-21T22:20:32Z","username":"leebut","title":"Use Flexbox for Responsive Pages","filenames":["guide/english/css/css-flexbox/index.md"]},{"number":21572,"updated_at":"2018-11-10T22:37:51Z","username":"rafaellfaria","title":"Acrescentando informação ao arquivo","filenames":["guide/portuguese/vue/index.md"]},{"number":21579,"updated_at":"2018-11-05T07:17:14Z","username":"rafaellfaria","title":"Acrescentando informação sobre justify-content","filenames":["guide/portuguese/css/css3-flexible-box/index.md"]},{"number":21581,"updated_at":"2018-11-05T07:18:21Z","username":"rafaellfaria","title":"Alterando comentários dentro dos condicionais","filenames":["guide/portuguese/c/if/index.md"]},{"number":21608,"updated_at":"2018-11-15T19:46:41Z","username":"WilliamPrb","title":"Portuguese title changes","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/add-placeholder-text-to-a-text-field.portuguese.md"]},{"number":21612,"updated_at":"2018-11-15T19:46:43Z","username":"WilliamPrb","title":"Update the titles for portuguese","filenames":["curriculum/challenges/portuguese/06-information-security-and-quality-assurance/advanced-node-and-express/announce-new-users.portuguese.md"]},{"number":21623,"updated_at":"2018-11-05T07:41:00Z","username":"lsomacruzl","title":"Update Index to add an image of the UDP frame","filenames":["guide/spanish/network-engineering/udp-header/index.md"]},{"number":21629,"updated_at":"2018-11-15T19:46:44Z","username":"WilliamPrb","title":"Update the titles for portuguese","filenames":["curriculum/challenges/portuguese/03-front-end-libraries/sass/store-data-with-sass-variables.portuguese.md"]},{"number":21632,"updated_at":"2018-11-15T19:46:46Z","username":"WilliamPrb","title":"Update the titles for portuguese","filenames":["curriculum/challenges/portuguese/03-front-end-libraries/sass/apply-a-style-until-a-condition-is-met-with-while.portuguese.md"]},{"number":21636,"updated_at":"2018-11-15T19:46:47Z","username":"WilliamPrb","title":"Update the titles for portuguese","filenames":["curriculum/challenges/portuguese/03-front-end-libraries/sass/create-reusable-css-with-mixins.portuguese.md"]},{"number":21638,"updated_at":"2018-11-12T09:42:11Z","username":"saravannann","title":"Added more options with examples and numerical format for providing permissions","filenames":["guide/english/bash/bash-chmod/index.md"]},{"number":21640,"updated_at":"2018-11-15T19:46:49Z","username":"WilliamPrb","title":"Update the titles for portuguese","filenames":["curriculum/challenges/portuguese/03-front-end-libraries/sass/extend-one-set-of-css-styles-to-another-element.portuguese.md"]},{"number":21643,"updated_at":"2018-11-06T09:05:43Z","username":"lsomacruzl","title":"brief note at the end added","filenames":["guide/spanish/network-engineering/osi-layers/index.md"]},{"number":21650,"updated_at":"2018-11-06T09:17:41Z","username":"Diego-Zen","title":"FIX coherence and context in two lines of text in guide php index.md","filenames":["guide/spanish/php/index.md"]},{"number":21672,"updated_at":"2018-10-29T05:44:15Z","username":"chitak","title":"Update Translation for Chinese","filenames":["guide/chinese/python/if-elif-else-statements/index.md"]},{"number":21673,"updated_at":"2018-10-20T16:26:42Z","username":"CosmicSnowman","title":"Updated Cross Multiply with definition and example","filenames":["guide/english/mathematics/cross-multiply/index.md"]},{"number":21720,"updated_at":"2018-11-17T11:34:24Z","username":"mimikaan","title":"C stack implementation using array","filenames":["guide/english/c/arrays/index.md"]},{"number":21761,"updated_at":"2018-11-05T09:21:10Z","username":"wangtian78","title":"change some translations","filenames":["guide/chinese/c/index.md"]},{"number":21777,"updated_at":"2018-11-15T19:46:50Z","username":"jennyfive","title":"Improve translation of add-elements-within-your-bootstrap-wells.spanish.md","filenames":["curriculum/challenges/spanish/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.spanish.md"]},{"number":21804,"updated_at":"2018-11-25T05:53:28Z","username":"ricardotenorio","title":"Fix: Code example and translation","filenames":["guide/portuguese/java/abstract-class/index.md"]},{"number":21821,"updated_at":"2018-11-24T20:02:55Z","username":"gmfcd128","title":"Virtualbox article updated","filenames":["guide/chinese/virtualbox/index.md"]},{"number":21824,"updated_at":"2018-11-24T20:07:35Z","username":"diegosiqueir4","title":"Fixing Portuguese translation & update description","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.portuguese.md"]},{"number":21834,"updated_at":"2018-11-27T05:01:08Z","username":"abbeyseto","title":"Electron agregado, desventaja agregada.","filenames":["guide/spanish/javascript/advantages-and-disadvantages-of-javascript/index.md"]},{"number":21848,"updated_at":"2018-11-24T22:45:14Z","username":"theogoulart","title":"Fix translation in Spanish README.md","filenames":["docs/spanish/README.md"]},{"number":21882,"updated_at":"2018-11-24T21:31:09Z","username":"dingjy94","title":"change the text to more readable Chinese","filenames":["curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.chinese.md"]},{"number":21892,"updated_at":"2018-11-12T23:57:16Z","username":"Aingeru72","title":"Fixed Ionic 2 and cordova section translation","filenames":["guide/spanish/ionic/index.md"]},{"number":21909,"updated_at":"2018-11-12T23:57:28Z","username":"Aingeru72","title":"Code comments translated","filenames":["guide/spanish/java/variables/index.md"]},{"number":21912,"updated_at":"2018-11-12T23:57:33Z","username":"Ding-Fan","title":"Update code format, change MDN reference url","filenames":["guide/chinese/css/background-opacity/index.md"]},{"number":21915,"updated_at":"2018-10-29T05:44:37Z","username":"kalock","title":"Update Translation for Chinese","filenames":["guide/chinese/css/background-opacity/index.md"]},{"number":21917,"updated_at":"2018-11-12T23:57:40Z","username":"ricardotenorio","title":"Fix: Typos and Code translation","filenames":["guide/portuguese/java/variables/index.md"]},{"number":21943,"updated_at":"2018-11-07T06:16:14Z","username":"Aingeru72","title":"Fix markdown format","filenames":["guide/spanish/angular/index.md"]},{"number":21945,"updated_at":"2018-11-12T23:58:10Z","username":"diegosiqueir4","title":"Improving PT-BR description of abs () function","filenames":["guide/portuguese/python/abs-function/index.md"]},{"number":21966,"updated_at":"2018-11-12T23:58:35Z","username":"Ding-Fan","title":"Update translation, update code format","filenames":["guide/chinese/javascript/booleans/index.md"]},{"number":21977,"updated_at":"2018-12-05T16:18:05Z","username":"chitak","title":"Update Chinese Translation and Fix Indentation","filenames":["guide/chinese/python/bool-function/index.md"]},{"number":21983,"updated_at":"2018-11-12T23:58:54Z","username":"ricardotenorio","title":"Fix: Title","filenames":["guide/portuguese/hibernate/index.md"]},{"number":21984,"updated_at":"2018-11-12T23:58:56Z","username":"RapLife1121217","title":"Added example images to \"Generations\"","filenames":["guide/spanish/computer-hardware/gpu/index.md"]},{"number":21990,"updated_at":"2018-11-12T23:59:01Z","username":"kalock","title":"Update Translation for Chinese","filenames":["guide/chinese/go/functions/index.md"]},{"number":22001,"updated_at":"2018-11-12T23:59:14Z","username":"diegosiqueir4","title":"Improving description & fixing translation issues","filenames":["guide/portuguese/python/anaconda/index.md"]},{"number":22052,"updated_at":"2018-11-12T23:59:51Z","username":"kalock","title":"Update Translation for Chinese","filenames":["guide/chinese/c/hello-world/index.md"]},{"number":22061,"updated_at":"2018-11-13T00:00:00Z","username":"Elvictor01","title":"update number to forms of acceptance","filenames":["guide/spanish/agile/acceptance-testing/index.md"]},{"number":22064,"updated_at":"2018-10-28T19:46:06Z","username":"Aingeru72","title":"Some translation corrections","filenames":["guide/spanish/bootstrap/index.md"]},{"number":22065,"updated_at":"2018-11-13T00:00:05Z","username":"BlackTigerRoar","title":"Update index.md with ideal scrum team headcount numbers","filenames":["guide/chinese/agile/index.md"]},{"number":22079,"updated_at":"2018-11-13T00:00:14Z","username":"Thyago","title":"Translations corrections and improvements","filenames":["guide/portuguese/php/sessions/index.md"]},{"number":22089,"updated_at":"2018-11-07T00:34:05Z","username":"BlackTigerRoar","title":"Adding explanation about EPIC","filenames":["guide/chinese/agile/epics/index.md"]},{"number":22090,"updated_at":"2018-11-13T00:00:22Z","username":"chitak","title":"Update Chinese Translation","filenames":["guide/chinese/python/setting-up-python-web-framework-django-and-flask/index.md"]},{"number":22092,"updated_at":"2018-11-13T00:00:24Z","username":"ruthiel","title":"Small language corrections - Portuguese","filenames":["guide/portuguese/design-patterns/index.md","guide/portuguese/design-patterns/object-oriented-programming/index.md"]},{"number":22095,"updated_at":"2018-11-15T19:46:58Z","username":"gbaste","title":"Translate all titles to spanish","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/es6/compare-scopes-of-the-var-and-let-keywords.spanish.md"]},{"number":22101,"updated_at":"2018-11-13T00:00:34Z","username":"diegosiqueir4","title":"Fixing small translation issues","filenames":["docs/portuguese/README.md"]},{"number":22103,"updated_at":"2018-11-07T22:18:10Z","username":"BlackTigerRoar","title":"Adding a sentence about SM","filenames":["guide/chinese/agile/scrum/index.md"]},{"number":22110,"updated_at":"2018-11-26T09:37:56Z","username":"niklasarnitz","title":"Update basic-equations.json","filenames":["curriculum/math-challenges/32-linear-equations/basic-equations.json"]},{"number":22114,"updated_at":"2018-11-07T22:28:49Z","username":"BlackTigerRoar","title":"Adding words about backlog","filenames":["guide/chinese/agile/sprint-backlog/index.md"]},{"number":22115,"updated_at":"2018-11-15T19:47:02Z","username":"gbaste","title":"Translate all titles to spanish","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/es6/write-higher-order-arrow-functions.spanish.md"]},{"number":22120,"updated_at":"2018-11-07T00:56:55Z","username":"BlackTigerRoar","title":"Adding words about Sprint time frame","filenames":["guide/chinese/agile/sprints/index.md"]},{"number":22123,"updated_at":"2018-11-07T22:29:45Z","username":"Ding-Fan","title":"Change localeTitle","filenames":["guide/chinese/neovim/index.md"]},{"number":22124,"updated_at":"2018-11-13T00:00:46Z","username":"Thyago","title":"Improvements to translation","filenames":["guide/portuguese/php/while/index.md"]},{"number":22128,"updated_at":"2018-11-15T19:47:03Z","username":"gbaste","title":"Translate all titles to spanish","filenames":["curriculum/challenges/spanish/09-certificates/responsive-web-design-certificate/responsive-web-design-certificate.spanish.md"]},{"number":22133,"updated_at":"2018-11-15T19:47:04Z","username":"gbaste","title":"Translate all titles to spanish","filenames":["curriculum/challenges/spanish/09-certificates/legacy-front-end-certificate/legacy-front-end-certificate.spanish.md"]},{"number":22139,"updated_at":"2018-11-13T00:00:57Z","username":"Thyago","title":"Small translation improvements","filenames":["guide/portuguese/php/variable-basics/index.md"]},{"number":22143,"updated_at":"2018-11-13T00:01:02Z","username":"manusoler","title":"Correct some mistakes","filenames":["guide/spanish/linux/basic-linux-commands/index.md"]},{"number":22152,"updated_at":"2018-11-13T00:01:09Z","username":"Thyago","title":"Small translation improvements","filenames":["guide/portuguese/php/switch/index.md"]},{"number":22154,"updated_at":"2018-11-07T22:45:21Z","username":"gregomartinz","title":"Added android tutorials","filenames":["guide/spanish/android-development/index.md"]},{"number":22156,"updated_at":"2018-11-13T00:01:10Z","username":"johnnylost","title":"Typos and internal links review.","filenames":["docs/italian/CONTRIBUTING.md"]},{"number":22157,"updated_at":"2018-11-07T22:45:55Z","username":"Elvictor01","title":"رقم التحديث","filenames":["guide/arabic/agile/acceptance-testing/index.md"]},{"number":22162,"updated_at":"2018-11-07T22:47:39Z","username":"gregomartinz","title":"Added some tutorial for angularjs","filenames":["guide/spanish/angularjs/index.md"]},{"number":22168,"updated_at":"2018-11-15T19:47:06Z","username":"bcasasus","title":"Translate titles and inline comments to Spanish","filenames":["curriculum/challenges/spanish/01-responsive-web-design/css-grid/add-columns-with-grid-template-columns.spanish.md"]},{"number":22171,"updated_at":"2018-11-07T22:49:10Z","username":"gregomartinz","title":"Added a beginner guide for CSS","filenames":["guide/spanish/css/index.md"]},{"number":22173,"updated_at":"2018-11-13T00:01:29Z","username":"manusoler","title":"Translation mistakes corrected and more info","filenames":["guide/spanish/linux/10-simple-and-useful-linux-commands/index.md"]},{"number":22177,"updated_at":"2018-11-07T22:50:24Z","username":"gregomartinz","title":"Recurso: Variables boolenas en JS","filenames":["guide/spanish/javascript/booleans/index.md"]},{"number":22180,"updated_at":"2018-11-13T00:01:36Z","username":"gregomartinz","title":"Recurso: conceptos básicos","filenames":["guide/spanish/docker/index.md"]},{"number":22182,"updated_at":"2018-11-13T00:01:39Z","username":"Thyago","title":"Translation improvements","filenames":["guide/portuguese/php/php-echo-print/index.md"]},{"number":22185,"updated_at":"2018-11-13T00:01:43Z","username":"manusoler","title":"Added more info in some concepts","filenames":["guide/spanish/linux/common-terms-every-linux-user-should-know/index.md"]},{"number":22198,"updated_at":"2018-11-13T00:01:56Z","username":"Thyago","title":"Translation and description improvements","filenames":["guide/portuguese/php/php-syntax/index.md"]},{"number":22206,"updated_at":"2018-11-13T00:02:05Z","username":"manusoler","title":"Types of shells explanation","filenames":["guide/spanish/linux/the-anatomy-of-the-linux-command-line/index.md"]},{"number":22207,"updated_at":"2018-11-13T00:02:06Z","username":"JiDarwish","title":"Added new javascript video resource","filenames":["guide/arabic/javascript/additional-javascript-resources/index.md"]},{"number":22212,"updated_at":"2018-11-17T10:09:05Z","username":"n1b0r","title":"Python list nested list comprehension","filenames":["guide/english/python/lists/list-comprehension/index.md"]},{"number":22213,"updated_at":"2018-11-13T00:02:14Z","username":"manusoler","title":"Fixed commands table","filenames":["guide/spanish/linux/the-command-prompt/index.md"]},{"number":22249,"updated_at":"2018-11-13T00:02:53Z","username":"kalock","title":"Update Translation for Chinese","filenames":["guide/chinese/c/for/index.md"]},{"number":22264,"updated_at":"2018-11-06T10:12:37Z","username":"cocoataster","title":"Correct typos and expressions","filenames":["guide/spanish/swift/index.md"]},{"number":22281,"updated_at":"2018-11-13T00:03:15Z","username":"jons11","title":"añadir enlace Guest Additions al articulo","filenames":["guide/spanish/virtualbox/index.md"]},{"number":22297,"updated_at":"2018-11-13T00:03:33Z","username":"kalock","title":"Update Translation for Chinese","filenames":["guide/chinese/bash/bash-cat/index.md"]},{"number":22301,"updated_at":"2018-11-15T19:47:07Z","username":"bcasasus","title":"Traslate section titles and comments","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/regular-expressions/check-for-all-or-none.spanish.md"]},{"number":22328,"updated_at":"2018-12-09T02:36:47Z","username":"justingiffard","title":"Fixed example 2 so that its runnable","filenames":["guide/english/csharp/async-await/index.md"]},{"number":22346,"updated_at":"2018-11-13T00:04:16Z","username":"prpgleto","title":"Update index.md with some improvements to Portuguese grammar.","filenames":["guide/portuguese/swift/index.md"]},{"number":22370,"updated_at":"2018-10-20T12:13:31Z","username":"rodoviario","title":"translation: Spanish","filenames":["guide/spanish/html/comments-in-html/index.md"]},{"number":22383,"updated_at":"2018-11-21T22:21:12Z","username":"hrred1","title":"RTL Support","filenames":["guide/arabic/wordpress/index.md"]},{"number":22393,"updated_at":"2018-10-20T12:12:56Z","username":"rodoviario","title":"translation: Spanish","filenames":["guide/spanish/html/css-classes/index.md"]},{"number":22406,"updated_at":"2018-10-28T19:52:35Z","username":"GuillemPM","title":"fix(guide): Improve spanish translations","filenames":["guide/spanish/react/component/index.md"]},{"number":22412,"updated_at":"2018-10-28T19:52:56Z","username":"andyandyce","title":"Translated the php code","filenames":["guide/spanish/php/hello-world/index.md"]},{"number":22424,"updated_at":"2018-11-08T06:11:19Z","username":"giuliannosbrugnera","title":"Correct both Snape's quote and translation","filenames":["guide/portuguese/accessibility/accessibility-basics/index.md"]},{"number":22430,"updated_at":"2018-10-28T19:53:51Z","username":"andyandyce","title":"Code translated","filenames":["guide/spanish/csharp/hello-world/index.md"]},{"number":22434,"updated_at":"2018-11-15T19:47:09Z","username":"bcasasus","title":"transalte section titles and code comments","filenames":["curriculum/challenges/spanish/03-front-end-libraries/redux/combine-multiple-reducers.spanish.md"]},{"number":22444,"updated_at":"2018-10-28T19:54:10Z","username":"cocoataster","title":"Add style and correct syntax","filenames":["guide/spanish/swift/functions/index.md"]},{"number":22457,"updated_at":"2018-11-13T00:05:49Z","username":"andyandyce","title":"Minor changes","filenames":["guide/spanish/php/PHP Data Types/index.md"]},{"number":22458,"updated_at":"2018-11-13T00:05:51Z","username":"adrianchira","title":"Changed var to const","filenames":["guide/spanish/javascript/falsy-values/index.md"]},{"number":22469,"updated_at":"2018-10-29T05:30:40Z","username":"hrred1","title":"Begin translation to English","filenames":["docs/arabic/CONTRIBUTING.md"]},{"number":22471,"updated_at":"2018-11-13T00:06:03Z","username":"ouerghi","title":"Correction du mot dans la traduction arabe","filenames":["guide/arabic/agile/scrum/index.md"]},{"number":22475,"updated_at":"2018-11-13T00:06:07Z","username":"adrianchira","title":"Changed var to const","filenames":["guide/portuguese/javascript/falsy-values/index.md"]},{"number":22477,"updated_at":"2018-11-13T00:06:08Z","username":"andyandyce","title":"Translation changes","filenames":["guide/spanish/php/switch/index.md"]},{"number":22481,"updated_at":"2018-11-24T21:41:41Z","username":"GuillemPM","title":"fix(guide): Improve spanish translations","filenames":["guide/spanish/react/installation/index.md"]},{"number":22485,"updated_at":"2018-11-25T00:46:29Z","username":"CleoAguiar","title":"Add instruções para ativar e desativar Virtualenv","filenames":["guide/portuguese/python/virtual-environments/index.md"]},{"number":22492,"updated_at":"2018-11-24T22:44:59Z","username":"KrsBB","title":"Update build-a-light-bright-app.spanish.md","filenames":["curriculum/challenges/spanish/08-coding-interview-prep/take-home-projects/build-a-light-bright-app.spanish.md"]},{"number":22496,"updated_at":"2018-11-25T00:46:47Z","username":"xandechaves","title":"Adicione o texto \"Minhas mudanças\" no artigo","filenames":["guide/portuguese/developer-tools/npm/index.md"]},{"number":22500,"updated_at":"2018-11-25T00:46:52Z","username":"edbrito","title":"Correção da tradução","filenames":["guide/portuguese/working-in-tech/women-in-tech/index.md"]},{"number":22513,"updated_at":"2018-12-03T17:58:45Z","username":"jay0618","title":"Translate some docs to traditional Chinese","filenames":["docs/traditional chinese/CONTRIBUTING.md","docs/traditional chinese/README.md","docs/traditional chinese/how-to-catch-outgoing-emails-locally.md"]},{"number":22524,"updated_at":"2018-11-13T00:07:03Z","username":"xandechaves","title":"Adicionar o texto \"dicas para lot\" no artigo","filenames":["guide/portuguese/android-development/core-components/index.md"]},{"number":22543,"updated_at":"2018-11-25T00:49:20Z","username":"xandechaves","title":"adicionar o texto \"memoria de mobile\"","filenames":["guide/portuguese/computer-hardware/ram/index.md"]},{"number":22549,"updated_at":"2018-11-13T00:07:25Z","username":"Cesar-Jim","title":"Tweaked first and 2nd sentences of article.","filenames":["guide/spanish/html/attributes/table-border-attribute/index.md"]},{"number":22555,"updated_at":"2018-12-10T22:11:00Z","username":"Exvilia","title":"French doc translation","filenames":["docs/French/README.md","docs/French/how-to-catch-outgoing-emails-locally.md","docs/French/how-to-setup-freecodecamp-locally.md","docs/French/how-to-work-on-coding-challenges.md","docs/French/how-to-work-on-guide-articles.md","docs/French/style-guide-for-curriculum-challenges.md","docs/French/style-guide-for-guide-articles.md"]},{"number":22562,"updated_at":"2018-11-09T05:39:04Z","username":"Cesar-Jim","title":"Typo fixed","filenames":["guide/spanish/html/lists/index.md"]},{"number":22580,"updated_at":"2018-11-09T06:00:09Z","username":"Cesar-Jim","title":"Switching words","filenames":["guide/spanish/html/elements/p-tag/index.md"]},{"number":22585,"updated_at":"2018-11-25T00:49:02Z","username":"Mentifresh","title":"Fixed several grammatical errors in spanish translation","filenames":["guide/spanish/accessibility/accessibility-basics/index.md"]},{"number":22589,"updated_at":"2018-11-25T00:57:09Z","username":"paiva-thiago","title":"Correção de tradução e acréscimo de detalhes técnicos;","filenames":["guide/portuguese/javascript/html-dom/index.md"]},{"number":22601,"updated_at":"2018-11-25T00:57:24Z","username":"Cesar-Jim","title":"Fixing title and one sentence","filenames":["guide/spanish/documentation/index.md"]},{"number":22602,"updated_at":"2018-11-25T18:01:35Z","username":"AndrewStill","title":"Added a \"What can go Here\" section","filenames":["guide/english/html/elements/head-tag/index.md"]},{"number":22611,"updated_at":"2018-11-13T00:07:58Z","username":"Cesar-Jim","title":"Adding accent to the word \"icono\"","filenames":["guide/spanish/bootstrap/icons/index.md"]},{"number":22618,"updated_at":"2018-11-09T06:16:35Z","username":"Cesar-Jim","title":"Adding 1 accent to a word","filenames":["guide/spanish/bootstrap/panels/index.md"]},{"number":22619,"updated_at":"2018-11-09T06:16:51Z","username":"dariag00","title":"Update index.md with more information about Activities and Views","filenames":["guide/spanish/android-development/core-components/index.md"]},{"number":22629,"updated_at":"2018-11-13T00:08:11Z","username":"Cesar-Jim","title":"Choice of words on 1st a 2nd sentences.","filenames":["guide/spanish/agile/crystal/index.md"]},{"number":22635,"updated_at":"2018-11-15T19:47:24Z","username":"dariag00","title":"Fixed Grammar Errors","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-form-element.spanish.md"]},{"number":22643,"updated_at":"2018-11-25T01:08:25Z","username":"CharlesMarlow","title":"Added framework to Javascript frameworks section","filenames":["guide/spanish/javascript/index.md"]},{"number":22644,"updated_at":"2018-11-25T01:08:32Z","username":"Cesar-Jim","title":"Fixing typos and improving sense in sentences.","filenames":["guide/spanish/bash/bash-man/index.md"]},{"number":22646,"updated_at":"2018-11-25T01:10:00Z","username":"CharlesMarlow","title":"Added framework to Javascript frameworks section","filenames":["guide/arabic/javascript/index.md"]},{"number":22647,"updated_at":"2018-11-25T01:01:52Z","username":"dariag00","title":"Fixed Spanish Grammar Errorrs","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/import-a-google-font.spanish.md"]},{"number":22652,"updated_at":"2018-11-25T01:10:52Z","username":"CharlesMarlow","title":"Added framework to Javascript frameworks section","filenames":["guide/chinese/javascript/index.md"]},{"number":22661,"updated_at":"2018-10-28T19:54:36Z","username":"GuillemPM","title":"fix(guide): Improve spanish translations","filenames":["guide/spanish/react/index.md"]},{"number":22678,"updated_at":"2018-11-13T00:09:09Z","username":"d3c3pt10n","title":"My changes","filenames":["guide/portuguese/c/if/index.md"]},{"number":22700,"updated_at":"2018-10-23T00:13:42Z","username":"KrsBB","title":"A-href-attribute__English-to-Spanish-translation.md","filenames":["guide/spanish/html/attributes/a-href-attribute/index.md"]},{"number":22704,"updated_at":"2018-11-25T01:19:56Z","username":"rodoviario","title":"Update add-placeholder-text-to-a-text-field.spanish.md","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/add-placeholder-text-to-a-text-field.spanish.md"]},{"number":22710,"updated_at":"2018-11-25T01:24:16Z","username":"rodoviario","title":"Update check-radio-buttons-and-checkboxes-by-default.spanish.md","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/check-radio-buttons-and-checkboxes-by-default.spanish.md"]},{"number":22712,"updated_at":"2018-11-25T01:24:52Z","username":"rodoviario","title":"Update create-a-bulleted-unordered-list.spanish.md","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list.spanish.md"]},{"number":22720,"updated_at":"2018-11-25T02:20:40Z","username":"RonanFelipe","title":"Small change in the title translation.","filenames":["guide/portuguese/python/what-is-python-used-for/index.md"]},{"number":22730,"updated_at":"2018-11-13T00:10:22Z","username":"sb7896","title":"Add option for Developer tools inside browsers","filenames":["guide/spanish/developer-tools/index.md"]},{"number":22736,"updated_at":"2018-11-13T00:10:27Z","username":"Cesar-Jim","title":"Adding accent to title","filenames":["guide/spanish/html/symbols/index.md"]},{"number":22739,"updated_at":"2018-11-15T19:47:37Z","username":"liagiu","title":"Improve Portuguese translation for add-alt-text-to-an-image-for-access…","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.portuguese.md"]},{"number":22744,"updated_at":"2018-11-13T00:10:39Z","username":"Cesar-Jim","title":"Fixing punctuation and sense of titles","filenames":["guide/spanish/html/mailto-links/index.md"]},{"number":22746,"updated_at":"2018-11-15T19:47:39Z","username":"ignaciogc","title":"Translated commented section of Solución","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.spanish.md"]},{"number":22749,"updated_at":"2018-11-15T19:47:40Z","username":"dariag00","title":"Grammar Errors fixed","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.spanish.md"]},{"number":22754,"updated_at":"2018-11-25T02:21:02Z","username":"dariag00","title":"Fixed Translation Errors","filenames":["curriculum/challenges/spanish/08-coding-interview-prep/data-structures/add-a-new-element-to-a-binary-search-tree.spanish.md"]},{"number":22759,"updated_at":"2018-11-25T02:21:07Z","username":"d3c3pt10n","title":"My changes - Variables of shell","filenames":["guide/portuguese/linux/shell-scripting/index.md"]},{"number":22764,"updated_at":"2018-11-13T00:11:07Z","username":"carleshf","title":"Improved the language used - avoid automatic translation errors","filenames":["guide/spanish/vim/index.md"]},{"number":22783,"updated_at":"2018-11-13T00:11:27Z","username":"wederribas","title":"Fix broken markdown for Youtube links with plain HTML","filenames":["guide/portuguese/react/index.md"]},{"number":22792,"updated_at":"2018-11-13T00:11:34Z","username":"RonanFelipe","title":"Change in the text.","filenames":["guide/portuguese/python/what-is-python-used-for/index.md"]},{"number":22809,"updated_at":"2018-11-13T00:11:52Z","username":"RonanFelipe","title":"Change in the word Telegram","filenames":["guide/portuguese/python/what-is-python-used-for/index.md"]},{"number":22812,"updated_at":"2018-11-13T00:11:57Z","username":"felipesen","title":"Added some Portuguese translations in the article.","filenames":["guide/portuguese/agile/moscow/index.md"]},{"number":22813,"updated_at":"2018-10-28T19:55:07Z","username":"elloza","title":"Spelling checking","filenames":["guide/spanish/android-development/index.md"]},{"number":22828,"updated_at":"2018-11-13T00:12:15Z","username":"carleshf","title":"Improved description of each command.","filenames":["guide/spanish/vim/basic-usage/index.md"]},{"number":22836,"updated_at":"2018-11-13T00:12:25Z","username":"sb7896","title":"Add option for Developer tools inside browsers","filenames":["guide/arabic/developer-tools/index.md"]},{"number":22841,"updated_at":"2018-11-13T00:12:30Z","username":"wwewsm","title":"介紹","filenames":["guide/chinese/computer-science/what-is-an-sdk/index.md"]},{"number":22848,"updated_at":"2018-11-13T00:12:39Z","username":"wwewsm","title":"add extra material","filenames":["guide/chinese/algorithms/binary-search-trees/index.md"]},{"number":22853,"updated_at":"2018-11-13T00:12:43Z","username":"wwewsm","title":"add extra material","filenames":["guide/chinese/android-development/index.md"]},{"number":22855,"updated_at":"2018-11-13T00:12:46Z","username":"wederribas","title":"Fix wrong React translation and exporting keyword","filenames":["guide/portuguese/react/your-first-app/index.md"]},{"number":22857,"updated_at":"2018-11-13T00:12:49Z","username":"wwewsm","title":"add extra material","filenames":["guide/chinese/bsd-os/index.md"]},{"number":22858,"updated_at":"2018-11-13T00:12:51Z","username":"sb7896","title":"Add option for Developer tools inside browsers","filenames":["guide/chinese/developer-tools/index.md"]},{"number":22859,"updated_at":"2018-11-25T02:21:13Z","username":"RonanFelipe","title":"Translation to portuguese.","filenames":["guide/portuguese/python/class/index.md"]},{"number":22861,"updated_at":"2018-11-25T02:21:19Z","username":"wwewsm","title":"add extra materials","filenames":["guide/chinese/devops/ansible/index.md"]},{"number":22863,"updated_at":"2018-11-25T02:21:24Z","username":"d3c3pt10n","title":"Correction and Commands additional","filenames":["guide/portuguese/linux/basic-linux-commands/index.md"]},{"number":22880,"updated_at":"2018-11-25T04:35:41Z","username":"sb7896","title":"Add option for Developer tools inside browsers","filenames":["guide/portuguese/developer-tools/index.md"]},{"number":22882,"updated_at":"2018-11-25T02:33:24Z","username":"carleshf","title":"First update - Need more documentation on Vim's register to edit the section.","filenames":["guide/spanish/vim/copy-and-paste/index.md"]},{"number":22886,"updated_at":"2018-11-24T22:44:31Z","username":"Lumpenstein","title":"Updated index.md of tslint (config and docs)","filenames":["guide/english/typescript/linter/index.md"]},{"number":22889,"updated_at":"2018-11-25T02:23:11Z","username":"RonanFelipe","title":"Translation to portuguese.","filenames":["guide/portuguese/python/class/index.md"]},{"number":22892,"updated_at":"2018-11-13T00:13:29Z","username":"alohasolamente","title":"Grammatical check and correction","filenames":["guide/spanish/python/installing-and-using-python-3/index.md"]},{"number":22893,"updated_at":"2018-11-13T00:13:31Z","username":"jons11","title":"añadir información","filenames":["guide/spanish/tools/image-editor/index.md"]},{"number":22899,"updated_at":"2018-11-13T00:13:39Z","username":"d3c3pt10n","title":"Additional Terms","filenames":["guide/portuguese/linux/common-terms-every-linux-user-should-know/index.md"]},{"number":22910,"updated_at":"2018-11-13T00:13:56Z","username":"wederribas","title":"Fix multiples broken translations, with \"Reagir\" being used instead of \"React\"","filenames":["guide/portuguese/react/why-react/index.md"]},{"number":22915,"updated_at":"2018-11-13T00:14:04Z","username":"felipesen","title":"Minor spelling corrections.","filenames":["guide/portuguese/android-development/core-components/index.md"]},{"number":22927,"updated_at":"2018-11-13T00:14:14Z","username":"CleoAguiar","title":"Add translations (portuguese) to python class","filenames":["guide/portuguese/python/class/index.md"]},{"number":22934,"updated_at":"2018-11-15T19:47:48Z","username":"sebastian-alcantara","title":"Improved import-a-google-font.spanish.md translation just a little bit","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/add-an-accessible-date-picker.spanish.md","curriculum/challenges/spanish/01-responsive-web-design/basic-css/import-a-google-font.spanish.md"]},{"number":22936,"updated_at":"2018-11-13T00:14:24Z","username":"wederribas","title":"Fix incorrect proper name translation and phrases with wrong meaning","filenames":["guide/portuguese/react/what-are-react-props/index.md"]},{"number":22950,"updated_at":"2018-11-13T00:14:39Z","username":"wederribas","title":"Fix incorrect proper name translation and phrases with wrong meaning","filenames":["guide/portuguese/react/state/index.md"]},{"number":22968,"updated_at":"2018-10-29T05:31:27Z","username":"A7med23","title":"translated the first paragraph.","filenames":["docs/arabic/CONTRIBUTING.md"]},{"number":22970,"updated_at":"2018-11-13T00:15:06Z","username":"geraldooi","title":"Add more tools to 更多信息","filenames":["guide/chinese/css/colors/index.md"]},{"number":22976,"updated_at":"2018-11-25T02:23:27Z","username":"Derekjohnson277","title":"Os comandos principais devem ser escrito em ingles","filenames":["guide/portuguese/angular/command-line-interface/index.md"]},{"number":22996,"updated_at":"2018-11-30T00:04:28Z","username":"SiddharthaAnand","title":"Add BFS in Java","filenames":["guide/english/algorithms/graph-algorithms/depth-first-search/index.md"]},{"number":23004,"updated_at":"2018-11-27T14:51:56Z","username":"CleoAguiar","title":"Removed duplicate text","filenames":["guide/portuguese/computer-hardware/motherboard/index.md"]},{"number":23017,"updated_at":"2018-11-13T00:15:49Z","username":"elloza","title":"New english content translated commit #20404","filenames":["guide/spanish/machine-learning/logistic-regression/index.md"]},{"number":23030,"updated_at":"2018-11-13T00:16:08Z","username":"elloza","title":"Updated content from commit","filenames":["guide/spanish/python/for-loop-statements/index.md"]},{"number":23032,"updated_at":"2018-11-13T00:16:11Z","username":"esnufkin","title":"modified some mistranslations 修改部分名称","filenames":["guide/chinese/css/background-opacity/index.md"]},{"number":23038,"updated_at":"2018-11-13T00:16:18Z","username":"mmmeyers","title":"Change informal voice to formal","filenames":["guide/spanish/accessibility/accessibility-examples/index.md"]},{"number":23046,"updated_at":"2018-11-13T00:16:29Z","username":"mmmeyers","title":"Change inconsistencies of informal address","filenames":["guide/spanish/agile/acceptance-testing/index.md"]},{"number":23048,"updated_at":"2018-11-13T00:16:33Z","username":"edwinmunguia","title":"I translated the remaining text of the document","filenames":["guide/spanish/php/basic-syntax/index.md"]},{"number":23051,"updated_at":"2018-10-28T19:56:15Z","username":"elloza","title":"fix(guide): Numbering notes in article (Spanish)","filenames":["guide/spanish/agile/acceptance-testing/index.md"]},{"number":23053,"updated_at":"2018-11-13T00:16:38Z","username":"mmmeyers","title":"Fix verb tense to subjunctive","filenames":["guide/spanish/agile/actual-time-estimation/index.md"]},{"number":23056,"updated_at":"2018-11-13T00:16:41Z","username":"don0t","title":"Full text editing","filenames":["guide/spanish/css/background-opacity/index.md"]},{"number":23058,"updated_at":"2018-11-13T00:16:44Z","username":"asanc414","title":"Web Accessibility index.md","filenames":["guide/spanish/accessibility/index.md"]},{"number":23067,"updated_at":"2018-11-13T00:16:56Z","username":"gabrieldomene","title":"Novo parágrafo microcontroladores","filenames":["guide/portuguese/computer-hardware/cpu/index.md"]},{"number":23069,"updated_at":"2018-10-28T19:57:12Z","username":"don0t","title":"Text Editing","filenames":["guide/spanish/css/background-size/index.md"]},{"number":23080,"updated_at":"2018-10-28T19:57:48Z","username":"undostres321","title":"Modified spanish translate","filenames":["guide/spanish/git/gitignore/index.md"]},{"number":23085,"updated_at":"2018-11-13T00:17:18Z","username":"don0t","title":"Text Editing","filenames":["guide/spanish/css/background/index.md"]},{"number":23086,"updated_at":"2018-11-15T19:47:53Z","username":"edwinmunguia","title":"Translated remainning header texts and some paragraphs into Spanish","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.spanish.md"]},{"number":23092,"updated_at":"2018-10-28T19:58:49Z","username":"olvlo","title":"Improved target language, fixed informal \"you\"","filenames":["guide/spanish/accessibility/accessibility-basics/index.md"]},{"number":23094,"updated_at":"2018-11-15T19:47:54Z","username":"edwinmunguia","title":"Translated Header Texts into Spanish","filenames":["curriculum/challenges/spanish/09-certificates/data-visualization-certificate/data-visualization-certificate.spanish.md"]},{"number":23097,"updated_at":"2018-10-29T05:32:50Z","username":"hrred1","title":"Translation of the README.md file [version Arabic]","filenames":["docs/arabic/README.md"]},{"number":23104,"updated_at":"2018-10-28T19:59:56Z","username":"edwinmunguia","title":"Corrected the spanish Sintax for the main title","filenames":["guide/spanish/sql/sql-between-operator/index.md"]},{"number":23107,"updated_at":"2018-11-13T00:17:40Z","username":"teknotica","title":"Translation improvements in several places. Fixing links and videos.","filenames":["guide/spanish/react/index.md"]},{"number":23110,"updated_at":"2018-11-13T00:17:45Z","username":"don0t","title":"Text editing","filenames":["guide/spanish/css/before-selector/index.md"]},{"number":23111,"updated_at":"2018-11-13T00:17:47Z","username":"calbertora","title":"Otra forma de ordenamiento","filenames":["guide/spanish/sql/sql-order-by-keyword/index.md"]},{"number":23124,"updated_at":"2018-11-13T00:18:05Z","username":"paiva-thiago","title":"Complementação de conteúdo.","filenames":["guide/portuguese/hibernate/index.md"]},{"number":23132,"updated_at":"2018-11-15T19:47:56Z","username":"edwinmunguia","title":"Translated remaining English text into Spanish","filenames":["curriculum/challenges/spanish/01-responsive-web-design/css-flexbox/add-flex-superpowers-to-the-tweet-embed.spanish.md"]},{"number":23143,"updated_at":"2018-11-15T19:47:57Z","username":"Peres22Kbron","title":"Please add suggestions/modifications in the translated document.","filenames":["curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/regular-expressions/check-for-all-or-none.portuguese.md"]},{"number":23160,"updated_at":"2018-10-30T16:47:30Z","username":"paiva-thiago","title":"Adequações","filenames":["guide/portuguese/javascript/html-dom-innerhtml-property/index.md"]},{"number":23166,"updated_at":"2018-10-28T20:00:42Z","username":"elloza","title":"Docs(#20208) modified in spanish version too","filenames":["guide/spanish/javascript/es6/arrow-functions/index.md"]},{"number":23172,"updated_at":"2018-11-24T08:04:03Z","username":"alojzz","title":"change var to let","filenames":["guide/english/javascript/loops/for-in-loop/index.md"]},{"number":23183,"updated_at":"2018-11-22T08:52:13Z","username":"rajesh996","title":"Added XAMPP installation for Apache","filenames":["guide/english/apache/index.md"]},{"number":23187,"updated_at":"2018-11-17T05:27:51Z","username":"ambozeman","title":"added link to tables with one header","filenames":["guide/english/accessibility/accessibility-examples/index.md"]},{"number":23191,"updated_at":"2018-10-28T20:01:14Z","username":"don0t","title":"Text editing and translation","filenames":["guide/spanish/css/borders/index.md"]},{"number":23196,"updated_at":"2018-11-13T00:19:32Z","username":"adrianchavez123","title":"Add additional commands to vim documentation","filenames":["guide/spanish/vim/basic-usage/index.md"]},{"number":23205,"updated_at":"2018-11-13T00:19:46Z","username":"Attilio-Galzerano","title":"Add images and english terms for the three git states","filenames":["guide/portuguese/git/index.md"]},{"number":23220,"updated_at":"2018-11-13T00:20:03Z","username":"tacoelho","title":"Translation improvement","filenames":["guide/portuguese/html/css-classes/index.md"]},{"number":23226,"updated_at":"2018-11-15T19:48:02Z","username":"riodajs","title":"Changet text \"Usted especifique\" to \"tú especificas\"","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/use-rgb-values-to-color-elements.spanish.md"]},{"number":23235,"updated_at":"2018-11-24T18:50:07Z","username":"CosmicSnowman","title":"Added to definition and added Regular vs Irregular","filenames":["guide/english/mathematics/hexagon/index.md"]},{"number":23261,"updated_at":"2018-11-25T02:46:03Z","username":"riodajs","title":"Change some words conjugations.","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/use-css-variables-to-change-several-elements-at-once.spanish.md"]},{"number":23273,"updated_at":"2018-11-13T00:21:06Z","username":"felipesen","title":"Added some corrections and translations","filenames":["guide/portuguese/sql/sql-syntax/index.md"]},{"number":23279,"updated_at":"2018-11-13T00:21:16Z","username":"sofiabsilva","title":"fixed & added translations in examples","filenames":["guide/portuguese/javascript/if-else-statement/index.md"]},{"number":23282,"updated_at":"2018-12-03T09:54:42Z","username":"drakeperezpantoja","title":"Create Goals for Game Design File","filenames":["guide/english/game-development/Goals For Game Design"]},{"number":23293,"updated_at":"2018-11-13T00:21:38Z","username":"tacoelho","title":"Minor translation improvement","filenames":["guide/portuguese/python/index.md"]},{"number":23297,"updated_at":"2018-11-15T19:48:08Z","username":"riodajs","title":"Add some words","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/uncomment-html.spanish.md"]},{"number":23303,"updated_at":"2018-10-19T23:22:59Z","username":"Drknessfall","title":"Update index.md","filenames":["guide/portuguese/c/index.md"]},{"number":23314,"updated_at":"2018-11-15T19:48:09Z","username":"riodajs","title":"Update traduction from some words","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/introduction-to-html5-elements.spanish.md"]},{"number":23318,"updated_at":"2018-11-15T19:48:11Z","username":"MatheusBarem","title":"Minor portuguese translation fixes","filenames":["curriculum/challenges/portuguese/06-information-security-and-quality-assurance/advanced-node-and-express/communicate-by-emitting.portuguese.md"]},{"number":23321,"updated_at":"2018-11-15T19:48:12Z","username":"lolabarri","title":"Changed some expressions","filenames":["curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-projects/build-a-tribute-page.spanish.md"]},{"number":23327,"updated_at":"2018-10-28T20:02:02Z","username":"gines-carrascal","title":"Gines Spanish wording review","filenames":["guide/spanish/agile/velocity/index.md","guide/spanish/algorithms/exponentiation/index.md","guide/spanish/cloud-development/index.md","guide/spanish/devops/docker/index.md","guide/spanish/java/generics/index.md"]},{"number":23330,"updated_at":"2018-10-30T16:57:22Z","username":"Andres-ibanez","title":"Correccion de la traduccion en español","filenames":["guide/spanish/accessibility/index.md"]},{"number":23340,"updated_at":"2018-11-15T19:48:14Z","username":"riodajs","title":"Update some words to commons spanish words","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/turn-an-image-into-a-link.spanish.md"]},{"number":23341,"updated_at":"2018-11-15T19:48:15Z","username":"MatheusBarem","title":"Minor portuguese translation fixes","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/basic-css/give-a-background-color-to-a-div-element.portuguese.md"]},{"number":23344,"updated_at":"2018-11-13T00:22:27Z","username":"paiva-thiago","title":"Inclusão da ferramenta DaSilva","filenames":["guide/portuguese/accessibility/accessibility-tools-for-web-developers/index.md"]},{"number":23358,"updated_at":"2018-11-13T00:22:42Z","username":"JGH85","title":"Corrected translation of \"links\"","filenames":["guide/spanish/developer-tools/kubernetes/index.md"]},{"number":23361,"updated_at":"2018-11-13T00:22:45Z","username":"JGH85","title":"fixed translation of \"links\"","filenames":["guide/spanish/tools/image-editor/index.md"]},{"number":23363,"updated_at":"2018-11-13T00:22:49Z","username":"sofiabsilva","title":"Improvements to portuguese translation","filenames":["guide/portuguese/javascript/booleans/index.md"]},{"number":23365,"updated_at":"2018-10-29T22:39:39Z","username":"synga","title":"Better grammar and correct spelling.","filenames":["guide/portuguese/angular/components/index.md"]},{"number":23367,"updated_at":"2018-11-13T00:22:50Z","username":"JGH85","title":"fixed translation of \"Links\"","filenames":["guide/spanish/html/attributes/links/index.md"]},{"number":23379,"updated_at":"2018-11-13T00:23:07Z","username":"JGH85","title":"fixed translation","filenames":["guide/spanish/miscellaneous/web-resources-for-your-learning/index.md"]},{"number":23385,"updated_at":"2018-11-13T00:23:12Z","username":"JGH85","title":"corrected translation","filenames":["guide/spanish/javascript/standard-objects/object/object-prototype-hasownproperty/index.md"]},{"number":23390,"updated_at":"2018-11-15T19:48:17Z","username":"MatheusBarem","title":"Minor translate fixes [Portuguese]","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.portuguese.md"]},{"number":23393,"updated_at":"2018-11-13T00:23:22Z","username":"synga","title":"Improved grammar and corrected spelling.","filenames":["guide/portuguese/angular/lifecycle-hooks/index.md"]},{"number":23401,"updated_at":"2018-11-13T00:23:27Z","username":"suruihuang","title":"updated data_type.md","filenames":["guide/chinese/java/data-types/index.md"]},{"number":23404,"updated_at":"2018-11-15T19:48:20Z","username":"MatheusBarem","title":"Minor translate fixes [Portuguese]","filenames":["curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/basic-data-structures/use-the-delete-keyword-to-remove-object-properties.portuguese.md"]},{"number":23417,"updated_at":"2018-11-13T00:23:45Z","username":"suruihuang","title":"updated table.md","filenames":["guide/chinese/html/tables/index.md"]},{"number":23422,"updated_at":"2018-11-15T19:48:21Z","username":"MatheusBarem","title":"Insert Titles in Portuguese","filenames":["curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/basic-data-structures/generate-an-array-of-all-object-keys-with-object.keys.portuguese.md"]},{"number":23424,"updated_at":"2018-11-13T00:23:52Z","username":"gustavorlobato","title":"Add the text \"de forma a validar\" to article","filenames":["guide/portuguese/machine-learning/deep-learning/index.md"]},{"number":23425,"updated_at":"2018-11-13T00:23:54Z","username":"suruihuang","title":"updated comment.md","filenames":["guide/chinese/html/comments-in-html/index.md"]},{"number":23426,"updated_at":"2018-10-29T22:43:40Z","username":"zd6","title":"translation smoothen index.md","filenames":["guide/chinese/python/if-elif-else-statements/index.md"]},{"number":23431,"updated_at":"2018-11-25T03:02:51Z","username":"synga","title":"Correct spelling and improved grammar.","filenames":["guide/portuguese/angular/data-binding/index.md"]},{"number":23435,"updated_at":"2018-11-13T00:24:01Z","username":"gustavorlobato","title":"Add the text \"semelhantes às utilizadas em funções matemáticas\" to ar…","filenames":["guide/portuguese/machine-learning/deep-learning/index.md"]},{"number":23440,"updated_at":"2018-11-13T00:24:07Z","username":"gustavorlobato","title":"Add the text \"as utilizadas por arquiteturas\" to article.","filenames":["guide/portuguese/machine-learning/deep-learning/index.md"]},{"number":23449,"updated_at":"2018-11-13T00:24:15Z","username":"gustavorlobato","title":"Add the text \"Detecção de Spam\" to article","filenames":["guide/portuguese/machine-learning/natural-language-processing/index.md"]},{"number":23450,"updated_at":"2018-11-13T00:24:17Z","username":"pkinopk","title":"css code fix, translations and subdivisions","filenames":["guide/portuguese/css/background-opacity/index.md"]},{"number":23453,"updated_at":"2018-11-13T00:24:19Z","username":"gustavorlobato","title":"Add the text \"Reconhecimento de Entidades Nomeadas\" to article","filenames":["guide/portuguese/machine-learning/natural-language-processing/index.md"]},{"number":23454,"updated_at":"2018-11-13T00:24:20Z","username":"gustavorlobato","title":"Add the text \"Análise de Sentimentos\" to article","filenames":["guide/portuguese/machine-learning/natural-language-processing/index.md"]},{"number":23456,"updated_at":"2018-11-13T00:24:22Z","username":"caicke","title":"Acréscimo no tópico vantagens do python","filenames":["guide/portuguese/python/index.md"]},{"number":23464,"updated_at":"2018-11-13T00:24:29Z","username":"synga","title":"Improved grammar and corrected spelling.","filenames":["guide/portuguese/angular/pipes/index.md"]},{"number":23472,"updated_at":"2018-11-15T19:48:24Z","username":"Andres-ibanez","title":"Update text","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/add-borders-around-your-elements.spanish.md"]},{"number":23483,"updated_at":"2018-11-13T00:24:47Z","username":"synga","title":"Improved grammar and corrected spelling","filenames":["guide/portuguese/vue/declarative-rendering/index.md"]},{"number":23487,"updated_at":"2018-11-13T00:24:54Z","username":"ruthfagundes","title":"Add texto ao artigo","filenames":["guide/portuguese/logic/algebra-of-logic/index.md"]},{"number":23488,"updated_at":"2018-11-13T00:24:55Z","username":"lilabdel","title":"شرح ووردبريس","filenames":["guide/arabic/wordpress/index.md"]},{"number":23492,"updated_at":"2018-11-13T00:25:02Z","username":"lilabdel","title":"add هنيئا لك","filenames":["guide/arabic/react/hello-world/index.md"]},{"number":23493,"updated_at":"2018-11-13T00:25:04Z","username":"caicke","title":"Acrescentando métodos de ordenação","filenames":["guide/portuguese/algorithms/index.md"]},{"number":23504,"updated_at":"2018-12-05T16:18:12Z","username":"HarrisonLKatz","title":"Added more accurate details on final constant use","filenames":["guide/english/java/final-keyword/index.md"]},{"number":23507,"updated_at":"2018-11-13T00:25:19Z","username":"Alezzy","title":"Consertei a palavra \"definição\"","filenames":["guide/portuguese/robotics/index.md"]},{"number":23510,"updated_at":"2018-11-13T00:25:24Z","username":"pkinopk","title":"lots of translation and CSS code fix","filenames":["guide/portuguese/css/borders/index.md"]},{"number":23513,"updated_at":"2018-11-13T00:25:25Z","username":"ruthfagundes","title":"Correção \"bicondicionais\"","filenames":["guide/portuguese/logic/conditional-and-biconditional-statements/index.md"]},{"number":23515,"updated_at":"2018-11-29T10:40:59Z","username":"AlphaBatzarro","title":"Added two more color tool urls for designers","filenames":["guide/english/css/colors/index.md"]},{"number":23524,"updated_at":"2018-11-25T02:30:53Z","username":"achint769muj","title":"Added few more differences between Python 2 and Python 3","filenames":["guide/english/python/python-2-vs-python-3/index.md"]},{"number":23525,"updated_at":"2018-11-13T00:25:39Z","username":"ruthfagundes","title":"Correções","filenames":["guide/portuguese/logic/dining-philosophers-problem/index.md"]},{"number":23534,"updated_at":"2018-12-07T10:56:26Z","username":"ShashwathJS","title":"Create Annotations","filenames":["guide/english/java/metadata/annotations/index.md"]},{"number":23538,"updated_at":"2018-11-13T00:25:56Z","username":"ruthfagundes","title":"Correções","filenames":["guide/portuguese/logic/knights-and-knaves/index.md"]},{"number":23546,"updated_at":"2018-11-13T00:26:07Z","username":"ruthfagundes","title":"Correções","filenames":["guide/portuguese/logic/logical-operators/index.md"]},{"number":23547,"updated_at":"2018-11-13T00:26:09Z","username":"pkinopk","title":"CSS code fix and lots of translation","filenames":["guide/portuguese/css/comments-in-css/index.md"]},{"number":23550,"updated_at":"2018-11-15T19:48:26Z","username":"sessegolo","title":"Fixed the certificate title translation.","filenames":["curriculum/challenges/portuguese/09-certificates/javascript-algorithms-and-data-structures-certificate/javascript-algorithms-and-data-structures-certificate.portuguese.md"]},{"number":23553,"updated_at":"2018-11-13T00:26:19Z","username":"pkinopk","title":"translations and css code examples fixed","filenames":["guide/portuguese/css/css-custom-properties/index.md"]},{"number":23556,"updated_at":"2018-11-15T19:48:29Z","username":"sessegolo","title":"Fixed the translated certificate title.","filenames":["curriculum/challenges/portuguese/09-certificates/legacy-back-end-certificate/legacy-back-end-certificate.portuguese.md"]},{"number":23560,"updated_at":"2018-11-15T19:48:30Z","username":"sessegolo","title":"Fixed the certificate title translation.","filenames":["curriculum/challenges/portuguese/09-certificates/legacy-front-end-certificate/legacy-front-end-certificate.portuguese.md"]},{"number":23561,"updated_at":"2018-11-25T03:05:49Z","username":"sessegolo","title":"Update legacy-data-visualization-certificate.portuguese.md","filenames":["curriculum/challenges/portuguese/09-certificates/legacy-data-visualization-certificate/legacy-data-visualization-certificate.portuguese.md"]},{"number":23566,"updated_at":"2018-10-25T15:04:13Z","username":"ShashwathJS","title":"Additional info about passing by reference","filenames":["guide/english/c/passing-pointers-to-function/index.md"]},{"number":23570,"updated_at":"2018-11-13T00:26:41Z","username":"sofiabsilva","title":"Fixed tables, examples translation and minor fixes","filenames":["guide/portuguese/javascript/assignment-operators/index.md"]},{"number":23572,"updated_at":"2018-11-13T00:26:42Z","username":"pkinopk","title":"translations and CSS examples fix","filenames":["guide/portuguese/css/text/index.md"]},{"number":23573,"updated_at":"2018-11-13T00:26:44Z","username":"ShashwathJS","title":"Reason for typecasting the return type of malloc","filenames":["guide/english/c/malloc/index.md"]},{"number":23574,"updated_at":"2018-11-13T00:26:46Z","username":"LornaLan","title":"Changed some grammatical issues","filenames":["guide/chinese/c/more-math/index.md"]},{"number":23575,"updated_at":"2018-12-01T20:26:36Z","username":"jonathan-grah","title":"Fixed spelling and grammar on some react native articles","filenames":["guide/english/react-native/screen-dimensions/index.md","guide/english/react-native/state/index.md","guide/english/react-native/styling/index.md"]},{"number":23578,"updated_at":"2018-10-19T22:20:57Z","username":"HatemSadallah","title":"Update index.md","filenames":["guide/arabic/python/index.md"]},{"number":23580,"updated_at":"2018-11-25T03:07:04Z","username":"hamiduabu","title":"Include additional JavaScript resources","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":23583,"updated_at":"2018-11-15T19:48:33Z","username":"liagiu","title":"Improve Portuguese translation for know-when-alt-text-should-be-left-…","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/applied-accessibility/know-when-alt-text-should-be-left-blank.portuguese.md"]},{"number":23585,"updated_at":"2018-11-13T00:26:59Z","username":"Tharwaat","title":"Simplified, grammatically corrected introduction","filenames":["guide/arabic/nodejs/index.md"]},{"number":23586,"updated_at":"2018-11-13T00:27:01Z","username":"DamianRivas","title":"Add hyperlinks to list of languages","filenames":["docs/spanish/CONTRIBUTING.md"]},{"number":23590,"updated_at":"2018-10-19T22:20:31Z","username":"HatemSadallah","title":"Update index.md","filenames":["guide/arabic/javascript/index.md"]},{"number":23593,"updated_at":"2018-11-13T00:27:05Z","username":"DamianRivas","title":"Add hyperlinks to the list of translated languages","filenames":["docs/portuguese/CONTRIBUTING.md"]},{"number":23594,"updated_at":"2018-10-19T22:15:05Z","username":"HatemSadallah","title":"Update index.md","filenames":["guide/arabic/bootstrap/index.md"]},{"number":23595,"updated_at":"2018-11-13T00:27:06Z","username":"sessegolo","title":"Translated C++ for-loop instructions to PT-BR","filenames":["guide/portuguese/cplusplus/for-loop/index.md"]},{"number":23596,"updated_at":"2018-11-13T00:27:08Z","username":"LEpessoa","title":"Conserto do link quebrado da imagem","filenames":["guide/portuguese/javascript/truth-table/index.md"]},{"number":23597,"updated_at":"2018-11-13T00:27:10Z","username":"3l3ktron","title":"update to when bash was created","filenames":["guide/spanish/bash/index.md"]},{"number":23598,"updated_at":"2018-11-25T05:37:28Z","username":"JawnsenTrain","title":"Added that ranges start at 0 if no start is specified","filenames":["guide/english/python/range-function/index.md"]},{"number":23601,"updated_at":"2018-10-19T22:14:20Z","username":"HatemSadallah","title":"Update index.md","filenames":["guide/arabic/css/index.md"]},{"number":23609,"updated_at":"2018-10-20T20:17:14Z","username":"HatemSadallah","title":"Update index.md","filenames":["guide/arabic/java/index.md"]},{"number":23618,"updated_at":"2018-11-13T00:27:34Z","username":"gabrieldomene","title":"New links to fonts added","filenames":["guide/portuguese/typography/where-to-get-fonts/index.md"]},{"number":23621,"updated_at":"2018-11-13T00:49:05Z","username":"sofiabsilva","title":"Translation fixes","filenames":["curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/debugging/catch-arguments-passed-in-the-wrong-order-when-calling-a-function.portuguese.md"]},{"number":23623,"updated_at":"2018-11-27T23:26:04Z","username":"Elian200","title":"More info on why Python is good for ML.","filenames":["guide/english/python/what-is-python-used-for/index.md"]},{"number":23635,"updated_at":"2018-11-13T00:27:55Z","username":"gabrieldomene","title":"Paragraph about DBaaS and link","filenames":["guide/portuguese/mongodb/index.md"]},{"number":23641,"updated_at":"2018-11-15T19:48:35Z","username":"sofiabsilva","title":"minor portuguese translation fixes","filenames":["curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/debugging/catch-missing-open-and-closing-parenthesis-after-a-function-call.portuguese.md"]},{"number":23647,"updated_at":"2018-11-29T00:39:26Z","username":"maklad42","title":"Add hints about best practices","filenames":["guide/english/javascript/arithmetic-operation/index.md"]},{"number":23650,"updated_at":"2018-11-13T00:28:20Z","username":"gabrieldomene","title":"Types of fractions","filenames":["guide/portuguese/mathematics/fractions/index.md"]},{"number":23652,"updated_at":"2018-11-15T19:48:38Z","username":"Dranthos","title":"Improved translation/wording","filenames":["curriculum/challenges/spanish/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.spanish.md"]},{"number":23653,"updated_at":"2018-11-13T00:28:25Z","username":"Yang8547","title":"add installation instruction","filenames":["guide/chinese/angularjs/index.md"]},{"number":23657,"updated_at":"2018-12-09T02:39:39Z","username":"JeffreyCamphens","title":"Propose the usual way of styling buttons","filenames":["guide/english/css/css-buttons/index.md"]},{"number":23663,"updated_at":"2018-11-13T00:28:40Z","username":"gabrieldomene","title":"Finding percentage of number","filenames":["guide/portuguese/mathematics/finding-a-percent/index.md"]},{"number":23668,"updated_at":"2018-11-13T00:28:47Z","username":"FredyPG","title":"Cambios en el Texto","filenames":["guide/spanish/sql/sql-select-statement/index.md"]},{"number":23687,"updated_at":"2018-12-09T02:39:36Z","username":"viviantran27","title":"Added complex number graphing","filenames":["guide/english/mathematics/complex-numbers-introduction/index.md"]},{"number":23696,"updated_at":"2018-12-09T02:37:49Z","username":"viviantran27","title":"Added modulus of complex numbers","filenames":["guide/english/mathematics/absolute-value/index.md"]},{"number":23704,"updated_at":"2018-12-09T02:37:46Z","username":"jonathan-grah","title":"Removed duplicate angular folder, minor SPG changes","filenames":["guide/english/angular/index.md","guide/english/angularjs/index.md"]},{"number":23707,"updated_at":"2018-12-03T10:02:46Z","username":"proGhatak","title":"A nice concept called Tuple","filenames":["guide/english/csharp/touples/index.md"]},{"number":23709,"updated_at":"2018-12-09T02:37:43Z","username":"the4rchangel","title":"Added a \"Sudo\" paragraph entry.","filenames":["guide/english/bash/index.md"]},{"number":23710,"updated_at":"2018-12-09T02:37:41Z","username":"gr0sabi","title":"Adding code styling guidelines for Python indentation","filenames":["guide/english/python/code-blocks-and-indentation/index.md"]},{"number":23719,"updated_at":"2018-12-09T02:37:38Z","username":"infinitec","title":"Removed command capitalization","filenames":["guide/english/bash/bash-cat/index.md"]},{"number":23724,"updated_at":"2018-12-08T17:43:00Z","username":"sherribooher","title":"Made changes for better readability and flow.","filenames":["guide/english/css/css3-colors/index.md"]},{"number":23728,"updated_at":"2018-12-09T02:37:31Z","username":"yaganub","title":"removed \"history of the\" from line 12","filenames":["guide/english/security/traceroute/index.md"]},{"number":23730,"updated_at":"2018-12-09T02:37:33Z","username":"haldav","title":"Minor spelling and grammar changes","filenames":["guide/english/linux/linux-brief-history/index.md"]},{"number":23735,"updated_at":"2018-12-09T02:37:29Z","username":"ellakenn07","title":"add text to article","filenames":["guide/english/mathematics/x-and-y-intercepts/index.md"]},{"number":23737,"updated_at":"2018-12-09T02:37:27Z","username":"infinitec","title":"Fix wrong name in command syntax overview","filenames":["guide/english/bash/bash-ls/index.md"]},{"number":23739,"updated_at":"2018-12-08T17:46:31Z","username":"logistics00","title":"Some textual modifications in index.md","filenames":["guide/english/mathematics/index.md"]},{"number":23740,"updated_at":"2018-12-08T17:47:07Z","username":"Eme-rald","title":"Added 4 ways to make a full screen background.","filenames":["guide/english/css/tutorials/perfect-full-page-background-image/index.md"]},{"number":23741,"updated_at":"2018-12-09T02:39:30Z","username":"ddmaness","title":"Add to progressive enhancement section","filenames":["guide/english/progressive-web-apps/index.md"]},{"number":23742,"updated_at":"2018-12-09T02:39:28Z","username":"viviantran27","title":"Added info and img about complex numbers","filenames":["guide/english/mathematics/eulers-formula/index.md"]},{"number":23747,"updated_at":"2018-11-27T01:43:40Z","username":"yogeshl","title":"Update index.md","filenames":["guide/english/angular/angular-resources/index.md"]},{"number":23750,"updated_at":"2018-12-09T02:39:23Z","username":"ttstauss","title":"CSS: Add ::selection pseudo-element document","filenames":["guide/english/css/selectors/pseudo/selection/index.md"]},{"number":23758,"updated_at":"2018-12-05T16:19:06Z","username":"sparklycat","title":"Added Elizabeth Cox TED talk on syndrome","filenames":["guide/english/working-in-tech/imposter-syndrome/index.md"]},{"number":23762,"updated_at":"2018-11-27T02:18:39Z","username":"ch1771dr0b0","title":"Added Julia language features","filenames":["guide/english/julia/index.md"]},{"number":23763,"updated_at":"2018-11-15T19:48:39Z","username":"Ahmed-Elbessfy","title":"Adding some break-lines","filenames":["curriculum/challenges/arabic/01-responsive-web-design/basic-html-and-html5/use-html5-to-require-a-field.arabic.md"]},{"number":23772,"updated_at":"2018-12-08T17:53:26Z","username":"scastile","title":"Update index.md","filenames":["guide/english/working-in-tech/index.md"]},{"number":23776,"updated_at":"2018-11-13T00:31:11Z","username":"FredyPG","title":"Actualizacion de las tablas y guia de las sql","filenames":["guide/spanish/sql/sql-insert-query/index.md"]},{"number":23780,"updated_at":"2018-11-13T00:31:15Z","username":"Luanr","title":"Fixed some mistranslated words.","filenames":["guide/portuguese/computer-science/data-structures/graphs/index.md"]},{"number":23784,"updated_at":"2018-12-08T17:51:49Z","username":"Benzene88","title":"Fixed some capitalization issues","filenames":["guide/english/blockchain/features/index.md"]},{"number":23790,"updated_at":"2018-11-30T12:15:09Z","username":"Tirumala-K","title":"added specifications needed for SET operators","filenames":["guide/english/sql/sql-union-operator/index.md"]},{"number":23800,"updated_at":"2018-12-08T17:54:18Z","username":"NuclearPineapples","title":"Word Errors","filenames":["guide/english/agile/crystal/index.md"]},{"number":23812,"updated_at":"2018-11-13T00:31:53Z","username":"clylo","title":"add loc and iloc to subsetting","filenames":["guide/english/data-science-tools/pandas/index.md"]},{"number":23813,"updated_at":"2018-11-27T03:20:14Z","username":"nigelcheok","title":"Updated more links","filenames":["guide/english/vue/index.md"]},{"number":23831,"updated_at":"2018-12-09T00:30:56Z","username":"eulerkochy","title":"Add an interesting application of passing pointers to functions","filenames":["guide/english/c/passing-pointers-to-function/index.md"]},{"number":23833,"updated_at":"2018-11-15T19:48:41Z","username":"jrobertorma","title":"Some grammar improvements","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-using-sufficient-contrast.spanish.md"]},{"number":23834,"updated_at":"2018-11-13T00:32:23Z","username":"imdonnie","title":"Add a Chinese translation to PythonZen ","filenames":["guide/chinese/python/index.md"]},{"number":23844,"updated_at":"2018-11-13T00:32:33Z","username":"dongwon900","title":"added definition of 3x3 determinants","filenames":["guide/english/mathematics/3-by-3-determinants/index.md"]},{"number":23848,"updated_at":"2018-11-13T00:32:38Z","username":"code-v1","title":"Translated HTML comment","filenames":["guide/spanish/html/comments-in-html/index.md"]},{"number":23849,"updated_at":"2018-12-08T17:56:02Z","username":"javbit","title":"Improve C dynamic memory guide","filenames":["guide/english/c/dynamic-memory-management/index.md"]},{"number":23850,"updated_at":"2018-11-13T00:32:41Z","username":"eulerkochy","title":"Suggested ways of improving Quickselect","filenames":["guide/english/algorithms/quickselection-algorithm/index.md"]},{"number":23852,"updated_at":"2018-12-11T22:38:33Z","username":"chris13888","title":"Create overview for Python's enumerate function","filenames":["guide/english/python/enumerate/index.md"]},{"number":23853,"updated_at":"2018-11-13T00:32:46Z","username":"imdonnie","title":"Add a chapter to the Chinese Laravel doc","filenames":["guide/chinese/laravel/index.md"]},{"number":23854,"updated_at":"2018-11-13T00:32:48Z","username":"code-v1","title":"Translated html comment ","filenames":["guide/spanish/html/comments-in-html/index.md"]},{"number":23855,"updated_at":"2018-11-13T00:32:50Z","username":"eulerkochy","title":"Alternative way to sort a vector","filenames":["guide/english/cplusplus/vector/index.md"]},{"number":23858,"updated_at":"2018-11-13T00:32:51Z","username":"code-v1","title":"Translated html comment","filenames":["guide/spanish/html/comments-in-html/index.md"]},{"number":23859,"updated_at":"2018-12-06T01:06:20Z","username":"chris13888","title":"Adds extra information about multiline comments in regards to style and creation.","filenames":["guide/english/python/commenting-code/index.md"]},{"number":23860,"updated_at":"2018-11-13T00:32:55Z","username":"code-v1","title":"Translated html comment","filenames":["guide/spanish/html/comments-in-html/index.md"]},{"number":23861,"updated_at":"2018-12-09T00:42:05Z","username":"koreandude555","title":"Added more info and symbols","filenames":["guide/english/logic/conditional-and-biconditional-statements/index.md"]},{"number":23865,"updated_at":"2018-11-13T00:33:00Z","username":"TheSiegeEngine","title":"Update ID selector with basic information.","filenames":["guide/english/css/selectors/general/id/index.md"]},{"number":23868,"updated_at":"2018-11-13T00:33:01Z","username":"code-v1","title":"Translated html comment","filenames":["guide/spanish/html/comments-in-html/index.md"]},{"number":23874,"updated_at":"2018-12-06T01:08:17Z","username":"ninjahellokitty","title":"Update transition delay and shorthand","filenames":["guide/english/css/transition/index.md"]},{"number":23876,"updated_at":"2018-11-13T00:33:06Z","username":"weihungchin","title":"Add new course for Angular 2++","filenames":["guide/english/angular/angular-resources/index.md"]},{"number":23883,"updated_at":"2018-11-13T00:33:16Z","username":"chris13888","title":"Created a description for pickle in Python","filenames":["guide/english/python/pickling/index.md"]},{"number":23885,"updated_at":"2018-11-13T00:33:19Z","username":"calbertora","title":"Explicación del UNION ALL","filenames":["guide/spanish/sql/sql-union-operator/index.md"]},{"number":23886,"updated_at":"2018-11-13T00:33:21Z","username":"Nathan-Abegaz","title":"How to transfer a file from the command line.","filenames":["guide/english/terminal-commandline/macos-terminal/index.md"]},{"number":23890,"updated_at":"2018-11-13T00:33:26Z","username":"chris13888","title":"Added a section, changed some grammar","filenames":["guide/english/natural-language-processing/index.md"]},{"number":23891,"updated_at":"2018-11-13T00:33:27Z","username":"ninjahellokitty","title":"Update with Sketch Plugin Manager","filenames":["guide/english/designer-tools/sketch/index.md"]},{"number":23892,"updated_at":"2018-11-13T00:33:29Z","username":"Nathan-Abegaz","title":"Previewing file text editor through \"cat\"","filenames":["guide/english/terminal-commandline/macos-terminal/index.md"]},{"number":23897,"updated_at":"2018-11-13T00:33:39Z","username":"steelwolf180","title":"Updated the coding example with comments, added a new python package manager called \"pipenv\". Lastly added a code example on the order of imports with comments.","filenames":["guide/english/python/import-statements/index.md"]},{"number":23901,"updated_at":"2018-11-13T00:33:43Z","username":"LornaLan","title":"fixed grammatical errors and reorganized format","filenames":["guide/chinese/linux/10-simple-and-useful-linux-commands/index.md"]},{"number":23904,"updated_at":"2018-11-13T00:33:44Z","username":"ninjahellokitty","title":"Rectify layout errors","filenames":["guide/english/css/comments-in-css/index.md"]},{"number":23913,"updated_at":"2018-11-13T00:33:56Z","username":"ninjahellokitty","title":"Add information on inline block to navigation","filenames":["guide/english/css/layout/inline-block/index.md"]},{"number":23914,"updated_at":"2018-11-15T19:48:42Z","username":"jefflung","title":"Update add-a-text-alternative-to-images-for-visually-impaired-accessi…","filenames":["curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.chinese.md"]},{"number":23915,"updated_at":"2018-12-11T19:28:49Z","username":"kzellers","title":"added enhanced for loop example","filenames":["guide/english/cplusplus/loops/index.md"]},{"number":23919,"updated_at":"2018-11-13T00:34:03Z","username":"Githubtesting123","title":"created correct directory names and added link for tensorflow tutorials","filenames":["guide/english/data-science-tools/scikit-learn/index.md","guide/english/data-science-tools/tensorflow/index.md"]},{"number":23922,"updated_at":"2018-11-13T00:34:06Z","username":"lsomacruzl","title":"Added info about wireless networks","filenames":["guide/spanish/network-engineering/index.md"]},{"number":23926,"updated_at":"2018-10-28T20:03:00Z","username":"kzellers","title":"translated comments to spanish","filenames":["guide/spanish/java/basic-operations/bitwise-operators/index.md"]},{"number":23929,"updated_at":"2018-11-13T00:34:15Z","username":"lsomacruzl","title":"Added info on GPUs","filenames":["guide/spanish/computer-hardware/index.md"]},{"number":23930,"updated_at":"2018-11-13T00:34:16Z","username":"khupmanlun","title":"Added few other commands for running c programs","filenames":["guide/english/c/index.md"]},{"number":23935,"updated_at":"2018-12-08T06:59:07Z","username":"ellakenn07","title":"add different ways to get area of a square","filenames":["guide/english/mathematics/area-of-a-square/index.md"]},{"number":23936,"updated_at":"2018-10-28T20:03:28Z","username":"AndresHernandezGuerra","title":"Orthography and readability improved","filenames":["guide/spanish/accessibility/index.md"]},{"number":23937,"updated_at":"2018-11-13T00:34:20Z","username":"lsomacruzl","title":"Added info about transfer speeds","filenames":["guide/spanish/computer-hardware/hard-drives/index.md"]},{"number":23942,"updated_at":"2018-11-13T00:34:22Z","username":"DannyShien","title":"Add 2 new commands and some word edits","filenames":["guide/english/terminal-commandline/macos-terminal/index.md"]},{"number":23949,"updated_at":"2018-12-08T07:09:57Z","username":"steelwolf180","title":"Rephrasing the guide on how a dictionary works in Python for a layman.","filenames":["guide/english/python/data-structures/dictionaries/index.md"]},{"number":23950,"updated_at":"2018-11-13T00:34:31Z","username":"Channeas","title":"Wrote about operators and fixed a faulty example","filenames":["guide/english/javascript/if-else-statement/index.md"]},{"number":23953,"updated_at":"2018-12-08T16:12:33Z","username":"doubleUTF","title":"Update broken URL","filenames":["curriculum/challenges/english/06-information-security-and-quality-assurance/information-security-and-quality-assurance-projects/metric-imperial-converter.english.md"]},{"number":23954,"updated_at":"2018-11-13T00:34:38Z","username":"koreandude555","title":"Added a method","filenames":["guide/english/mathematics/area-of-a-triangle/index.md"]},{"number":23955,"updated_at":"2018-11-02T07:39:55Z","username":"LornaLan","title":"grammatical fixes","filenames":["guide/chinese/python/lists/list-append-method/index.md"]},{"number":23956,"updated_at":"2018-11-13T00:34:40Z","username":"Nathan-Abegaz","title":"Best/Average/Worst Case Details","filenames":["guide/english/algorithms/sorting-algorithms/insertion-sort/index.md"]},{"number":23967,"updated_at":"2018-11-13T00:34:50Z","username":"nicoletlopez","title":"Added \"installation on macOS\" to apache guide","filenames":["guide/english/apache/index.md"]},{"number":23968,"updated_at":"2018-12-08T08:01:04Z","username":"sayaliKutwal","title":"Change the statement for OR operator","filenames":["guide/english/logic/truth-tables/index.md"]},{"number":23970,"updated_at":"2018-11-13T00:34:53Z","username":"Nathan-Abegaz","title":"Worst Case Analysis","filenames":["guide/english/algorithms/sorting-algorithms/quick-sort/index.md"]},{"number":23971,"updated_at":"2018-11-13T00:34:54Z","username":"Githubtesting123","title":"Added one of the most popular resources for deep learning","filenames":["guide/english/machine-learning/deep-learning/index.md"]},{"number":23977,"updated_at":"2018-11-13T00:35:02Z","username":"calbertora","title":"Cambio en la redacción y más ejemplos","filenames":["guide/spanish/sql/sql-where-clause/index.md"]},{"number":23991,"updated_at":"2018-11-13T00:35:09Z","username":"theogoulart","title":"docs: fix markdown in portuguese how-to-work-on-guide-articles","filenames":["docs/portuguese/how-to-work-on-guide-articles.md"]},{"number":23993,"updated_at":"2018-12-08T07:14:09Z","username":"mridul981","title":"Added java implementation of merge sort","filenames":["guide/english/algorithms/sorting-algorithms/merge-sort/index.md"]},{"number":23994,"updated_at":"2018-11-13T00:35:12Z","username":"ashwin74","title":"Added git commands and best practices.","filenames":["guide/english/software-engineering/version-control-system/index.md"]},{"number":23998,"updated_at":"2018-11-13T00:35:15Z","username":"marcusparsons","title":"Added additional section and update previous section","filenames":["guide/english/csharp/ternary-operator/index.md"]},{"number":24003,"updated_at":"2018-12-02T20:48:28Z","username":"nishk1997","title":"Zero Initialization of an array","filenames":["guide/english/cplusplus/arrays/index.md"]},{"number":24004,"updated_at":"2018-12-02T20:49:38Z","username":"stavkl","title":"Added a section about void pointers","filenames":["guide/english/c/pointers/index.md"]},{"number":24007,"updated_at":"2018-12-02T20:52:13Z","username":"steelwolf180","title":"Editing and rephrasing of the guide","filenames":["guide/english/python/functions/index.md"]},{"number":24009,"updated_at":"2018-11-13T00:35:30Z","username":"AlecBulka","title":"Added parentheses to a string on line 282","filenames":["guide/spanish/python/basic-operators/index.md"]},{"number":24017,"updated_at":"2018-11-13T00:35:38Z","username":"AlecBulka","title":"Add parentheses to a string on line 282","filenames":["guide/spanish/python/basic-operators/index.md"]},{"number":24020,"updated_at":"2018-11-13T00:35:43Z","username":"akshay11298","title":"Update index.md","filenames":["guide/english/algorithms/binary-search-trees/index.md"]},{"number":24033,"updated_at":"2018-11-13T00:35:56Z","username":"fedelico","title":"change 87th line \"To-DO列表\" to \"To-Do列表\"","filenames":["guide/chinese/agile/acceptance-testing/index.md"]},{"number":24038,"updated_at":"2018-11-13T00:36:05Z","username":"VineetMalik14","title":"Add C implementation, analysis of Counting Sort.","filenames":["guide/english/algorithms/sorting-algorithms/counting-sort/index.md"]},{"number":24039,"updated_at":"2018-11-13T00:36:06Z","username":"Mr-Patcher","title":"Added a guide to Scientific Calculators","filenames":["guide/english/tools/calculators/scientific-calculator/index.md"]},{"number":24042,"updated_at":"2018-12-06T10:24:16Z","username":"akshay11298","title":"Modified JavaScript and Python Example","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":24043,"updated_at":"2018-11-15T19:48:45Z","username":"jefflung","title":"Update give-links-meaning-by-using-descriptive-link-text.chinese.md","filenames":["curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text.chinese.md"]},{"number":24044,"updated_at":"2018-11-13T00:36:13Z","username":"markoch","title":"Fix wording within creational patterns","filenames":["guide/english/algorithms/algorithm-design-patterns/creational-patterns/index.md"]},{"number":24061,"updated_at":"2018-12-08T03:43:47Z","username":"markoch","title":"Use a descriptive text for the Wikipedia link","filenames":["guide/english/algorithms/algorithm-design-patterns/structual-patterns/index.md"]},{"number":24077,"updated_at":"2018-11-13T00:36:20Z","username":"yogeshnimangre007","title":"added course","filenames":["guide/english/machine-learning/tensorflow-for-machine-learning/index.md"]},{"number":24090,"updated_at":"2018-12-06T10:27:21Z","username":"ashwin74","title":"Added Info on Invisible Internet Project.","filenames":["guide/english/security/i2p/index.md"]},{"number":24095,"updated_at":"2018-12-06T22:44:56Z","username":"yoadwo","title":"Index.md: strlen clarification","filenames":["guide/english/c/arrays-and-strings/index.md"]},{"number":24097,"updated_at":"2018-11-13T00:36:40Z","username":"AlecBulka","title":"Added parentheses to lines 307, 308, 309, 314, 315, 320, 321, 326 for…","filenames":["guide/spanish/python/basic-operators/index.md"]},{"number":24102,"updated_at":"2018-11-25T03:20:56Z","username":"leebut","title":"Create flexbox-aligning-flex-items.md","filenames":["guide/english/css/flexbox-how-to-align-flex-items/index.md"]},{"number":24106,"updated_at":"2018-12-06T10:51:04Z","username":"halseyj","title":"Add info about Server distros","filenames":["guide/english/linux/advantages-of-linux/index.md"]},{"number":24112,"updated_at":"2018-12-06T22:47:16Z","username":"steelwolf180","title":"docs: Updating the API best practices","filenames":["guide/english/rest-api/index.md"]},{"number":24123,"updated_at":"2018-11-15T19:48:47Z","username":"rafaelmonteiro","title":"Improve check-for-all-or-none.portuguese.md translation","filenames":["curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/regular-expressions/check-for-all-or-none.portuguese.md"]},{"number":24124,"updated_at":"2018-11-13T00:37:14Z","username":"yoadwo","title":"Create SOLID principles index.md","filenames":["guide/english/software-engineering/solid-principle/index.md"]},{"number":24126,"updated_at":"2018-12-06T23:04:22Z","username":"halseyj","title":"Explained how to become an admin","filenames":["guide/english/linux/user-management-on-linux/index.md"]},{"number":24134,"updated_at":"2018-11-13T00:37:26Z","username":"akshaykumar6","title":"Fixing embedded demo youtube video ","filenames":["guide/english/progressive-web-apps/index.md"]},{"number":24135,"updated_at":"2018-11-13T00:37:28Z","username":"DaddyBA","title":"Further explanation of What vs How","filenames":["guide/english/agile/acceptance-criteria/index.md"]},{"number":24142,"updated_at":"2018-12-07T01:31:48Z","username":"trungqudinh","title":"Update Agile Manifesto and Priciples","filenames":["guide/english/agile/index.md"]},{"number":24146,"updated_at":"2018-11-13T00:37:38Z","username":"foxxmg","title":"Add 'void pointer' as part of pointers","filenames":["guide/english/c/pointers/index.md"]},{"number":24151,"updated_at":"2018-12-03T10:02:53Z","username":"trungqudinh","title":"Add singleton basic implementation in java","filenames":["guide/english/design-patterns/implementation/singleton/java/index.md"]},{"number":24153,"updated_at":"2018-11-13T00:37:48Z","username":"AntTAKEOVER","title":"Added a Code Example","filenames":["guide/english/csharp/ternary-operator/index.md"]},{"number":24155,"updated_at":"2018-12-07T01:40:44Z","username":"priteshpk","title":"Update index.md","filenames":["guide/english/php/php-echo-print/index.md"]},{"number":24157,"updated_at":"2018-10-20T19:40:10Z","username":"FreeRubius","title":"Update index.md","filenames":["guide/spanish/hibernate/index.md"]},{"number":24163,"updated_at":"2018-11-13T00:38:01Z","username":"Rinsington-DC","title":"hyperlinks now working properly","filenames":["guide/chinese/bash/index.md"]},{"number":24165,"updated_at":"2018-11-13T00:38:04Z","username":"FreeRubius","title":"Cambios en la traducción. ","filenames":["guide/spanish/robotics/index.md"]},{"number":24170,"updated_at":"2018-11-13T00:38:11Z","username":"Rinsington-DC","title":"Rephrasing/typo","filenames":["guide/chinese/working-in-tech/index.md"]},{"number":24176,"updated_at":"2018-11-13T00:38:14Z","username":"talkor","title":"Add Event Handling guide for Vue.js","filenames":["guide/english/vue/event-handling/index.md"]},{"number":24178,"updated_at":"2018-11-13T00:38:18Z","username":"zerandomalt","title":"Updated format to be more consistent","filenames":["guide/english/bash/bash-mv/index.md"]},{"number":24185,"updated_at":"2018-11-13T00:38:24Z","username":"blank10032","title":"Added a section on optimistic indentation","filenames":["guide/english/c/loops/index.md"]},{"number":24188,"updated_at":"2018-11-13T00:38:29Z","username":"sureshmangs","title":"Making index.md more informative","filenames":["guide/english/logic/satisfiability/index.md"]},{"number":24190,"updated_at":"2018-12-08T00:31:16Z","username":"stefanscript","title":"Update let ","filenames":["guide/english/javascript/es6/let-and-const/index.md"]},{"number":24191,"updated_at":"2018-11-13T00:38:34Z","username":"PiniShv","title":" Curly brackets in c come in the beginning of the line. (not like in JS)","filenames":["guide/portuguese/c/ternary-operator/index.md"]},{"number":24192,"updated_at":"2018-11-13T00:38:36Z","username":"lizantell","title":"Add more info to audio section","filenames":["guide/english/accessibility/index.md"]},{"number":24193,"updated_at":"2018-11-13T00:38:38Z","username":"chiaramistro","title":"Added link: how and why documentation is important","filenames":["guide/spanish/documentation/index.md"]},{"number":24195,"updated_at":"2018-11-13T00:38:39Z","username":"PiniShv","title":" Curly brackets in c come in the beginning of the line. (not like in JS)","filenames":["guide/chinese/c/ternary-operator/index.md"]},{"number":24197,"updated_at":"2018-11-13T00:38:43Z","username":"blank10032","title":"Added another example using nested if statements","filenames":["guide/english/c/short-circuit-evaluation/index.md"]},{"number":24199,"updated_at":"2018-11-13T00:38:44Z","username":"PiniShv","title":" Curly brackets in c come in the beginning of the line. (not like in JS)","filenames":["guide/arabic/c/ternary-operator/index.md"]},{"number":24200,"updated_at":"2018-11-13T00:38:46Z","username":"ChristopherCharlesTodd","title":"To add a introductory Paragraph about .net core","filenames":["guide/english/csharp/index.md"]},{"number":24201,"updated_at":"2018-11-13T00:38:48Z","username":"PiniShv","title":" Curly brackets in c come in the beginning of the line. (not like in JS)","filenames":["guide/spanish/c/ternary-operator/index.md"]},{"number":24203,"updated_at":"2018-10-30T16:57:23Z","username":"chiaramistro","title":"Added link: Lecciones de XML en Español on YT","filenames":["guide/spanish/xml/index.md"]},{"number":24204,"updated_at":"2018-11-13T00:38:51Z","username":"lizantell","title":"Added detail to semantic tags section","filenames":["guide/english/html/page-structure/index.md"]},{"number":24217,"updated_at":"2018-12-08T08:04:06Z","username":"HarshAggarwal","title":"Changed python code of bubble sort","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":24237,"updated_at":"2018-11-13T00:39:31Z","username":"CleoAguiar","title":"Changed exhibition title","filenames":["guide/portuguese/csharp/hello-world/index.md"]},{"number":24241,"updated_at":"2018-11-13T00:39:34Z","username":"diseva1","title":"Añadido el ultimo texto \"Final\" al articulo.","filenames":["guide/spanish/virtualbox/install-virtualbox-on-macos/index.md"]},{"number":24243,"updated_at":"2018-12-09T02:35:23Z","username":"hdquemada","title":"Editing grammar and composition.md","filenames":["guide/english/linux/getting-started/index.md"]},{"number":24245,"updated_at":"2018-11-13T00:39:39Z","username":"diseva1","title":"Añadido el logo de wordpress.","filenames":["guide/spanish/wordpress/index.md"]},{"number":24246,"updated_at":"2018-11-13T00:39:41Z","username":"fedelico","title":"translate text from line25 to line 42 into chinese","filenames":["guide/chinese/agile/behavior-driven-development/index.md"]},{"number":24247,"updated_at":"2018-11-13T00:39:42Z","username":"Trion129","title":"Graph algorithms: Added bellman ford graph algorithm","filenames":["guide/english/algorithms/graph-algorithms/bellman-ford/index.md"]},{"number":24249,"updated_at":"2018-11-13T00:39:46Z","username":"CleoAguiar","title":"Changed exhibition title for-loop","filenames":["guide/portuguese/csharp/for-loop/index.md"]},{"number":24250,"updated_at":"2018-11-13T00:39:47Z","username":"diseva1","title":"Added HTML logo","filenames":["guide/spanish/html/index.md"]},{"number":24251,"updated_at":"2018-11-13T00:39:49Z","username":"fedelico","title":"change line21 '燒毀vs燒毀圖表' to '燃尽vs燃尽图表'","filenames":["guide/chinese/agile/burndown-charts-and-burnup-charts/index.md"]},{"number":24252,"updated_at":"2018-11-13T00:39:50Z","username":"diseva1","title":"Added CSS logo","filenames":["guide/spanish/css/index.md"]},{"number":24259,"updated_at":"2018-11-13T00:40:02Z","username":"igorhideki","title":"Update text formatting and grammar in boolean article","filenames":["guide/portuguese/javascript/booleans/index.md"]},{"number":24266,"updated_at":"2018-11-13T00:40:09Z","username":"igorhideki","title":"Fix indentation of sample code in arrow fuctions article","filenames":["guide/portuguese/javascript/es6/arrow-functions/index.md"]},{"number":24269,"updated_at":"2018-11-13T00:40:14Z","username":"igorhideki","title":"Fix indentation of sample code in spread operator article","filenames":["guide/portuguese/javascript/es6/spread-operator/index.md"]},{"number":24283,"updated_at":"2018-12-07T09:38:04Z","username":"greggubarev","title":"Responsive Web Design: Added hint to Set the Font Family of an Element","filenames":["guide/english/certifications/responsive-web-design/basic-css/set-the-font-family-of-an-element/index.md"]},{"number":24294,"updated_at":"2018-11-13T00:40:29Z","username":"igorhideki","title":"Update translation and format text in new string functions article","filenames":["guide/portuguese/javascript/es6/new-string-functions/index.md"]},{"number":24300,"updated_at":"2018-11-13T00:40:34Z","username":"BTmathic","title":"Fixed errors and added examples with variety","filenames":["guide/english/mathematics/x-and-y-intercepts/index.md"]},{"number":24301,"updated_at":"2018-11-13T00:40:35Z","username":"igorhideki","title":"Update text formatting and indentation of sample in destructuring article","filenames":["guide/portuguese/javascript/es6/destructuring/index.md"]},{"number":24311,"updated_at":"2018-11-15T19:48:53Z","username":"ritagomesdasilva","title":"Made changes to the Portuguese wording","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/applied-visual-design/lock-an-element-to-its-parent-with-absolute-positioning.portuguese.md"]},{"number":24312,"updated_at":"2018-11-13T00:40:52Z","username":"ssp4all","title":"add: new article \"passing structure through pointer\"","filenames":["guide/english/c/passing-structures-through-pointers/index.md"]},{"number":24322,"updated_at":"2018-11-13T00:41:05Z","username":"fedelico","title":"modify the arrangement of text","filenames":["guide/chinese/agile/rapid-application-development/index.md"]},{"number":24339,"updated_at":"2018-11-13T00:41:28Z","username":"igorhideki","title":"Update translation and format text in let and const article","filenames":["guide/portuguese/javascript/es6/let-and-const/index.md"]},{"number":24341,"updated_at":"2018-11-13T00:41:31Z","username":"Will-1-Am","title":"More energetic instructions","filenames":["docs/how-to-catch-outgoing-emails-locally.md"]},{"number":24343,"updated_at":"2018-11-13T00:41:35Z","username":"fedelico","title":"Add a refernce link","filenames":["guide/chinese/agile/daily-standup-and-daily-scrum/index.md"]},{"number":24344,"updated_at":"2018-11-13T00:41:36Z","username":"igorhideki","title":"Update translation and format text in map functions article","filenames":["guide/portuguese/javascript/es6/map-function/index.md"]},{"number":24349,"updated_at":"2018-11-13T00:41:43Z","username":"Trion129","title":"Graph algorithms: Added Johnson's algorithm","filenames":["guide/english/algorithms/graph-algorithms/johnson-algorithm/index.md"]},{"number":24350,"updated_at":"2018-11-13T00:41:45Z","username":"GregRush","title":"Correction of syntax and translation of text within the code","filenames":["guide/spanish/html/attributes/a-href-attribute/index.md"]},{"number":24353,"updated_at":"2018-12-07T10:02:29Z","username":"ranjith-b","title":"Trigonometry Formulas","filenames":["curriculum/math-challenges/34-trigonometry/Formulas"]},{"number":24359,"updated_at":"2018-11-13T00:41:58Z","username":"GregRush","title":"Translated text within the code","filenames":["guide/spanish/html/attributes/a-href-attribute/index.md"]},{"number":24363,"updated_at":"2018-11-13T00:42:01Z","username":"GregRush","title":"Correction of syntax on a sentence","filenames":["guide/spanish/html/attributes/a-target-attribute/index.md"]},{"number":24365,"updated_at":"2018-11-13T00:42:04Z","username":"Uttamkamalia","title":"Added an example for Classification problem.","filenames":["guide/english/machine-learning/supervised-learning/index.md"]},{"number":24367,"updated_at":"2018-11-13T00:42:08Z","username":"sh910831","title":"Improving some sentences","filenames":["docs/chinese/how-to-work-on-coding-challenges.md"]},{"number":24368,"updated_at":"2018-11-13T00:42:09Z","username":"GregRush","title":"Translated text within the code and corrected syntax errors","filenames":["guide/spanish/html/attributes/body-background-attribute/index.md"]},{"number":24372,"updated_at":"2018-11-13T00:42:16Z","username":"PhoenixJenn","title":"Added DDL, DML, TCL, CRUD definitions to MD file.","filenames":["guide/english/sql/index.md"]},{"number":24373,"updated_at":"2018-11-13T00:42:17Z","username":"Evaldas22","title":"Add information about Predicates and Func","filenames":["guide/english/csharp/delegates/index.md"]},{"number":24377,"updated_at":"2018-11-13T00:42:26Z","username":"paul-f-maxson","title":"Added a section on the history command to the bash section of the guide.","filenames":["guide/english/bash/bash-history/index.md"]},{"number":24378,"updated_at":"2018-11-13T00:42:28Z","username":"BTmathic","title":"Added content to stub","filenames":["guide/english/mathematics/worked-example-slope-from-two-points/index.md"]},{"number":24379,"updated_at":"2018-11-13T00:42:29Z","username":"greggubarev","title":"Responsive Web Design: Added hint to Style Multiple Elements with a C…","filenames":["guide/english/certifications/responsive-web-design/basic-css/style-multiple-elements-with-a-css-class/index.md"]},{"number":24383,"updated_at":"2018-11-13T00:42:34Z","username":"laolmstead","title":"Add Text Indentation Section","filenames":["guide/english/css/text/index.md"]},{"number":24386,"updated_at":"2018-11-13T00:42:37Z","username":"Estevarena","title":"Added short video to index.md","filenames":["guide/spanish/blockchain/index.md"]},{"number":24390,"updated_at":"2018-12-07T10:05:31Z","username":"sureshmangs","title":"Adding data to the empty index.md","filenames":["guide/english/mathematics/bayes-theorem/index.md"]},{"number":24391,"updated_at":"2018-10-29T01:08:46Z","username":"KrsBB","title":"Revision_of_translation.md","filenames":["guide/spanish/html/attributes/a-target-attribute/index.md"]},{"number":24393,"updated_at":"2018-11-13T00:42:49Z","username":"paul-f-maxson","title":"Adds a page on the alias command to the bash section of the guide","filenames":["guide/english/bash/bash-alias/index.md"]},{"number":24396,"updated_at":"2018-11-13T00:42:54Z","username":"sh910831","title":"Improving the translation error in the title and example","filenames":["guide/chinese/html/elements/a-tag/index.md"]},{"number":24398,"updated_at":"2018-12-07T10:06:57Z","username":"TGHeadle1371","title":"Fixed spelling errors and flow","filenames":["guide/english/docker/index.md"]},{"number":24400,"updated_at":"2018-11-13T00:42:59Z","username":"Evaldas22","title":"Add information about pattern matching","filenames":["guide/english/csharp/switch-case/index.md"]},{"number":24405,"updated_at":"2018-11-13T00:43:09Z","username":"sureshmangs","title":"Adding data to empty index.md","filenames":["guide/english/mathematics/cramers-rule/index.md"]},{"number":24410,"updated_at":"2018-11-13T00:43:19Z","username":"stanleychu2","title":"Add range in for loop","filenames":["guide/chinese/ruby/ruby-for-loop/index.md"]},{"number":24417,"updated_at":"2018-11-13T00:43:31Z","username":"stanleychu2","title":"fix markdown table","filenames":["guide/chinese/ruby/ruby-on-rails/index.md"]},{"number":24418,"updated_at":"2018-11-13T00:43:33Z","username":"InosRahul","title":"Create index.md","filenames":["guide/english/data-science-tools/visualization-dash/index.md"]},{"number":24422,"updated_at":"2018-11-13T00:43:39Z","username":"Evaldas22","title":"Add information about access modifiers","filenames":["guide/english/csharp/access-modifiers/index.md"]},{"number":24424,"updated_at":"2018-11-24T18:02:37Z","username":"JorgeMolina91","title":"Añadiendo algunos ajustes en español","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/add-a-negative-margin-to-an-element.spanish.md"]},{"number":24426,"updated_at":"2018-11-13T00:43:44Z","username":"egxn","title":"Restore name of dependencies in translate file","filenames":["guide/spanish/react/a-react-environment-using-a-remote-code-repository/index.md"]},{"number":24428,"updated_at":"2018-11-13T00:43:48Z","username":"stanleychu2","title":"if at the end of the sentence","filenames":["guide/chinese/ruby/ruby-conditionals/index.md"]},{"number":24432,"updated_at":"2018-11-13T00:43:51Z","username":"JorgeMolina91","title":"Pequeña modificación","filenames":["guide/spanish/javascript/tutorials/build-javascript-objects/index.md"]},{"number":24442,"updated_at":"2018-10-29T01:09:30Z","username":"KrsBB","title":"Update and rename index.md to revision_of_the_translation_to_Spanish.md","filenames":["guide/spanish/html/attributes/body-background-attribute/index.md"]},{"number":24445,"updated_at":"2018-11-15T19:49:00Z","username":"egxn","title":"Add a missing preposition","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/functional-programming/add-elements-to-the-end-of-an-array-using-concat-instead-of-push.spanish.md"]},{"number":24458,"updated_at":"2018-11-13T00:44:12Z","username":"Samueltommzy","title":"Proposed solution to challenge","filenames":["guide/english/certifications/javascript-algorithms-and-data-structures/basic-algorithm-scripting/return-largest-numbers-in-arrays/index.md"]},{"number":24467,"updated_at":"2018-11-13T00:44:19Z","username":"dhirajkanchan","title":"Fix syntax to use equal to operator instead of assignment operator.","filenames":["guide/english/php/conditionals/index.md"]},{"number":24468,"updated_at":"2018-10-29T01:09:53Z","username":"KrsBB","title":"Update and rename index.md to revision-to-Spanish-translation-and-two…","filenames":["guide/spanish/html/attributes/body-bgcolor-attribute/index.md"]},{"number":24471,"updated_at":"2018-11-13T00:44:24Z","username":"Aerohob","title":"Added a description to Maintainable Javascript","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":24475,"updated_at":"2018-11-13T00:44:27Z","username":"JorgeMolina91","title":"Pequeños ajustes en español","filenames":["guide/spanish/javascript/loops/for-loop/index.md"]},{"number":24476,"updated_at":"2018-11-13T00:44:29Z","username":"ParisaRashidirad","title":"Updating the statistic of PHP usage","filenames":["guide/english/php/index.md"]},{"number":24481,"updated_at":"2018-11-13T00:44:37Z","username":"Trion129","title":"Graph Algorithms: Added ford fulkerson algorithm for maximum flow","filenames":["guide/english/algorithms/graph-algorithms/ford-fulkerson/index.md"]},{"number":24487,"updated_at":"2018-11-23T13:01:05Z","username":"bspai","title":"Added sample configuration for reference","filenames":["guide/english/docker/docker-compose/index.md"]},{"number":24489,"updated_at":"2018-11-13T00:44:44Z","username":"abbas10m","title":"Added Factor data type","filenames":["guide/english/r/data-types/index.md"]},{"number":24490,"updated_at":"2018-11-13T00:44:45Z","username":"dsaw","title":"Updated git pull index.md (minor changes)","filenames":["guide/english/git/git-pull/index.md"]},{"number":24494,"updated_at":"2018-11-13T00:44:52Z","username":"nyep","title":"title formatting correction","filenames":["guide/english/python/what-is-python-used-for/index.md"]},{"number":24505,"updated_at":"2018-11-13T00:45:05Z","username":"ruphaa","title":"Add CSS transitions explanation link","filenames":["guide/english/css/using-css-transitions/index.md"]},{"number":24507,"updated_at":"2018-10-29T01:10:16Z","username":"KrsBB","title":"Update and rename index.md to complete_translation_to_Spanish.md","filenames":["guide/spanish/html/attributes/font-color-attribute/index.md"]},{"number":24508,"updated_at":"2018-11-13T00:45:09Z","username":"cryptofreq","title":"Added additional information about E","filenames":["guide/english/mathematics/e-constant/index.md"]},{"number":24514,"updated_at":"2018-11-13T00:45:15Z","username":"KrsBB","title":"improving-text-in-examples.md","filenames":["guide/english/html/attributes/font-color-attribute/index.md"]},{"number":24517,"updated_at":"2018-11-13T00:45:18Z","username":"calbertora","title":"Complentar información UNIQUE","filenames":["guide/spanish/sql/sql-select-distinct-statement/index.md"]},{"number":24518,"updated_at":"2018-11-13T00:45:20Z","username":"ruphaa","title":"Add CSS Animation link","filenames":["guide/english/css/using-css-animations/index.md"]},{"number":24520,"updated_at":"2018-11-13T00:45:22Z","username":"dhirajkanchan","title":"Fix if statement to use equal to operator instead of assignment opera…","filenames":["guide/portuguese/php/conditionals/index.md"]},{"number":24521,"updated_at":"2018-11-13T00:45:23Z","username":"dhirajkanchan","title":"Fix if statement to use equal to operator instead of assignment opera…","filenames":["guide/arabic/php/conditionals/index.md"]},{"number":24522,"updated_at":"2018-11-13T00:45:25Z","username":"dhirajkanchan","title":"Fix if statement to use equal to operator instead of assignment opera…","filenames":["guide/chinese/php/conditionals/index.md"]},{"number":24524,"updated_at":"2018-11-13T00:45:28Z","username":"dhirajkanchan","title":"Fix if statement to use equal to operator instead of assignment opera…","filenames":["guide/spanish/php/conditionals/index.md"]},{"number":24527,"updated_at":"2018-11-13T00:45:32Z","username":"alaminos","title":"Some changes in first parragraphs","filenames":["guide/spanish/accessibility/accessibility-basics/index.md"]},{"number":24528,"updated_at":"2018-11-13T00:45:33Z","username":"cryptofreq","title":"Added explanation a+bi","filenames":["guide/english/mathematics/imaginary-numbers/index.md"]},{"number":24531,"updated_at":"2018-12-11T00:18:07Z","username":"faisalsayed10","title":"Fix a typo in index.md","filenames":["guide/english/meta/free-code-camps-summit-december-2015/index.md"]},{"number":24538,"updated_at":"2018-11-13T00:45:41Z","username":"vkk2420","title":"Add the \"v4 Panel component Migration changes\"","filenames":["guide/english/bootstrap/panels/index.md"]},{"number":24539,"updated_at":"2018-11-13T00:45:43Z","username":"jake77658","title":"Added initial Text describing maximum and minimum","filenames":["guide/english/mathematics/finding-the-minimum-and-maximum-of-a-function/index.md"]},{"number":24540,"updated_at":"2018-11-13T00:45:45Z","username":"mauricioharley","title":"Complete rewriting of index.md","filenames":["guide/portuguese/network-engineering/index.md"]},{"number":24541,"updated_at":"2018-11-13T00:45:46Z","username":"dramish","title":"Add \"Difference between array and pointer\"","filenames":["guide/english/cplusplus/arrays/index.md"]},{"number":24542,"updated_at":"2018-11-13T00:45:48Z","username":"sjames1958gm","title":"Reworded some of the text, to use more accurate terminology and definitions.","filenames":["guide/english/cplusplus/index.md"]},{"number":24543,"updated_at":"2018-11-15T19:49:02Z","username":"lucasarvelo","title":"translated testString and added solution","filenames":["curriculum/challenges/spanish/03-front-end-libraries/react/add-comments-in-jsx.spanish.md"]},{"number":24545,"updated_at":"2018-11-13T00:45:53Z","username":"idenc","title":"Added a Haskell function introduction section","filenames":["guide/english/haskell/index.md"]},{"number":24546,"updated_at":"2018-11-13T00:45:55Z","username":"glanderson42","title":"created short article about lambdas","filenames":["guide/english/cplusplus/lambda-expressions/index.md"]},{"number":24548,"updated_at":"2018-11-13T00:45:58Z","username":"ricardotenorio","title":"fix: typos and added a missing section","filenames":["guide/portuguese/agile/index.md"]},{"number":24549,"updated_at":"2018-11-13T00:45:59Z","username":"jake77658","title":"Wrote a high level description of the slope","filenames":["guide/english/mathematics/finding-slope-from-graph/index.md"]},{"number":24554,"updated_at":"2018-11-13T00:46:04Z","username":"jake77658","title":"Added descriptions for Little o and omega","filenames":["guide/english/algorithms/algorithm-performance/index.md"]},{"number":24555,"updated_at":"2018-11-15T19:49:03Z","username":"lucasarvelo","title":"Challenges/spanish/react2","filenames":["curriculum/challenges/spanish/03-front-end-libraries/react/add-comments-in-jsx.spanish.md","curriculum/challenges/spanish/03-front-end-libraries/react/add-event-listeners.spanish.md"]},{"number":24558,"updated_at":"2018-11-13T00:46:06Z","username":"TGHeadle1371","title":"[Add] Link to Grid System 'set up'","filenames":["guide/english/bootstrap/index.md"]},{"number":24563,"updated_at":"2018-11-25T03:31:13Z","username":"javisenberg","title":"Added example and fix","filenames":["guide/spanish/php/if-else-statement/index.md"]},{"number":24564,"updated_at":"2018-11-13T00:46:10Z","username":"Naba7","title":"adding up another vectorizer","filenames":["guide/english/natural-language-processing/index.md"]},{"number":24567,"updated_at":"2018-11-13T00:46:11Z","username":"jake77658","title":"Added a short description, with formula and example.","filenames":["guide/english/mathematics/permutation-formula/index.md"]},{"number":24568,"updated_at":"2018-11-13T00:46:13Z","username":"sayeh92","title":"adding\"sampling bias\"","filenames":["guide/english/working-in-tech/unconscious-bias/index.md"]},{"number":24571,"updated_at":"2018-12-09T15:53:46Z","username":"fgkolf","title":"simple destructuring tutorial","filenames":["guide/english/javascript/destructuring/index.md"]},{"number":24572,"updated_at":"2018-11-13T00:46:16Z","username":"manoelneto-dev","title":"Atualizar erro de grafia na palavra \"title\"","filenames":["guide/portuguese/nodejs/express/index.md"]},{"number":24574,"updated_at":"2018-11-13T00:46:18Z","username":"jake77658","title":"Fixed Formatting","filenames":["guide/english/mathematics/combinations-and-permutations/index.md"]},{"number":24577,"updated_at":"2018-11-13T00:46:21Z","username":"mauricioharley","title":"Major changes and some translation corrections","filenames":["guide/portuguese/virtualbox/index.md"]},{"number":24579,"updated_at":"2018-11-13T00:46:25Z","username":"katherinefernandes","title":"Include HTML history","filenames":["guide/portuguese/html/index.md"]},{"number":24581,"updated_at":"2018-11-13T00:46:27Z","username":"Parth-01","title":"Add ternary example to php if/else guide.","filenames":["guide/english/php/if-else-statement/index.md"]},{"number":24582,"updated_at":"2018-11-13T00:46:28Z","username":"akshaykumar6","title":"PWA: Adding detailed guides for configuring status bar and splash screen","filenames":["guide/english/progressive-web-apps/splash-screen/index.md","guide/english/progressive-web-apps/status-bar/index.md"]},{"number":24583,"updated_at":"2018-11-15T19:49:05Z","username":"lucasarvelo","title":"Improved translation, translated stringTest and added solution","filenames":["curriculum/challenges/spanish/03-front-end-libraries/react/add-comments-in-jsx.spanish.md","curriculum/challenges/spanish/03-front-end-libraries/react/add-event-listeners.spanish.md","curriculum/challenges/spanish/03-front-end-libraries/react/add-inline-styles-in-react.spanish.md"]},{"number":24584,"updated_at":"2018-11-13T00:46:31Z","username":"katherinefernandes","title":"Include Python History","filenames":["guide/portuguese/python/index.md"]},{"number":24588,"updated_at":"2018-11-13T00:46:33Z","username":"katherinefernandes","title":"Include who created CSS","filenames":["guide/portuguese/css/index.md"]},{"number":24590,"updated_at":"2018-11-13T00:46:35Z","username":"katherinefernandes","title":"Include date","filenames":["guide/portuguese/csharp/index.md"]},{"number":24591,"updated_at":"2018-11-13T00:46:36Z","username":"katherinefernandes","title":"Include date","filenames":["guide/portuguese/ruby/index.md"]},{"number":24593,"updated_at":"2018-11-13T00:46:38Z","username":"roxanneroxanne","title":"fixed comma usage and grammar","filenames":["docs/how-to-catch-outgoing-emails-locally.md"]},{"number":24595,"updated_at":"2018-11-13T00:46:43Z","username":"CapDev17","title":"Multiple Grammatical Changes","filenames":["guide/english/agile/acceptance-testing/index.md"]},{"number":24598,"updated_at":"2018-11-13T00:46:45Z","username":"ritagomesdasilva","title":"Portuguese explanation for absolute positioning","filenames":["guide/portuguese/certifications/responsive-web-design/applied-visual-design/lock-an-element-to-its-parent-with-absolute-positioning/index.md"]},{"number":24599,"updated_at":"2018-11-13T00:46:47Z","username":"roxanneroxanne","title":"simple word swap","filenames":["docs/how-to-setup-freecodecamp-locally.md"]},{"number":24602,"updated_at":"2018-11-13T00:46:48Z","username":"devinbmiller","title":"Minor grammar/readability","filenames":["guide/english/linux/how-to-download-files-with-wget/index.md"]},{"number":24604,"updated_at":"2018-11-13T00:46:50Z","username":"roxanneroxanne","title":"adjusted sentence structure","filenames":["docs/style-guide-for-guide-articles.md"]},{"number":24607,"updated_at":"2018-11-13T00:46:52Z","username":"Naba7","title":"added link of brilliant.org","filenames":["guide/english/mathematics/algebra/index.md"]},{"number":24612,"updated_at":"2018-11-13T00:46:53Z","username":"aquelemiguel","title":"Fix header on XML syntax's paragraph","filenames":["guide/portuguese/xml/index.md"]},{"number":24613,"updated_at":"2018-11-13T00:46:55Z","username":"abbas10m","title":"Created new article on jagged arrays in csharp","filenames":["guide/english/csharp/jagged-arrays/index.md"]},{"number":24614,"updated_at":"2018-11-13T00:46:57Z","username":"marichiiin","title":"add stencyl and scratch","filenames":["guide/english/game-development/index.md"]},{"number":24616,"updated_at":"2018-11-13T00:47:00Z","username":"aquelemiguel","title":"Add missing superscript tags","filenames":["guide/portuguese/working-in-tech/unconscious-bias/index.md"]},{"number":24619,"updated_at":"2018-11-13T00:47:02Z","username":"ricardotenorio","title":"fix: title and translation","filenames":["guide/portuguese/java/loops/index.md"]},{"number":24620,"updated_at":"2018-11-13T00:47:03Z","username":"aquelemiguel","title":"Fix sentence which ended abruptly","filenames":["guide/portuguese/accessibility/accessibility-basics/index.md"]},{"number":24622,"updated_at":"2018-11-13T00:47:07Z","username":"aquelemiguel","title":"Fix typo on translation of dynamic programming","filenames":["guide/portuguese/algorithms/greedy-algorithms/index.md"]},{"number":24624,"updated_at":"2018-11-13T00:47:08Z","username":"none2serious","title":"Add Python 3.x print example","filenames":["guide/english/python/files-and-io/index.md"]},{"number":24627,"updated_at":"2018-11-13T00:47:13Z","username":"aquelemiguel","title":"Revert translation of man","filenames":["guide/portuguese/bash/bash-man/index.md"]},{"number":24630,"updated_at":"2018-11-13T00:47:17Z","username":"NuclearPineapples","title":"Spelling Error","filenames":["guide/english/agile/integration-hell/index.md"]},{"number":24631,"updated_at":"2018-11-13T00:47:18Z","username":"Mr-Patcher","title":"added guide for exponents","filenames":["guide/english/mathematics/exponents-basic-rules/index.md"]},{"number":24635,"updated_at":"2018-11-13T00:47:20Z","username":"Bodddi","title":"Grammar edit","filenames":["guide/english/data-science-tools/index.md"]},{"number":24636,"updated_at":"2018-10-23T05:52:47Z","username":"Joe-Lalama","title":"ifconfig","filenames":["guide/english/bash/bash-ifconfig/index.md"]},{"number":24639,"updated_at":"2018-11-13T00:47:22Z","username":"kendalled","title":"Made lines 27 and 28 (hyperlinks) more descriptive","filenames":["guide/english/mathematics/algebra/simplifying-square-roots/index.md"]},{"number":24641,"updated_at":"2018-10-24T13:14:13Z","username":"Joe-Lalama","title":"exit","filenames":["guide/english/bash/bash-exit/index.md"]},{"number":24643,"updated_at":"2018-10-24T13:15:09Z","username":"Joe-Lalama","title":"clear","filenames":["guide/english/bash/bash-clear/index.md"]},{"number":24644,"updated_at":"2018-11-13T00:47:24Z","username":"Fumakija","title":"Added \"virtualbox is very [...]\" to the article.","filenames":["guide/english/virtualbox/index.md"]},{"number":24645,"updated_at":"2018-11-13T00:47:25Z","username":"Joe-Lalama","title":"bash","filenames":["guide/english/bash/bash"]},{"number":24646,"updated_at":"2018-11-15T19:49:06Z","username":"GabrielCaballero","title":"Improved readability for Spanish speaking users","filenames":["curriculum/challenges/spanish/08-coding-interview-prep/algorithms/implement-bubble-sort.spanish.md"]},{"number":24647,"updated_at":"2018-11-13T00:47:27Z","username":"sophiekamuf","title":"Add \"*Text summarization\" and \"*Pattern...\"","filenames":["guide/english/machine-learning/natural-language-processing/index.md"]},{"number":24649,"updated_at":"2018-11-13T00:47:29Z","username":"Peritract","title":"Update/ Expand guide article on Godot from stub","filenames":["guide/english/game-development/godot/index.md"]},{"number":24652,"updated_at":"2018-11-13T00:47:32Z","username":"Spencer-Chajkowski","title":"Elaborated Computer Security Section","filenames":["guide/english/working-in-tech/index.md"]},{"number":24655,"updated_at":"2018-11-15T19:49:08Z","username":"GabrielCaballero","title":"Improved Spanish Translation","filenames":["curriculum/challenges/spanish/03-front-end-libraries/front-end-libraries-projects/build-a-javascript-calculator.spanish.md"]},{"number":24656,"updated_at":"2018-11-13T00:47:34Z","username":"burst1ng","title":"deleted one chinese word in the title","filenames":["guide/chinese/javascript/index.md"]},{"number":24658,"updated_at":"2018-11-13T00:47:37Z","username":"sophiekamuf","title":"Add \"Example 3\"","filenames":["guide/english/machine-learning/supervised-learning/index.md"]},{"number":24659,"updated_at":"2018-10-29T02:32:21Z","username":"GabrielCaballero","title":"Improved Spanish translation","filenames":["guide/spanish/documentation/index.md"]},{"number":24661,"updated_at":"2018-11-13T00:47:41Z","username":"vanessaland","title":"Add an image and caption to the article","filenames":["guide/english/mathematics/prime-numbers/index.md"]},{"number":24662,"updated_at":"2018-11-13T00:47:42Z","username":"fmete14","title":"Added prime numbers list","filenames":["guide/english/mathematics/prime-number-list/index.md"]},{"number":24664,"updated_at":"2018-11-13T00:47:46Z","username":"sophiekamuf","title":"Add \"df.describe()\"","filenames":["guide/english/data-science-tools/pandas/index.md"]},{"number":24669,"updated_at":"2018-12-03T10:13:50Z","username":"MichelPra","title":"adding my contribution at index.md","filenames":["guide/spanish/blockchain/features/index.md"]},{"number":24670,"updated_at":"2018-12-03T10:13:43Z","username":"fgkolf","title":"added a brief java bean explanation","filenames":["guide/english/java/java-bean/index.md"]},{"number":24671,"updated_at":"2018-12-03T10:13:37Z","username":"econdepe","title":"Expand and add to previous content","filenames":["guide/english/blockchain/smart-contracts/index.md"]},{"number":24674,"updated_at":"2018-12-03T10:13:16Z","username":"sophiekamuf","title":"Add \"Popular models\"","filenames":["guide/english/data-science-tools/scikit/index.md"]},{"number":24675,"updated_at":"2018-12-03T10:13:09Z","username":"condor-webdev","title":"Added importing a VM","filenames":["guide/english/virtualbox/index.md"]},{"number":24684,"updated_at":"2018-11-13T00:48:07Z","username":"sophiekamuf","title":"Add \"K-means clustering description\"","filenames":["guide/english/machine-learning/unsupervised-learning/index.md"]},{"number":24693,"updated_at":"2018-11-13T00:48:14Z","username":"maryfranceshull","title":"Fix spelling errors","filenames":["guide/english/linux/basic-linux-commands/index.md","guide/english/linux/common-terms-every-linux-user-should-know/index.md","guide/english/linux/getting-started/index.md","guide/english/linux/how-linux-system-boots-up-6-step-description/index.md","guide/english/linux/index.md"]},{"number":24694,"updated_at":"2018-11-13T00:48:15Z","username":"Bro3Simon","title":"Capitalized Bootstrap","filenames":["guide/english/bootstrap/buttons/index.md"]},{"number":24696,"updated_at":"2018-11-13T00:48:19Z","username":"criedchild","title":"add the text \"codeigniter in php\" to article","filenames":["guide/english/php/functions/index.md"]},{"number":24698,"updated_at":"2018-11-13T00:48:20Z","username":"Bro3Simon","title":"added \"of that\"","filenames":["guide/english/bootstrap/cards/index.md"]},{"number":24700,"updated_at":"2018-11-13T00:48:24Z","username":"criedchild","title":"add the text \"exception in php\" to article","filenames":["guide/english/php/errors/exceptions/index.md"]},{"number":24702,"updated_at":"2018-11-13T00:48:27Z","username":"Bro3Simon","title":"Changed Capitalization and Removed Extra Space","filenames":["guide/english/bootstrap/carousel/index.md"]},{"number":24705,"updated_at":"2018-11-13T00:48:30Z","username":"jkulton","title":"Improvements to Common Array Methods Ruby guide","filenames":["guide/english/ruby/common-array-methods/index.md"]},{"number":24706,"updated_at":"2018-11-13T00:48:32Z","username":"somethingtrippy","title":"Update wording of prevent default description","filenames":["guide/english/javascript/onclick-event/index.md"]},{"number":24707,"updated_at":"2018-11-13T00:48:34Z","username":"joshmate","title":"Added description of the \"CIA Triad\"","filenames":["guide/english/security/index.md"]},{"number":24709,"updated_at":"2018-11-13T00:48:35Z","username":"ldmaroni9","title":"Removal of off-place characters","filenames":["guide/spanish/certifications/coding-interview-prep/algorithms/find-the-symmetric-difference/index.md"]},{"number":24710,"updated_at":"2018-11-25T03:31:02Z","username":"fgkolf","title":"syntax and code fixes and some minor additions","filenames":["guide/english/react/state-vs-props/index.md"]},{"number":24711,"updated_at":"2018-11-13T00:48:39Z","username":"MichelPra","title":"my contribution to readme.md","filenames":["guide/english/blockchain/features/index.md"]},{"number":24712,"updated_at":"2018-11-13T00:48:40Z","username":"joshmate","title":"Added sentence clarifying legal requirements","filenames":["guide/english/security/penetration-testing/index.md"]},{"number":24713,"updated_at":"2018-11-13T00:48:42Z","username":"criedchild","title":"add text library session in codeigniter to article","filenames":["guide/english/php/sessions/index.md"]},{"number":24715,"updated_at":"2018-11-13T00:48:45Z","username":"15jacobj","title":"Minor text changes (better explains some concepts, typographical erro…","filenames":["guide/english/computer-science/quantum-computing/index.md"]},{"number":24716,"updated_at":"2018-11-13T00:48:47Z","username":"BTmathic","title":"Added content to stub","filenames":["guide/english/mathematics/understanding-the-quadratic-formula/index.md"]},{"number":24717,"updated_at":"2018-11-13T00:48:49Z","username":"danieladamharding","title":"Fixed Minor Spelling Errors and Added a Resource","filenames":["guide/english/css/layout/grid-layout/index.md"]},{"number":24718,"updated_at":"2018-11-13T00:48:50Z","username":"joshmate","title":"Added info on nmap and Zenmap","filenames":["guide/english/security/scanning/index.md"]},{"number":24720,"updated_at":"2018-11-13T00:48:52Z","username":"CapDev17","title":"Uncapitalized the word \"iteration\".","filenames":["guide/english/agile/velocity/index.md"]},{"number":24722,"updated_at":"2018-11-13T00:48:54Z","username":"joshmate","title":"Added common cryptographic hash functions","filenames":["guide/english/security/cryptography/index.md"]},{"number":24724,"updated_at":"2018-11-13T00:48:57Z","username":"danieladamharding","title":"Minor Grammar and Spelling Corrections","filenames":["guide/english/bootstrap/icons/index.md"]},{"number":24726,"updated_at":"2018-11-13T00:48:58Z","username":"estudioChispa","title":"Spelling and punctuation edits","filenames":["guide/english/html/mailto-links/index.md"]},{"number":24727,"updated_at":"2018-12-05T16:18:06Z","username":"riacheruvu","title":"fix: Update index.md with supervised learning steps","filenames":["guide/english/machine-learning/index.md"]},{"number":24728,"updated_at":"2018-11-13T00:49:02Z","username":"jpatrowan","title":"Added \"of\" to An appropriate use \"of\" case...","filenames":["guide/english/html/elements/b-tag/index.md"]},{"number":24730,"updated_at":"2018-10-29T02:00:20Z","username":"anjovazquez","title":"Spanish Translation for code reviews article","filenames":["guide/spanish/working-in-tech/code-reviews/index.md"]},{"number":24731,"updated_at":"2018-11-13T00:49:05Z","username":"joshmate","title":"Added additional tools","filenames":["guide/english/security/footprinting-and-reconnaissance/index.md"]},{"number":24734,"updated_at":"2018-11-13T00:49:07Z","username":"jonniebigodes","title":"creation of a redux-saga guide","filenames":["guide/english/redux/redux-sagas/index.md"]},{"number":24738,"updated_at":"2018-11-13T00:49:12Z","username":"criedchild","title":"add changes ; to : in article","filenames":["guide/english/php/basic-syntax/index.md"]},{"number":24740,"updated_at":"2018-11-13T00:49:13Z","username":"santiagobeloqui","title":"Change \"Diga hola\" for \"Salude\"","filenames":["guide/spanish/certifications/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements/index.md"]},{"number":24742,"updated_at":"2018-11-13T00:49:15Z","username":"krekalidis","title":"Add Drop Column example","filenames":["guide/english/sql/sql-alter-table-statement/index.md"]},{"number":24744,"updated_at":"2018-11-13T00:49:16Z","username":"criedchild","title":"add text validating form with codeigniter","filenames":["guide/english/php/forms/validating-form-input/index.md"]},{"number":24746,"updated_at":"2018-11-13T00:49:18Z","username":"jpatrowan","title":"Added abbreviated HEX value for color.","filenames":["guide/english/css/background/index.md"]},{"number":24747,"updated_at":"2018-11-13T00:49:20Z","username":"santiagobeloqui","title":"Fix grammar","filenames":["guide/spanish/certifications/javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-arrays/index.md"]},{"number":24750,"updated_at":"2018-11-13T00:49:25Z","username":"krekalidis","title":"Add cd\\ command","filenames":["guide/english/terminal-commandline/windows-command-prompt/index.md"]},{"number":24753,"updated_at":"2018-11-13T00:49:28Z","username":"lsomacruzl","title":"Added details of the way docker works","filenames":["guide/spanish/containers/docker/index.md"]},{"number":24755,"updated_at":"2018-11-13T00:49:30Z","username":"aniltirli","title":"minor grammar changes","filenames":["guide/english/agile/velocity/index.md"]},{"number":24757,"updated_at":"2018-11-13T00:49:31Z","username":"MrLiii","title":"Definition and Usage","filenames":["guide/english/html/elements/script-tag/index.md"]},{"number":24758,"updated_at":"2018-10-29T02:32:59Z","username":"azuzunaga","title":"Fix command line guides in spanish","filenames":["guide/spanish/terminal-commandline/macos-terminal/index.md","guide/spanish/terminal-commandline/windows-command-prompt/index.md"]},{"number":24759,"updated_at":"2018-11-13T00:49:33Z","username":"jasonranney","title":"Added and removed spaces.","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":24760,"updated_at":"2018-11-13T00:49:35Z","username":"tpliakas","title":"Added examples for tracking remote branch","filenames":["guide/english/git/git-branch/index.md"]},{"number":24761,"updated_at":"2018-11-13T00:49:36Z","username":"yaganub","title":"updated line 9 to be more concise","filenames":["guide/english/security/wireshark/index.md"]},{"number":24762,"updated_at":"2018-10-29T02:33:33Z","username":"anjovazquez","title":"Spanish Translation for vue components section","filenames":["guide/spanish/vue/components/index.md"]},{"number":24766,"updated_at":"2018-11-13T00:49:42Z","username":"Ahmed-Elbessfy","title":"Remove unnecessary symbols","filenames":["guide/arabic/html/index.md"]},{"number":24767,"updated_at":"2018-11-13T00:49:43Z","username":"jpatrowan","title":"Added \"use image as link\" example and cleaned up comments.","filenames":["guide/english/html/tutorials/images-in-html/index.md"]},{"number":24768,"updated_at":"2018-11-13T00:49:45Z","username":"azuzunaga","title":"English terminal guide: Fix typo, add rm example, and add caution note.","filenames":["guide/english/terminal-commandline/macos-terminal/index.md","guide/spanish/terminal-commandline/macos-terminal/index.md"]},{"number":24771,"updated_at":"2018-11-15T19:49:09Z","username":"alanpaulprice","title":"Challenge - Basic JavaScript: Understanding Undefined Value returned from a Function - Reworded a sentence, added a line break","filenames":["curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-undefined-value-returned-from-a-function.english.md"]},{"number":24775,"updated_at":"2018-11-13T00:49:51Z","username":"AlyssaDang","title":"Definition","filenames":["guide/english/java/constructors/index.md"]},{"number":24776,"updated_at":"2018-11-13T00:49:53Z","username":"aniltirli","title":"line 277, 278, 282 comments enhanced","filenames":["guide/english/c/pointers/index.md"]},{"number":24777,"updated_at":"2018-11-13T00:49:55Z","username":"klima1","title":"Update index.md","filenames":["guide/english/computer-science/hexcode/index.md"]},{"number":24780,"updated_at":"2018-11-13T00:49:56Z","username":"fntneves","title":"Update PHP array syntax on Array guide","filenames":["guide/portuguese/php/array/index.md"]},{"number":24781,"updated_at":"2018-11-13T00:49:58Z","username":"yaganub","title":"Updated several lines to make more concise","filenames":["guide/english/security/confidentiality-integrity-availability/index.md"]},{"number":24784,"updated_at":"2018-11-13T00:50:00Z","username":"klima1","title":"Update index.md","filenames":["guide/english/computer-science/data-mining/index.md"]},{"number":24787,"updated_at":"2018-12-07T00:31:54Z","username":"Ahmed-Elbessfy","title":"Adding links for articles in the guide","filenames":["docs/README.md"]},{"number":24789,"updated_at":"2018-11-13T00:50:05Z","username":"devinbmiller","title":"Minor spelling and grammar fixes","filenames":["guide/english/linux/shell-scripting/index.md"]},{"number":24791,"updated_at":"2018-11-13T00:50:06Z","username":"arturFVictor","title":"Correction in translation to PT","filenames":["guide/portuguese/c/for/index.md"]},{"number":24792,"updated_at":"2018-11-13T00:50:08Z","username":"fntneves","title":"Update PHP array syntax on Arrays guide","filenames":["guide/portuguese/php/arrays/index.md"]},{"number":24796,"updated_at":"2018-11-13T00:50:10Z","username":"fntneves","title":"Update PHP array syntax on Array Sorting guide","filenames":["guide/portuguese/php/arrays/sorting-arrays/index.md"]},{"number":24798,"updated_at":"2018-11-13T00:50:11Z","username":"saboorElahi","title":"Functions are elaborated & more examples are added","filenames":["guide/english/cplusplus/functions/index.md"]},{"number":24801,"updated_at":"2018-11-13T00:50:13Z","username":"condor-webdev","title":"Create grep command","filenames":["guide/english/bash/bash-grep/index.md"]},{"number":24807,"updated_at":"2018-11-13T00:50:15Z","username":"Dhirendra24","title":"Add hint & example for using CSS selectors.","filenames":["guide/english/certifications/responsive-web-design/basic-css/use-css-selectors-to-style-elements/index.md"]},{"number":24813,"updated_at":"2018-11-13T00:50:17Z","username":"Kaosxlinus","title":"Add section for using non-storage USB devices.","filenames":["guide/english/virtualbox/index.md"]},{"number":24814,"updated_at":"2018-11-13T00:50:18Z","username":"iceicelogan","title":"
 Formatting for Examples","filenames":["guide/english/mathematics/3-by-3-determinants/index.md"]},{"number":24818,"updated_at":"2018-11-13T00:50:23Z","username":"Dhirendra24","title":"Add hint with example to use Attribute Selectors","filenames":["guide/english/certifications/responsive-web-design/basic-css/use-attribute-selectors-to-style-elements/index.md"]},{"number":24820,"updated_at":"2018-11-15T19:49:11Z","username":"ldmaroni9","title":"Translated 4th title","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.spanish.md"]},{"number":24821,"updated_at":"2018-11-15T19:49:12Z","username":"ldmaroni9","title":"Translated Titles and comment in code","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/add-an-accessible-date-picker.spanish.md"]},{"number":24822,"updated_at":"2018-11-15T19:49:14Z","username":"ldmaroni9","title":"Translated titles","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-carefully-choosing-colors-that-convey-information.spanish.md"]},{"number":24823,"updated_at":"2018-11-15T19:49:15Z","username":"ldmaroni9","title":"Translated article titles","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-using-sufficient-contrast.spanish.md"]},{"number":24825,"updated_at":"2018-11-15T19:49:17Z","username":"ldmaroni9","title":"Translated Titles","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text.spanish.md"]},{"number":24826,"updated_at":"2018-11-13T00:50:35Z","username":"psatler","title":"Translate title into Portuguese and fix some grammar agreements","filenames":["guide/portuguese/react/state-vs-props/index.md"]},{"number":24828,"updated_at":"2018-11-13T00:50:37Z","username":"marcusparsons","title":"Edited previous section and added new sections","filenames":["guide/english/csharp/for/index.md"]},{"number":24833,"updated_at":"2018-11-13T00:50:38Z","username":"psatler","title":"Translate title back to English","filenames":["guide/portuguese/react-native/props/index.md"]},{"number":24836,"updated_at":"2018-11-13T00:50:43Z","username":"tiagoshibata","title":"Fix grammar and wording in Portuguese guides","filenames":["guide/portuguese/c/functions/index.md","guide/portuguese/c/if/index.md"]},{"number":24838,"updated_at":"2018-11-13T00:50:45Z","username":"codyteo","title":"Elaborate on SAFe configurations","filenames":["guide/english/agile/safe/index.md"]},{"number":24839,"updated_at":"2018-11-13T00:50:46Z","username":"TrollzorFTW","title":"Calling function from another file","filenames":["guide/english/cplusplus/functions/index.md"]},{"number":24842,"updated_at":"2018-11-13T00:50:48Z","username":"psatler","title":"Fix locale title","filenames":["guide/portuguese/react/what-are-react-props/index.md"]},{"number":24843,"updated_at":"2018-11-13T00:50:50Z","username":"codyteo","title":"Added snippet on business value","filenames":["guide/english/agile/business-value/index.md"]},{"number":24844,"updated_at":"2018-11-13T00:50:51Z","username":"TrollzorFTW","title":"An efficient way to read your variables","filenames":["guide/english/cplusplus/switch-statements/index.md"]},{"number":24845,"updated_at":"2018-11-13T00:50:53Z","username":"BTmathic","title":"Corrected errors and expanded discussion","filenames":["guide/english/mathematics/irrational-numbers/index.md"]},{"number":24846,"updated_at":"2018-11-13T00:50:55Z","username":"psatler","title":"Translate part of locale Title back to English","filenames":["guide/portuguese/react/why-react/index.md"]},{"number":24847,"updated_at":"2018-11-13T00:50:56Z","username":"codyteo","title":"Updated links in more information","filenames":["guide/english/agile/chickens-versus-pigs/index.md"]},{"number":24850,"updated_at":"2018-11-13T00:51:01Z","username":"Timmymichael","title":"More information added on Hexadecimal colors","filenames":["guide/english/css/css3-colors/index.md"]},{"number":24852,"updated_at":"2018-11-13T00:51:03Z","username":"codyteo","title":"Added more information.","filenames":["guide/english/agile/code-smells/index.md"]},{"number":24853,"updated_at":"2018-11-13T00:51:04Z","username":"Swarup182","title":"added some text on need on MVP/MVVM implementation","filenames":["guide/english/android-development/core-components/index.md"]},{"number":24855,"updated_at":"2018-11-15T19:49:18Z","username":"Swarup182","title":"just a rant about fragmentation on android","filenames":["curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-1-multiples-of-3-and-5.english.md","guide/english/android-development/core-components/index.md"]},{"number":24856,"updated_at":"2018-11-13T00:51:09Z","username":"jumpycoding","title":"fix: add basic definition of p-value","filenames":["guide/english/mathematics/what-a-p-value-tells-you-about-statistical-data/index.md"]},{"number":24857,"updated_at":"2018-11-13T00:51:11Z","username":"ellakenn07","title":"add helpful links","filenames":["guide/english/mathematics/pythagorean-theorem/index.md"]},{"number":24859,"updated_at":"2018-11-13T00:51:13Z","username":"Dhirendra24","title":"Fix code URL & minor issues","filenames":["guide/english/algorithms/search-algorithms/jump-search/index.md"]},{"number":24860,"updated_at":"2018-11-15T19:49:20Z","username":"jrobertorma","title":"Some grammar fixes","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/add-borders-around-your-elements.spanish.md"]},{"number":24861,"updated_at":"2018-11-13T00:51:16Z","username":"vdkhadke","title":"Modifying index.md","filenames":["guide/english/java/final-keyword/index.md"]},{"number":24862,"updated_at":"2018-11-13T00:51:18Z","username":"NishiCodes","title":"Add the text \"Solidity is a contract-oriented, high-level language fo…","filenames":["guide/english/blockchain/smart-contracts/index.md"]},{"number":24863,"updated_at":"2018-11-13T00:51:19Z","username":"KamarM","title":"Add \"my changes\" to the article","filenames":["guide/arabic/java/data-types/index.md"]},{"number":24864,"updated_at":"2018-11-13T00:51:21Z","username":"Timmymichael","title":"Change the text \"desgigners\" to designers","filenames":["guide/english/typography/alignment/index.md"]},{"number":24865,"updated_at":"2018-11-15T19:49:21Z","username":"jrobertorma","title":"A couple of grammar fixes","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/add-different-padding-to-each-side-of-an-element.spanish.md"]},{"number":24869,"updated_at":"2018-11-13T00:51:26Z","username":"vdkhadke","title":"Updating index.md","filenames":["guide/english/bash/bash-redirection/index.md"]},{"number":24870,"updated_at":"2018-11-15T19:49:23Z","username":"jrobertorma","title":"Some grammar and syntax fixes","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/add-rounded-corners-with-border-radius.spanish.md"]},{"number":24871,"updated_at":"2018-11-13T00:51:29Z","username":"DavidNachman","title":"Introduction to Bitcoin","filenames":["guide/english/blockchain/index.md"]},{"number":24873,"updated_at":"2018-11-13T00:51:33Z","username":"Jacobmpp","title":"Added reference to \"//TODO\" notation","filenames":["guide/english/javascript/comments/index.md"]},{"number":24874,"updated_at":"2018-11-13T00:51:34Z","username":"NishiCodes","title":"Add the text \"Functions associated with Set: ```c++ begin() – Returns…","filenames":["guide/english/cplusplus/c-stl-sets/index.md"]},{"number":24875,"updated_at":"2018-11-13T00:51:36Z","username":"GiraffeWarrior","title":"Edited \"For Loop\" entry for grammar and clarity","filenames":["guide/english/cplusplus/for-loop/index.md"]},{"number":24877,"updated_at":"2018-11-13T00:51:39Z","username":"BiscuiTech","title":"Added REST Route 304","filenames":["guide/english/rest-api/index.md"]},{"number":24878,"updated_at":"2018-11-13T00:51:41Z","username":"Jacobmpp","title":"Added reference to overloading functions","filenames":["guide/english/javascript/arguments/index.md"]},{"number":24879,"updated_at":"2018-11-13T00:51:43Z","username":"bagecka","title":"Updated article on using rgb values","filenames":["guide/english/certifications/responsive-web-design/basic-css/use-rgb-values-to-color-elements/index.md"]},{"number":24886,"updated_at":"2018-11-13T00:51:44Z","username":"deliaphan","title":"Improve format consistency","filenames":["guide/english/blockchain/index.md"]},{"number":24887,"updated_at":"2018-11-13T00:51:46Z","username":"spinder96","title":"Articles on Usability Testing","filenames":["guide/english/user-experience-research/usability-testing/index.md"]},{"number":24888,"updated_at":"2018-11-13T00:51:47Z","username":"ogiq","title":"Added resource for Machine Learning","filenames":["guide/english/machine-learning/neural-networks/index.md"]},{"number":24895,"updated_at":"2018-11-13T00:51:49Z","username":"evertonrbraga","title":"Fixing some portuguese mistakes","filenames":["guide/portuguese/javascript/loops/for-loop/index.md"]},{"number":24896,"updated_at":"2018-11-13T00:51:51Z","username":"solaymanemimo","title":"Added More Information Section with links","filenames":["guide/english/agile/index.md"]},{"number":24898,"updated_at":"2018-11-13T00:51:55Z","username":"solaymanemimo","title":"Added resource for Accessibility","filenames":["guide/english/accessibility/index.md"]},{"number":24899,"updated_at":"2018-11-13T00:51:56Z","username":"ogiq","title":"Added the cheat sheet","filenames":["guide/english/python/anaconda/index.md"]},{"number":24902,"updated_at":"2018-11-13T00:51:59Z","username":"vdkhadke","title":"Update index.md fix typos and extra information","filenames":["guide/english/computer-science/garbage-collection/index.md"]},{"number":24906,"updated_at":"2018-11-13T00:52:04Z","username":"epq","title":"Update index.md for Docker documentation","filenames":["guide/english/containers/docker/index.md"]},{"number":24907,"updated_at":"2018-11-13T00:52:05Z","username":"ogiq","title":"Additional Resources","filenames":["guide/english/algorithms/graph-algorithms/index.md"]},{"number":24908,"updated_at":"2018-11-13T00:52:07Z","username":"arsh1207","title":"Updating Different layers of cloud","filenames":["guide/english/cloud-development/index.md"]},{"number":24909,"updated_at":"2018-11-13T00:52:09Z","username":"arsh1207","title":"Cloud layers","filenames":["guide/english/cloud-development/index.md"]},{"number":24910,"updated_at":"2018-10-29T02:35:39Z","username":"ogiq","title":"Update index.md","filenames":["guide/spanish/computer-science/data-mining/index.md"]},{"number":24912,"updated_at":"2018-11-13T00:52:11Z","username":"jma921","title":"Adds localhost:8000 to gatsby develop command","filenames":["guide/english/gatsbyjs/index.md"]},{"number":24914,"updated_at":"2018-11-13T00:52:12Z","username":"evertonrbraga","title":"Documentation improvements about CSS fonts","filenames":["guide/portuguese/css/fonts/index.md"]},{"number":24916,"updated_at":"2018-11-13T00:52:14Z","username":"queirozsc","title":"Final question","filenames":["guide/portuguese/accessibility/index.md"]},{"number":24918,"updated_at":"2018-11-13T00:52:15Z","username":"arturFVictor","title":"Correction in translation to PT","filenames":["guide/portuguese/c/if/index.md"]},{"number":24919,"updated_at":"2018-11-13T00:52:17Z","username":"raulgonzalezcz","title":"Añadir video informativo","filenames":["guide/spanish/agile/acceptance-criteria/index.md"]},{"number":24920,"updated_at":"2018-11-13T00:52:19Z","username":"stanleychu2","title":"add rename instruction","filenames":["guide/chinese/bash/bash-mv/index.md"]},{"number":24921,"updated_at":"2018-11-13T00:52:20Z","username":"clylo","title":"Add to overview section","filenames":["guide/english/data-science-tools/pandas/index.md"]},{"number":24922,"updated_at":"2018-11-13T00:52:22Z","username":"arturFVictor","title":"Correction in translation to PT","filenames":["guide/portuguese/c/if-statements/index.md"]},{"number":24923,"updated_at":"2018-11-13T00:52:24Z","username":"arturFVictor","title":"Correction in translation to PT","filenames":["guide/portuguese/c/switch/index.md"]},{"number":24924,"updated_at":"2018-11-13T00:52:25Z","username":"raulgonzalezcz","title":"Traducción de texto local \"Smart Contract\", añadir video informativo","filenames":["guide/spanish/blockchain/smart-contracts/index.md"]},{"number":24927,"updated_at":"2018-11-13T00:52:27Z","username":"apineiro","title":"Agregué palabras \"de Javascript\" y comillas dobles","filenames":["guide/spanish/vue/index.md"]},{"number":24928,"updated_at":"2018-11-13T00:52:29Z","username":"brianfinkelstien","title":"add get started page to gcp","filenames":["guide/english/cloud-development/google-cloud-platform/index.md"]},{"number":24929,"updated_at":"2018-11-13T00:52:30Z","username":"kabircse","title":"bubble sort example in php added","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":24931,"updated_at":"2018-11-13T00:52:32Z","username":"priteshpk","title":"Update index.md","filenames":["guide/english/php/super-globals/index.md"]},{"number":24935,"updated_at":"2018-11-13T00:52:34Z","username":"doomcrewinc","title":"Added instructions for Fedora","filenames":["guide/english/apache/index.md"]},{"number":24936,"updated_at":"2018-11-13T00:52:35Z","username":"shilpi03","title":"added information to abs function","filenames":["guide/english/python/abs-function/index.md"]},{"number":24937,"updated_at":"2018-11-13T00:52:37Z","username":"apineiro","title":"Reemplazar palabra \"reaccionar\" con React","filenames":["guide/spanish/react/index.md"]},{"number":24939,"updated_at":"2018-11-13T00:52:38Z","username":"doomcrewinc","title":"Added in an additional use of mkdir.","filenames":["guide/english/bash/bash-mkdir/index.md"]},{"number":24940,"updated_at":"2018-11-13T00:52:40Z","username":"coolmint204","title":"Add visual changes and update description of \"types\"","filenames":["guide/spanish/html/attributes/input/index.md"]},{"number":24941,"updated_at":"2018-11-13T00:52:42Z","username":"jma921","title":"Adds more resources links","filenames":["guide/english/css/css3-flexible-box/index.md"]},{"number":24942,"updated_at":"2018-11-13T00:52:43Z","username":"doomcrewinc","title":"Documented -c flag for resuming file download","filenames":["guide/english/linux/how-to-download-files-with-wget/index.md"]},{"number":24943,"updated_at":"2018-11-13T00:52:45Z","username":"coolmint204","title":"Minor grammatical and visual changes","filenames":["guide/spanish/game-development/minecraft-forge/index.md"]},{"number":24945,"updated_at":"2018-11-13T00:52:47Z","username":"jma921","title":"Adds Hyper terminal description and links","filenames":["guide/english/terminal-commandline/macos-terminal/index.md"]},{"number":24946,"updated_at":"2018-11-13T00:52:48Z","username":"karojg","title":"Changing informal form (_tuteo_) to formal form (_ustedeo_)","filenames":["guide/spanish/accessibility/accessibility-basics/index.md"]},{"number":24947,"updated_at":"2018-11-13T00:52:50Z","username":"jma921","title":"Adds Adobe Typekit to additional resources","filenames":["guide/english/typography/where-to-get-fonts/index.md"]},{"number":24949,"updated_at":"2018-11-13T00:52:51Z","username":"coolmint204","title":"Add \"Find out more\" links and section on BLAST","filenames":["guide/english/computational-genomics/index.md"]},{"number":24952,"updated_at":"2018-11-13T00:52:55Z","username":"coolmint204","title":"Visual changes,  fix grammatical mistakes","filenames":["guide/english/game-development/unity/index.md"]},{"number":24954,"updated_at":"2018-11-13T00:52:57Z","username":"daya2940","title":"Added \"time complexity of array\"","filenames":["guide/english/c/arrays/index.md"]},{"number":24957,"updated_at":"2018-11-13T00:52:58Z","username":"daya2940","title":"Added \"pointer not a datatype\"","filenames":["guide/english/c/data-types/index.md"]},{"number":24963,"updated_at":"2018-11-13T00:53:00Z","username":"evertonrbraga","title":"Explanation about React components","filenames":["guide/portuguese/react/components/index.md"]},{"number":24964,"updated_at":"2018-11-13T00:53:02Z","username":"Girrajjangid","title":"Add My chances to new file","filenames":["guide/english/android-development/firebase/firebase-storage/setup/index.md"]},{"number":24966,"updated_at":"2018-11-13T00:53:03Z","username":"evertonrbraga","title":"Portuguese grammar fixes","filenames":["guide/portuguese/react/component/index.md"]},{"number":24968,"updated_at":"2018-11-13T00:53:06Z","username":"Girrajjangid","title":"Add the changes text to file","filenames":["guide/english/python/if-elif-else-statements/index.md"]},{"number":24974,"updated_at":"2018-11-13T00:53:10Z","username":"evertonrbraga","title":"[translation] React article fixes","filenames":["guide/portuguese/react/hello-world/index.md"]},{"number":24975,"updated_at":"2018-11-13T00:53:11Z","username":"Kevin37Li","title":"three changes made","filenames":["guide/english/python/converting-integer-to-string-in-python/index.md"]},{"number":24978,"updated_at":"2018-11-13T00:53:13Z","username":"Praneeth16","title":"added pros & cons","filenames":["guide/english/machine-learning/random-forest/index.md"]},{"number":24979,"updated_at":"2018-11-13T00:53:15Z","username":"dencim","title":"Update guide/english/web-virtual-reality/index.md Added an example","filenames":["guide/english/web-virtual-reality/index.md"]},{"number":24980,"updated_at":"2018-11-13T00:53:16Z","username":"mridul981","title":"Added add method in arraylist in java and fixed sort method","filenames":["guide/english/java/arraylist/index.md"]},{"number":24985,"updated_at":"2018-11-13T00:53:18Z","username":"pmadhukar99","title":"More Example and uses of 'Between'","filenames":["guide/english/sql/sql-between-operator/index.md"]},{"number":24987,"updated_at":"2018-11-13T00:53:20Z","username":"chirayusamarth","title":"namedtuple()","filenames":["guide/english/python/collections/namedtuple/index.md"]},{"number":24988,"updated_at":"2018-11-13T00:53:21Z","username":"Amoghmule","title":"added example to rotate list using slice","filenames":["guide/english/python/slicestartstopstep/index.md"]},{"number":24991,"updated_at":"2018-11-13T00:53:23Z","username":"Amoghmule","title":"added \"dynamic typing\" to file","filenames":["guide/english/python/args-variable/index.md"]},{"number":24993,"updated_at":"2018-11-13T00:53:26Z","username":"jesudash","title":"Corrected a tag syntax","filenames":["guide/english/algorithms/algorithm-design-patterns/creational-patterns/index.md"]},{"number":24995,"updated_at":"2018-11-13T00:53:29Z","username":"nishk1997","title":"Use of do while loop","filenames":["guide/english/cplusplus/do-while-loop/index.md"]},{"number":24997,"updated_at":"2018-11-13T00:53:31Z","username":"jbros-98","title":"Updated index.md","filenames":["guide/english/c/arrays/index.md"]},{"number":24999,"updated_at":"2018-11-13T00:53:34Z","username":"nishk1997","title":"Explanation of Memory leaks","filenames":["guide/english/cplusplus/dynamic-memory-allocation/index.md"]},{"number":25000,"updated_at":"2018-11-13T00:53:36Z","username":"chirayusamarth","title":"smart_open","filenames":["guide/english/python/efficiently-streaming-large-files/index.md"]},{"number":25007,"updated_at":"2018-11-13T00:53:41Z","username":"chirayusamarth","title":"added link to official documentation","filenames":["guide/english/python/class/index.md"]},{"number":25010,"updated_at":"2018-11-13T00:53:44Z","username":"Maxi01828","title":"Added antoher source for more informations.","filenames":["guide/english/html/layouts/index.md"]},{"number":25011,"updated_at":"2018-11-13T00:53:46Z","username":"Bodddi","title":"Quick grammar fix and aesthetics.","filenames":["guide/english/java/arraylist/index.md"]},{"number":25012,"updated_at":"2018-11-13T00:53:48Z","username":"chirayusamarth","title":"added link to official documentation","filenames":["guide/english/java/interfaces/index.md"]},{"number":25014,"updated_at":"2018-11-13T00:53:51Z","username":"nishk1997","title":"Different form of catch block","filenames":["guide/english/cplusplus/error-handling/index.md"]},{"number":25016,"updated_at":"2018-11-13T00:53:53Z","username":"chirayusamarth","title":"added link to official documentation","filenames":["guide/english/java/abstract-class/index.md"]},{"number":25026,"updated_at":"2018-11-13T00:53:57Z","username":"nishk1997","title":"An important point while using while loop","filenames":["guide/english/cplusplus/while-loop/index.md"]},{"number":25027,"updated_at":"2018-11-13T00:53:59Z","username":"phatbhoy67","title":"Updated (added) links in the Other Resources Section","filenames":["guide/english/html/attributes/index.md"]},{"number":25031,"updated_at":"2018-11-13T00:54:04Z","username":"apurv22","title":"Changed paragraph by joining two sentences.","filenames":["guide/english/c/if-statements/index.md"]},{"number":25032,"updated_at":"2018-11-13T00:54:06Z","username":"nishk1997","title":"Printing of Output","filenames":["guide/english/cplusplus/functions/index.md"]},{"number":25033,"updated_at":"2018-11-13T00:54:07Z","username":"apurv22","title":"Updated a sentence to be more meaningful.","filenames":["guide/english/c/loops/index.md"]},{"number":25036,"updated_at":"2018-11-13T00:54:09Z","username":"apurv22","title":"Updated a sentence to be more meaningful.","filenames":["guide/english/c/arrays/index.md"]},{"number":25038,"updated_at":"2018-11-15T19:49:24Z","username":"mejraf","title":"Update meta.json","filenames":["curriculum/challenges/_meta/basic-css/meta.json"]},{"number":25042,"updated_at":"2018-11-13T00:54:16Z","username":"frankschmitt","title":"added some basic information and examples for Elm lists","filenames":["guide/english/elm/list/index.md"]},{"number":25043,"updated_at":"2018-11-13T00:54:17Z","username":"elisa-mamolo","title":"Added 2 links 1. flexbox creator 2.game to learn","filenames":["guide/english/css/layout/flexbox/index.md"]},{"number":25044,"updated_at":"2018-11-13T00:54:19Z","username":"phatbhoy67","title":"Fixed inline code, commented out \"stub\"","filenames":["guide/english/html/attributes/links/index.md"]},{"number":25048,"updated_at":"2018-11-13T00:54:22Z","username":"elisa-mamolo","title":"Added links to references for media query testing, css grid guidelines","filenames":["guide/english/html/responsive-web-design/index.md"]},{"number":25050,"updated_at":"2018-11-13T00:54:26Z","username":"condor-webdev","title":"Create unzip command","filenames":["guide/english/bash/bash-unzip/index.md"]},{"number":25054,"updated_at":"2018-11-13T00:54:29Z","username":"elisa-mamolo","title":"Added link to js links commonly missed from beginners","filenames":["guide/english/bootstrap/get-started/index.md"]},{"number":25056,"updated_at":"2018-11-13T00:54:31Z","username":"condor-webdev","title":"Create tar file","filenames":["guide/english/bash/bash-tar/index.md"]},{"number":25058,"updated_at":"2018-11-13T00:54:32Z","username":"cmondorf","title":"Added warning about truthiness and falsyness.","filenames":["guide/english/python/bool-function/index.md"]},{"number":25060,"updated_at":"2018-11-13T00:54:35Z","username":"d3xru8","title":"Add: GnuPG Guide","filenames":["guide/english/gnupg/index.md"]},{"number":25063,"updated_at":"2018-11-13T00:54:39Z","username":"mayureshmayur","title":"Update index.md","filenames":["guide/english/algorithms/algorithm-design-patterns/creational-patterns/index.md"]},{"number":25068,"updated_at":"2018-11-13T00:54:45Z","username":"shira10","title":"Fixing 

to be as an Inline code.","filenames":["guide/english/jquery/index.md"]},{"number":25071,"updated_at":"2018-11-13T00:54:47Z","username":"cmondorf","title":"Nuevo inicio del artículo","filenames":["guide/spanish/python/python-2-vs-python-3/index.md"]},{"number":25072,"updated_at":"2018-11-13T00:54:49Z","username":"Evaldas22","title":"Add information about IndexOutOfRangeException","filenames":["guide/english/csharp/array/index.md"]},{"number":25077,"updated_at":"2018-11-13T00:54:55Z","username":"mauricioharley","title":"Minor corrections, and addition of information","filenames":["guide/portuguese/docker/index.md"]},{"number":25080,"updated_at":"2018-11-13T00:54:59Z","username":"milindchawre","title":"Update Docker guide with more info","filenames":["guide/english/docker/index.md"]},{"number":25082,"updated_at":"2018-11-13T00:55:00Z","username":"jbros-98","title":"Update index.md","filenames":["guide/english/java/control-flow/index.md"]},{"number":25083,"updated_at":"2018-11-13T00:55:02Z","username":"piyushbajaj0704","title":"Update index.md","filenames":["guide/english/security/index.md"]},{"number":25085,"updated_at":"2018-11-13T00:55:04Z","username":"mailforharry98","title":"Steps and principle of recursion","filenames":["guide/english/c/functions/index.md"]},{"number":25088,"updated_at":"2018-11-13T00:55:05Z","username":"johnfolder01","title":"Update index.html difference Java and Groovy","filenames":["guide/english/groovy/index.md"]},{"number":25089,"updated_at":"2018-11-13T00:55:07Z","username":"RayonD","title":"Updated with some additional tips","filenames":["guide/english/javascript/callback-functions/index.md"]},{"number":25090,"updated_at":"2018-11-13T00:55:09Z","username":"piyushbajaj0704","title":"Update index.md","filenames":["guide/english/git/git-branch/index.md"]},{"number":25091,"updated_at":"2018-11-13T00:55:11Z","username":"mayureshmayur","title":"Adding design BP","filenames":["guide/english/algorithms/algorithm-design-patterns/behavioral-patterns/index.md"]},{"number":25092,"updated_at":"2018-11-13T00:55:12Z","username":"RayonD","title":"Added some suggestions","filenames":["guide/english/javascript/ternary-operator/index.md"]},{"number":25093,"updated_at":"2018-11-13T00:55:14Z","username":"mayureshmayur","title":"Adding design SP","filenames":["guide/english/algorithms/algorithm-design-patterns/structual-patterns/index.md"]},{"number":25095,"updated_at":"2018-11-13T00:55:18Z","username":"piyushbajaj0704","title":"Update index.md","filenames":["guide/english/algorithms/sorting-algorithms/index.md"]},{"number":25097,"updated_at":"2018-11-13T00:55:21Z","username":"weezy20","title":"added information about >> and > functions","filenames":["guide/english/bash/bash-cat/index.md"]},{"number":25098,"updated_at":"2018-11-13T00:55:23Z","username":"mailforharry98","title":"Null Pointer explained","filenames":["guide/english/c/pointers/index.md"]},{"number":25100,"updated_at":"2018-11-13T00:55:24Z","username":"weezy20","title":"added cd ../.. usage example","filenames":["guide/english/bash/bash-cd/index.md"]},{"number":25103,"updated_at":"2018-11-13T00:55:28Z","username":"Amoghmule","title":"added set function example","filenames":["guide/english/python/learn-about-python-sets/index.md"]},{"number":25105,"updated_at":"2018-10-29T02:36:06Z","username":"Kaylen7","title":"Corrected accessibility-basics in Spanish","filenames":["guide/spanish/accessibility/accessibility-basics/index.md","guide/spanish/accessibility/accessibility-examples/index.md","guide/spanish/accessibility/accessibility-tools-for-web-developers/index.md"]},{"number":25106,"updated_at":"2018-11-13T00:55:29Z","username":"hackoctober","title":"Added link to XML tutorials.","filenames":["guide/english/xml/index.md"]},{"number":25107,"updated_at":"2018-11-13T00:55:31Z","username":"Zonxa14","title":"Update index.md","filenames":["guide/english/bootstrap/index.md"]},{"number":25108,"updated_at":"2018-11-13T00:55:33Z","username":"vanubhav06","title":"Update index.md","filenames":["guide/english/java/final-keyword/index.md"]},{"number":25110,"updated_at":"2018-11-13T00:55:34Z","username":"hackoctober","title":"Added link to official Vue.js documentation","filenames":["guide/english/vue/index.md"]},{"number":25111,"updated_at":"2018-11-13T00:55:36Z","username":"Zonxa14","title":"Link to the official website","filenames":["guide/english/bootstrap/index.md"]},{"number":25113,"updated_at":"2018-11-13T00:55:39Z","username":"hackoctober","title":"Added link to Swift tutorials by tutorialspoint","filenames":["guide/english/swift/index.md"]},{"number":25115,"updated_at":"2018-11-13T00:55:43Z","username":"luancvs","title":"Improving text formatting","filenames":["guide/portuguese/data-science-tools/jupyter-notebook/index.md"]},{"number":25119,"updated_at":"2018-11-13T00:55:47Z","username":"Tosson","title":"Add the text to article","filenames":["guide/english/agile/acceptance-criteria/index.md"]},{"number":25120,"updated_at":"2018-12-05T16:18:12Z","username":"Lewis65","title":"Simplify challenge wording","filenames":["curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use--to-import-everything-from-a-file.english.md"]},{"number":25121,"updated_at":"2018-11-13T00:55:51Z","username":"hackoctober","title":"Added link to R tutorials by tutorialspoint","filenames":["guide/english/r/index.md"]},{"number":25122,"updated_at":"2018-11-13T00:55:52Z","username":"pandaanwesh33","title":"Add line 30-32.","filenames":["guide/english/c/operators/index.md"]},{"number":25123,"updated_at":"2018-11-13T00:55:54Z","username":"hackoctober","title":"Added link to React documentation","filenames":["guide/english/react/index.md"]},{"number":25124,"updated_at":"2018-11-13T00:55:56Z","username":"aylasyahirah","title":"Add info about Laravel Valet to article","filenames":["guide/english/laravel/index.md"]},{"number":25126,"updated_at":"2018-11-13T00:55:57Z","username":"luancvs","title":"Replaced incorrect localeTitle","filenames":["guide/portuguese/data-science-tools/tableau/index.md"]},{"number":25128,"updated_at":"2018-11-13T00:55:59Z","username":"jon-0","title":"fixed typo - capitalized HTML","filenames":["guide/english/accessibility/index.md"]},{"number":25133,"updated_at":"2018-11-13T00:56:02Z","username":"errorsmith","title":"Add command for git checkout previous branch","filenames":["guide/english/git/git-checkout/index.md"]},{"number":25134,"updated_at":"2018-11-13T00:56:04Z","username":"pandaanwesh33","title":"Add the line 94-102 .","filenames":["guide/english/c/if-statements/index.md"]},{"number":25137,"updated_at":"2018-11-13T00:56:07Z","username":"mailforharry98","title":"Example to explain working","filenames":["guide/english/c/macros/index.md"]},{"number":25138,"updated_at":"2018-10-29T02:36:29Z","username":"Horiol","title":"translated some texts from how-to-setup-freecodecamp-locally.md into spanish","filenames":["docs/spanish/how-to-setup-freecodecamp-locally.md"]},{"number":25140,"updated_at":"2018-11-13T00:56:11Z","username":"jon-0","title":"added link to angularjs.org","filenames":["guide/english/angularjs/index.md"]},{"number":25143,"updated_at":"2018-11-13T00:56:14Z","username":"IrnBruKing","title":"Added text and link","filenames":["guide/english/agile/continuous-delivery/index.md"]},{"number":25145,"updated_at":"2018-11-15T19:49:27Z","username":"luancvs","title":"Fixing translation","filenames":["curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.portuguese.md"]},{"number":25148,"updated_at":"2018-11-13T00:56:20Z","username":"mailforharry98","title":"Extended Euclidean algorithm","filenames":["guide/english/algorithms/greatest-common-divisor-euclidean/index.md"]},{"number":25156,"updated_at":"2018-11-13T00:56:28Z","username":"vishvikkrishnan","title":"Fixed typos and corrected Grammar","filenames":["guide/english/devops/ansible/index.md"]},{"number":25158,"updated_at":"2018-11-13T00:56:31Z","username":"errorsmith","title":"Add --grep flag to git-log","filenames":["guide/english/git/git-log/index.md"]},{"number":25161,"updated_at":"2018-11-15T19:49:29Z","username":"luancvs","title":"Update headings","filenames":["curriculum/challenges/portuguese/09-certificates/legacy-data-visualization-certificate/legacy-data-visualization-certificate.portuguese.md"]},{"number":25162,"updated_at":"2018-11-13T00:56:38Z","username":"SakaSaiTrinath","title":"Inserted other updated way of installation of CRA","filenames":["guide/english/react/hello-world/index.md"]},{"number":25163,"updated_at":"2018-11-13T00:56:40Z","username":"Tosson","title":"Add text about Medium to articles","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":25164,"updated_at":"2018-11-13T00:56:41Z","username":"renatoosousa","title":"fix command on index.md [ionic portuguese]","filenames":["guide/portuguese/ionic/index.md"]},{"number":25165,"updated_at":"2018-11-15T19:49:31Z","username":"luancvs","title":"Replacing headings","filenames":["curriculum/challenges/portuguese/09-certificates/data-visualization-certificate/data-visualization-certificate.portuguese.md"]},{"number":25167,"updated_at":"2018-11-13T00:56:46Z","username":"renatoosousa","title":"update index.md","filenames":["guide/portuguese/machine-learning/natural-language-processing/index.md"]},{"number":25168,"updated_at":"2018-11-13T00:56:48Z","username":"mailforharry98","title":"Update index.md","filenames":["guide/english/cplusplus/set/index.md"]},{"number":25169,"updated_at":"2018-11-13T00:56:49Z","username":"IvaErceg","title":"Add Newsletters section","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":25170,"updated_at":"2018-11-13T00:56:51Z","username":"Ccancode","title":"Add the text \"Example\" to article","filenames":["guide/english/java/basic-operations/index.md"]},{"number":25171,"updated_at":"2018-11-13T00:56:53Z","username":"renatoosousa","title":"fix grammatical issues and add link (more info)","filenames":["guide/portuguese/robotics/index.md"]},{"number":25173,"updated_at":"2018-11-13T00:56:56Z","username":"renatoosousa","title":"add more info topic","filenames":["guide/portuguese/machine-learning/reinforcement-learning/index.md"]},{"number":25174,"updated_at":"2018-11-13T00:56:58Z","username":"errorsmith","title":"Limit the number of commits to output with git-log","filenames":["guide/english/git/git-log/index.md"]},{"number":25177,"updated_at":"2018-11-13T00:57:03Z","username":"gagandeep1410","title":"Update index.md","filenames":["guide/english/algorithms/index.md"]},{"number":25178,"updated_at":"2018-11-13T00:57:04Z","username":"JKarlavige","title":"Added Flex Flow Property","filenames":["guide/english/css/css3-flexible-box/index.md"]},{"number":25179,"updated_at":"2018-11-13T00:57:06Z","username":"UrszulaSury","title":"Add the Groovy Lang logo to the article.","filenames":["guide/english/groovy/index.md"]},{"number":25181,"updated_at":"2018-11-13T00:57:09Z","username":"phatbhoy67","title":"Fixed some typos","filenames":["guide/english/xml/index.md"]},{"number":25182,"updated_at":"2018-11-13T00:57:11Z","username":"IvaErceg","title":"Add section od querying data","filenames":["guide/english/gatsbyjs/index.md"]},{"number":25183,"updated_at":"2018-11-13T00:57:13Z","username":"kalasuvaRahul","title":"'DOC improvement (added information)'","filenames":["guide/english/agile/acceptance-testing/index.md"]},{"number":25184,"updated_at":"2018-11-13T00:57:14Z","username":"arLong-98","title":"more details of kernels used in support vector machine.","filenames":["guide/english/machine-learning/support-vector-machine/index.md"]},{"number":25185,"updated_at":"2018-11-13T00:57:16Z","username":"danieladamharding","title":"Corrected Missing Markup, Classes and Formatting","filenames":["guide/english/bootstrap/cards/index.md"]},{"number":25188,"updated_at":"2018-11-13T00:57:21Z","username":"Antashma","title":"Add tips section with link","filenames":["guide/english/css/using-css-animations/index.md"]},{"number":25189,"updated_at":"2018-11-13T00:57:23Z","username":"JKarlavige","title":"Added Ternary Operators","filenames":["guide/english/javascript/if-else-statement/index.md"]},{"number":25190,"updated_at":"2018-11-13T00:57:25Z","username":"IvaErceg","title":"Update grid properties","filenames":["guide/english/css/css3-grid-layout/index.md"]},{"number":25194,"updated_at":"2018-11-13T00:57:30Z","username":"glanderson42","title":"short article about smart pointers","filenames":["guide/english/cplusplus/smart-pointers/index.md"]},{"number":25197,"updated_at":"2018-11-13T00:57:35Z","username":"Ccancode","title":"Add the text \"Example\" to this article","filenames":["guide/english/java/basic-operations/index.md"]},{"number":25200,"updated_at":"2018-11-13T00:57:40Z","username":"Nightey3s","title":"Update index.md","filenames":["guide/english/java/index.md"]},{"number":25201,"updated_at":"2018-11-13T00:57:41Z","username":"IvaErceg","title":"Add section on mixins","filenames":["guide/english/css/css-preprocessors/index.md"]},{"number":25203,"updated_at":"2018-11-13T00:57:44Z","username":"Nightey3s","title":"Added Link","filenames":["guide/english/java/index.md"]},{"number":25205,"updated_at":"2018-11-13T00:57:48Z","username":"0NitinChauhan","title":"Python - Simultaneous Update instead of swapping values","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":25206,"updated_at":"2018-11-13T00:57:50Z","username":"kristenkinnearohlmann","title":"Corrected sentence fragments","filenames":["guide/english/css/tutorials/a-guide-to-class-and-id-selectors/index.md"]},{"number":25207,"updated_at":"2018-11-13T00:57:51Z","username":"glanderson42","title":"added some useful compiler flags","filenames":["guide/english/cplusplus/compilers/index.md"]},{"number":25211,"updated_at":"2018-11-13T00:57:58Z","username":"0NitinChauhan","title":"Avoiding overflow in getting mid index in Java","filenames":["guide/english/algorithms/search-algorithms/binary-search/index.md"]},{"number":25212,"updated_at":"2018-11-13T00:57:59Z","username":"AAKANKSHACHOUHAN","title":"Add the text \"software\" , \"operating through\"","filenames":["guide/english/python/anaconda/index.md"]},{"number":25213,"updated_at":"2018-11-13T00:58:01Z","username":"Nightey3s","title":"加了Netbeans 和 JDK 下载","filenames":["guide/chinese/java/index.md"]},{"number":25214,"updated_at":"2018-11-13T00:58:03Z","username":"JKarlavige","title":"Added clearfix","filenames":["guide/english/css/layout/float-and-clear/index.md"]},{"number":25216,"updated_at":"2018-11-13T00:58:06Z","username":"qme1519","title":"Language check","filenames":["guide/english/bash/index.md"]},{"number":25219,"updated_at":"2018-11-13T00:58:10Z","username":"darthHunterous","title":"Translate english/vue/components to Portuguese","filenames":["guide/portuguese/vue/components/index.md"]},{"number":25221,"updated_at":"2018-11-13T00:58:13Z","username":"0NitinChauhan","title":"Using enumerate in Python while looping","filenames":["guide/english/algorithms/search-algorithms/linear-search/index.md"]},{"number":25226,"updated_at":"2018-11-13T00:58:21Z","username":"0NitinChauhan","title":"GCD function using Recursion in Python and Java","filenames":["guide/english/algorithms/greatest-common-divisor-euclidean/index.md"]},{"number":25227,"updated_at":"2018-11-13T00:58:23Z","username":"glanderson42","title":"fixed list dec, and markdown list","filenames":["guide/english/cplusplus/lists/index.md"]},{"number":25228,"updated_at":"2018-12-10T19:09:38Z","username":"nick-rudenko","title":"Fixed translation and typos","filenames":["guide/russian/javascript/additional-javascript-resources/index.md"]},{"number":25229,"updated_at":"2018-11-13T00:58:26Z","username":"IrnBruKing","title":"Added 'Best Practices' link","filenames":["guide/english/working-in-tech/code-reviews/index.md"]},{"number":25230,"updated_at":"2018-11-13T00:58:28Z","username":"Nightey3s","title":"Added a section on self-expanding arrays","filenames":["guide/english/java/arrays/index.md"]},{"number":25232,"updated_at":"2018-11-13T00:58:31Z","username":"mowoe","title":"Add docker info (vagrant with docker containers)","filenames":["guide/english/vagrant/index.md"]},{"number":25233,"updated_at":"2018-11-13T00:58:33Z","username":"qme1519","title":"Language check","filenames":["guide/english/computer-hardware/cpu/index.md"]},{"number":25234,"updated_at":"2018-11-13T00:58:34Z","username":"maytanthegeek","title":"Updated ng build description","filenames":["guide/english/angular/command-line-interface/index.md"]},{"number":25237,"updated_at":"2018-11-13T00:58:39Z","username":"d3xru8","title":"fix: update Linux guide","filenames":["guide/english/linux/basic-linux-commands/index.md"]},{"number":25238,"updated_at":"2018-11-13T00:58:41Z","username":"delbertf","title":"Propose of translation correction","filenames":["guide/spanish/android-development/firebase/firebase-storage/setup/index.md"]},{"number":25239,"updated_at":"2018-11-13T00:58:43Z","username":"Tharwaat","title":"Better explanation with resources","filenames":["guide/arabic/documentation/index.md"]},{"number":25240,"updated_at":"2018-11-13T00:58:44Z","username":"ashwanimehra","title":"Add the Video Resources to learn XML","filenames":["guide/english/xml/index.md"]},{"number":25241,"updated_at":"2018-11-13T00:58:46Z","username":"connor-mcshane","title":"Added resource link to Beej's Networking Guide","filenames":["guide/english/c/basic-networking/index.md"]},{"number":25242,"updated_at":"2018-11-13T00:58:48Z","username":"0NitinChauhan","title":"Linear Search method in Java for LinkedLists","filenames":["guide/english/algorithms/search-algorithms/searching-linked-lists-versus-arrays/index.md"]},{"number":25243,"updated_at":"2018-11-13T00:58:49Z","username":"Nightey3s","title":"Updated how modulus works","filenames":["guide/english/java/basic-operations/index.md"]},{"number":25244,"updated_at":"2018-11-13T00:58:51Z","username":"aditya-sridhar","title":"Added points to note while using git rebase","filenames":["guide/english/git/git-rebase/index.md"]},{"number":25247,"updated_at":"2018-10-29T04:15:24Z","username":"pfuentesg","title":"update spanish oop","filenames":["guide/spanish/design-patterns/object-oriented-programming/index.md"]},{"number":25252,"updated_at":"2018-10-29T04:15:53Z","username":"pfuentesg","title":"add more examples to opp","filenames":["guide/spanish/design-patterns/object-oriented-programming/index.md"]},{"number":25253,"updated_at":"2018-11-13T00:58:59Z","username":"qme1519","title":"Content and language check","filenames":["guide/english/python/using-pip/index.md"]},{"number":25256,"updated_at":"2018-11-13T00:59:05Z","username":"larikappa","title":"add the text \"bubu and laliq\" to article","filenames":["guide/portuguese/agile/acceptance-testing/index.md"]},{"number":25258,"updated_at":"2018-11-13T00:59:08Z","username":"JKarlavige","title":"Added transition","filenames":["guide/english/css/hover-selector/index.md"]},{"number":25259,"updated_at":"2018-11-13T00:59:09Z","username":"larikappa","title":"add the text \"bubu and laliq\" to article","filenames":["guide/english/agile/acceptance-testing/index.md"]},{"number":25261,"updated_at":"2018-11-13T00:59:13Z","username":"larikappa","title":"add the text \"bubu and laliq\" to article","filenames":["guide/arabic/agile/acceptance-testing/index.md"]},{"number":25262,"updated_at":"2018-11-13T00:59:14Z","username":"glanderson42","title":"added the usage of std::find","filenames":["guide/english/cplusplus/vector/index.md"]},{"number":25264,"updated_at":"2018-11-13T00:59:18Z","username":"kristenkinnearohlmann","title":"Edited line 48","filenames":["guide/english/css/background/index.md"]},{"number":25266,"updated_at":"2018-11-13T00:59:21Z","username":"ashwanimehra","title":"Added the text","filenames":["guide/english/sql/sql-where-clause/index.md"]},{"number":25267,"updated_at":"2018-11-13T00:59:23Z","username":"aditya-sridhar","title":"Added points to note while using git reset","filenames":["guide/english/git/git-reset/index.md"]},{"number":25268,"updated_at":"2018-11-13T00:59:25Z","username":"JosephHawkins","title":"Made a note of the different spellings of 'color' in different countr…","filenames":["guide/english/css/colors/index.md"]},{"number":25269,"updated_at":"2018-11-13T00:59:26Z","username":"JKarlavige","title":"Added Box Shadow As A Border","filenames":["guide/english/css/css3-shadow-effects/index.md"]},{"number":25270,"updated_at":"2018-11-13T00:59:28Z","username":"JosephHawkins","title":"Made a note of the usefulness of Google Fonts.","filenames":["guide/english/css/fonts/index.md"]},{"number":25272,"updated_at":"2018-11-13T00:59:31Z","username":"ashwanimehra","title":"Added information text","filenames":["guide/english/sql/sql-select-statement/index.md"]},{"number":25273,"updated_at":"2018-11-13T00:59:33Z","username":"JosephHawkins","title":"Changed one of the 'popular distributions' examples.","filenames":["guide/english/linux/index.md"]},{"number":25274,"updated_at":"2018-11-13T00:59:34Z","username":"JosephHawkins","title":"Switched several words from abbreviations to longhand.","filenames":["guide/english/css/borders/index.md"]},{"number":25275,"updated_at":"2018-11-13T00:59:36Z","username":"AAKANKSHACHOUHAN","title":"Modify the text","filenames":["guide/english/mathematics/algebra/intro-to-rationalizing-the-denominator/index.md"]},{"number":25278,"updated_at":"2018-11-13T00:59:38Z","username":"aditya-sridhar","title":"Added points to note for git merge","filenames":["guide/english/git/git-merge/index.md"]},{"number":25281,"updated_at":"2018-11-13T00:59:40Z","username":"ozervesh","title":"corrected the spelling of 'predetermined'","filenames":["guide/english/agile/sprints/index.md"]},{"number":25282,"updated_at":"2018-12-11T19:36:00Z","username":"NailRusty","title":"Fix some translation errors","filenames":["guide/russian/bootstrap/grid-system/index.md"]},{"number":25286,"updated_at":"2018-11-13T00:59:47Z","username":"AAKANKSHACHOUHAN","title":"Text modification","filenames":["guide/english/voice/index.md"]},{"number":25287,"updated_at":"2018-12-09T02:38:46Z","username":"ghost","title":"defined a/c at the beginning of index","filenames":["guide/english/agile/acceptance-criteria/index.md"]},{"number":25291,"updated_at":"2018-11-13T00:59:51Z","username":"Ibaeni","title":"Add commands regarding Visual Mode","filenames":["guide/spanish/vim/copy-and-paste/index.md"]},{"number":25293,"updated_at":"2018-11-13T00:59:53Z","username":"ashwanimehra","title":"Added basic information","filenames":["guide/english/sql/sql-create-table-statement/index.md"]},{"number":25294,"updated_at":"2018-11-13T00:59:55Z","username":"iopeggy","title":"add link for information about hard disk drives","filenames":["guide/english/computer-hardware/hard-drives/index.md"]},{"number":25295,"updated_at":"2018-11-13T00:59:56Z","username":"eirinisp","title":"Fixed minor grammatical error","filenames":["guide/english/angularjs/index.md"]},{"number":25297,"updated_at":"2018-11-13T00:59:58Z","username":"nasareen","title":"Update index.md","filenames":["guide/english/java/interfaces/index.md"]},{"number":25300,"updated_at":"2018-11-13T01:00:02Z","username":"nick-rudenko","title":"Fixed translation and typos","filenames":["guide/russian/javascript/arrow-functions/index.md"]},{"number":25305,"updated_at":"2018-11-13T01:00:05Z","username":"iopeggy","title":"add link for info about CPUs","filenames":["guide/english/computer-hardware/cpu/index.md"]},{"number":25307,"updated_at":"2018-11-13T01:00:08Z","username":"analogpixel","title":"Update file","filenames":["guide/english/docker/docker-compose/index.md"]},{"number":25313,"updated_at":"2018-12-08T06:05:49Z","username":"fjeicam","title":"Added a new resource to the \"Tutorials\" section","filenames":["guide/english/python/python-resources/index.md"]},{"number":25315,"updated_at":"2018-11-13T01:00:11Z","username":"iopeggy","title":"add link about parts of a motherboard","filenames":["guide/english/computer-hardware/motherboard/index.md"]},{"number":25323,"updated_at":"2018-11-13T01:00:15Z","username":"iopeggy","title":"add link for extra information","filenames":["guide/english/computer-science/quantum-computing/index.md"]},{"number":25324,"updated_at":"2018-11-13T01:00:16Z","username":"rthirumurugan2000","title":"initialization in a for loop","filenames":["guide/english/cplusplus/for-loop/index.md"]},{"number":25325,"updated_at":"2018-11-13T01:00:18Z","username":"wesdekoninck","title":"Add WordPress Developer Tools index","filenames":["guide/english/wordpress/developer-tools/index.md"]},{"number":25326,"updated_at":"2018-11-13T01:00:20Z","username":"achillar","title":"Update index.md","filenames":["guide/spanish/angular/directives/index.md"]},{"number":25328,"updated_at":"2018-11-15T19:49:41Z","username":"nick-rudenko","title":"Fixed translation and typos","filenames":["curriculum/challenges/russian/02-javascript-algorithms-and-data-structures/es6/compare-scopes-of-the-var-and-let-keywords.russian.md"]},{"number":25331,"updated_at":"2018-10-29T05:33:12Z","username":"Lachkham","title":"adding partial arabic translation","filenames":["docs/arabic/CONTRIBUTING.md"]},{"number":25334,"updated_at":"2018-11-13T01:00:28Z","username":"iamjhamukesh","title":"Added the way to modify immutable string.","filenames":["guide/english/python/data-structures/strings/index.md"]},{"number":25336,"updated_at":"2018-11-13T01:00:30Z","username":"foxxmg","title":"Update with variable naming conventions.","filenames":["guide/english/c/variables-and-basic-datatypes/index.md"]},{"number":25339,"updated_at":"2018-11-13T01:00:33Z","username":"sfxpok","title":"Updated R datatype info with \"Dates\"","filenames":["guide/portuguese/r/data-types/index.md"]},{"number":25340,"updated_at":"2018-11-13T01:00:35Z","username":"Lachkham","title":"adding ## المساهمة في هذا المصدر المفتوح مصدر","filenames":["docs/arabic/CONTRIBUTING.md"]},{"number":25342,"updated_at":"2018-11-13T01:00:38Z","username":"Lachkham","title":"adding partial translation","filenames":["docs/arabic/CONTRIBUTING.md"]},{"number":25343,"updated_at":"2018-11-13T01:00:40Z","username":"Lachkham","title":"adding partial translation","filenames":["docs/arabic/CONTRIBUTING.md"]},{"number":25344,"updated_at":"2018-11-13T01:00:41Z","username":"wesdekoninck","title":"Add Development Environments info to WordPress Guide","filenames":["guide/english/wordpress/development-environments/index.md"]},{"number":25345,"updated_at":"2018-11-13T01:00:43Z","username":"orinayo","title":"Added information on Prime Number Generator tools","filenames":["guide/english/tools/prime-number-generator/index.md"]},{"number":25348,"updated_at":"2018-11-13T01:00:48Z","username":"Stahlone","title":"fix: correct markdown syntax on last CSS block","filenames":["guide/spanish/css/background-opacity/index.md"]},{"number":25350,"updated_at":"2018-11-13T01:00:51Z","username":"NailRusty","title":"Update translate","filenames":["guide/russian/javascript/arrow-functions/index.md"]},{"number":25351,"updated_at":"2018-12-05T16:18:07Z","username":"chiragswadia","title":"Added further reading link, as there are many console methods available","filenames":["guide/english/javascript/tutorials/use-the-javascript-console/index.md"]},{"number":25354,"updated_at":"2018-11-13T01:00:55Z","username":"ShadowViper1","title":"Added a space before parenthesis in CPU article line 34","filenames":["guide/english/computer-hardware/cpu/index.md"]},{"number":25355,"updated_at":"2018-11-15T19:49:43Z","username":"otavioarc","title":"Add translation for titles [Portuguese]","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.portuguese.md"]},{"number":25359,"updated_at":"2018-11-13T01:00:58Z","username":"a-Daley","title":"Add Chronicle of Higher Ed Link to resources","filenames":["guide/english/working-in-tech/imposter-syndrome/index.md"]},{"number":25360,"updated_at":"2018-11-13T01:01:00Z","username":"ShadowViper1","title":"Added comma after \"now\" in line 12 in gpu article","filenames":["guide/english/computer-hardware/gpu/index.md"]},{"number":25362,"updated_at":"2018-11-13T01:01:03Z","username":"clayhefner","title":"Add Product Owner/Manager to Tech related jobs","filenames":["guide/english/working-in-tech/index.md"]},{"number":25363,"updated_at":"2018-11-13T01:01:05Z","username":"darkcomet76","title":"Changed codeacademy link","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":25365,"updated_at":"2018-11-13T01:01:08Z","username":"0xMDIV","title":"Changed Ionic 2 to Ionic 4","filenames":["guide/english/ionic/index.md"]},{"number":25368,"updated_at":"2018-11-13T01:01:13Z","username":"neenjaw","title":"Updated the nginx english guide","filenames":["guide/english/nginx/index.md"]},{"number":25369,"updated_at":"2018-11-13T01:01:15Z","username":"evertonrbraga","title":"Improvement of \"div\" documentation","filenames":["guide/portuguese/html/elements/div-tag/index.md"]},{"number":25372,"updated_at":"2018-11-13T01:01:20Z","username":"ShadowViper1","title":"Added hyphen to \"user serviceable\" in PSU article","filenames":["guide/english/computer-hardware/power-supply/index.md"]},{"number":25373,"updated_at":"2018-11-13T01:01:22Z","username":"alexyashin","title":"Fixed translation","filenames":["guide/russian/mobile-app-development/swift-development/index.md"]},{"number":25375,"updated_at":"2018-11-13T01:01:25Z","username":"darkcomet76","title":"Added additional information to index.md","filenames":["guide/english/rust/index.md"]},{"number":25376,"updated_at":"2018-11-13T01:01:27Z","username":"jonmoon74","title":"Update to impact of video on webpages","filenames":["guide/english/html/html5-video/index.md"]},{"number":25380,"updated_at":"2018-11-13T01:01:30Z","username":"socutebunny","title":"Added Usage and most use options","filenames":["guide/english/bash/bash-chmod/index.md"]},{"number":25382,"updated_at":"2018-11-13T01:01:32Z","username":"asanc414","title":"Fixed some grammatical issues in the bullet points","filenames":["guide/spanish/bash/index.md"]},{"number":25383,"updated_at":"2018-10-29T04:22:41Z","username":"Stahlone","title":"fix: improve translation and formatting consistency","filenames":["guide/spanish/css/background/index.md"]},{"number":25384,"updated_at":"2018-11-13T01:01:33Z","username":"mauricioharley","title":"Some small fixes and more addition of info","filenames":["guide/portuguese/linux/index.md"]},{"number":25390,"updated_at":"2018-11-15T19:49:44Z","username":"otavioarc","title":"Fix translation problems that difficult reading","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-using-sufficient-contrast.portuguese.md"]},{"number":25391,"updated_at":"2018-11-13T01:01:42Z","username":"Alexandrull","title":"Update index.md","filenames":["guide/english/game-development/gamemaker-studio/index.md"]},{"number":25392,"updated_at":"2018-11-13T01:01:43Z","username":"Merenoel","title":"Corrected several machine translation mistakes","filenames":["guide/russian/swift/variables/index.md"]},{"number":25393,"updated_at":"2018-11-13T01:01:45Z","username":"Alexandrull","title":"Little grammar mistake","filenames":["guide/english/game-development/gamemaker-studio/index.md"]},{"number":25394,"updated_at":"2018-11-15T19:49:46Z","username":"AndreyPootMay","title":"Traducción de subtitulos - avoid-colorblindness-issues-by-using-sufficient-contrast.spanish.md","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-using-sufficient-contrast.spanish.md"]},{"number":25398,"updated_at":"2018-11-13T01:01:52Z","username":"GreatDeveloper66","title":"Expand Propositional Logic Stub","filenames":["guide/english/mathematics/propositional-logic/index.md"]},{"number":25400,"updated_at":"2018-11-13T01:01:55Z","username":"sfxpok","title":"Dataframe text now includes info about read.table()","filenames":["guide/portuguese/r/data-types/index.md"]},{"number":25403,"updated_at":"2018-11-13T01:02:00Z","username":"wgeorgecook","title":"Link to Wikipedia Source","filenames":["guide/english/puppet/index.md"]},{"number":25404,"updated_at":"2018-11-13T01:02:02Z","username":"mauricioharley","title":"Major changes and lots of clarifications","filenames":["guide/portuguese/security/index.md"]},{"number":25405,"updated_at":"2018-11-15T19:49:47Z","username":"s-Hale","title":"Translate challenge subtitles and example challenge text to Spanish in Responsive Design section","filenames":["guide/english/cloud-development/amazon-aws/index.md"]},{"number":25407,"updated_at":"2018-11-13T01:02:07Z","username":"iamjhamukesh","title":"Difference in module installation in python 2 & 3","filenames":["guide/english/python/python-2-vs-python-3/index.md"]},{"number":25412,"updated_at":"2018-11-13T01:02:12Z","username":"aditya-sridhar","title":"Added points to note when using git force push","filenames":["guide/english/git/git-push/index.md"]},{"number":25413,"updated_at":"2018-11-13T01:02:14Z","username":"kingtheoden","title":"Fix grammatical issues.","filenames":["guide/english/python/functions/index.md"]},{"number":25414,"updated_at":"2018-11-13T01:02:15Z","username":"dbcoderain","title":"Update docs for changing default git text editor","filenames":["guide/english/git/index.md"]},{"number":25415,"updated_at":"2018-11-13T01:02:17Z","username":"Merenoel","title":"Corrected several machine translation mistakes","filenames":["guide/russian/swift/constants/index.md"]},{"number":25416,"updated_at":"2018-11-13T01:02:19Z","username":"iamjhamukesh","title":"Added info that for loop is faster than while loop.","filenames":["guide/english/python/for-loop-statements/index.md"]},{"number":25417,"updated_at":"2018-11-13T01:02:20Z","username":"Haroldgomez777","title":"Create section to provide details about linux kernel","filenames":["guide/english/linux/the-linux-kernel/index.md"]},{"number":25418,"updated_at":"2018-11-13T01:02:22Z","username":"Manthanjain","title":"Update the output of the program \"Hello World\"","filenames":["guide/english/c/hello-world/index.md"]},{"number":25421,"updated_at":"2018-11-13T01:02:25Z","username":"kingtheoden","title":"More concise language and an example code.","filenames":["guide/english/python/range-function/index.md"]},{"number":25423,"updated_at":"2018-11-13T01:02:27Z","username":"gaurav1205","title":"updated anchor definition","filenames":["guide/english/html/elements/a-tag/index.md"]},{"number":25424,"updated_at":"2018-11-13T01:02:28Z","username":"samujjal1618","title":"Typo fixes and improved explanation","filenames":["guide/english/c/hello-world/index.md"]},{"number":25426,"updated_at":"2018-11-13T01:02:30Z","username":"alexyashin","title":"Fixed translation","filenames":["guide/russian/swift/comments/index.md"]},{"number":25427,"updated_at":"2018-11-13T01:02:32Z","username":"NailRusty","title":"Change some typos","filenames":["guide/russian/javascript/immediately-invoked-functions-expressions/index.md"]},{"number":25430,"updated_at":"2018-11-13T01:02:33Z","username":"pranavyadav77","title":"Update how-to-catch-outgoing-emails-locally.md","filenames":["docs/how-to-catch-outgoing-emails-locally.md"]},{"number":25431,"updated_at":"2018-11-13T01:02:35Z","username":"iamjhamukesh","title":"Added NLTK library introduction","filenames":["guide/english/natural-language-processing/index.md"]},{"number":25433,"updated_at":"2018-11-13T01:02:38Z","username":"NailRusty","title":"Change title","filenames":["guide/russian/javascript/numbers/index.md"]},{"number":25435,"updated_at":"2018-11-13T01:02:42Z","username":"neenjaw","title":"Code blocks formatted, qualified POST security statement, added array form data examples","filenames":["guide/english/php/php-form-handling/index.md"]},{"number":25437,"updated_at":"2018-11-13T01:02:43Z","username":"rish9898","title":"Add C++ code","filenames":["guide/english/algorithms/greatest-common-divisor-euclidean/index.md"]},{"number":25438,"updated_at":"2018-11-13T01:02:45Z","username":"pranavyadav77","title":"C language","filenames":["guide/english/c/index.md"]},{"number":25439,"updated_at":"2018-11-13T01:02:47Z","username":"aditya-sridhar","title":"Added points to note for git pull command","filenames":["guide/english/git/git-pull/index.md"]},{"number":25441,"updated_at":"2018-11-13T01:02:50Z","username":"neenjaw","title":"Moved clarification regarding glyphicon availability from the bottom to the top, to give fast redirect to people looking for relevant bootstrap4 information","filenames":["guide/english/bootstrap/icons/index.md"]},{"number":25444,"updated_at":"2018-11-13T01:02:54Z","username":"clylo","title":"Add plots to R guide","filenames":["guide/english/r/plotting/index.md"]},{"number":25446,"updated_at":"2018-11-13T01:02:57Z","username":"alexyashin","title":"Fixed translation","filenames":["guide/russian/swift/type-inference/index.md"]},{"number":25447,"updated_at":"2018-11-13T01:02:58Z","username":"sh910831","title":"fixed some translation error","filenames":["guide/chinese/css/units/index.md"]},{"number":25449,"updated_at":"2018-11-13T01:03:00Z","username":"pratiklodha","title":"if-else definition made more clear to avoid confusion","filenames":["guide/english/javascript/if-else-statement/index.md"]},{"number":25450,"updated_at":"2018-11-13T01:03:02Z","username":"luckysharma1468","title":"add example , use of variable to article","filenames":["guide/english/python/abs-function/index.md"]},{"number":25452,"updated_at":"2018-11-13T01:03:05Z","username":"pranavyadav77","title":"Update index.md","filenames":["guide/english/d3/index.md"]},{"number":25453,"updated_at":"2018-11-13T01:03:07Z","username":"luckysharma1468","title":"add an example of function","filenames":["guide/english/python/functions/index.md"]},{"number":25454,"updated_at":"2018-11-13T01:03:08Z","username":"rish9898","title":"Application of Brute Force","filenames":["guide/english/algorithms/brute-force-algorithms/index.md"]},{"number":25455,"updated_at":"2018-11-13T01:03:11Z","username":"aghaffar570","title":"add flaviocopes js tutorial link to ref","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":25456,"updated_at":"2018-11-13T01:03:12Z","username":"luckysharma1468","title":"add another example of for loop","filenames":["guide/english/python/for-loop-statements/index.md"]},{"number":25457,"updated_at":"2018-11-13T01:03:14Z","username":"rish9898","title":"Application of AVL Trees","filenames":["guide/english/algorithms/avl-trees/index.md"]},{"number":25458,"updated_at":"2018-11-13T01:03:16Z","username":"luckysharma1468","title":"add reverse example in article","filenames":["guide/english/python/lists/index.md"]},{"number":25459,"updated_at":"2018-11-13T01:03:17Z","username":"alexyashin","title":"Fixed translation","filenames":["guide/russian/swift/view-controller/index.md"]},{"number":25460,"updated_at":"2018-11-13T01:03:19Z","username":"pranavyadav77","title":"Update index.md","filenames":["guide/english/r/index.md"]},{"number":25461,"updated_at":"2018-11-13T01:03:20Z","username":"luckysharma1468","title":"add example of if else statement","filenames":["guide/english/python/if-elif-else-statements/index.md"]},{"number":25462,"updated_at":"2018-11-13T01:03:22Z","username":"gourabk121","title":"add the line 68-74","filenames":["docs/style-guide-for-guide-articles.md"]},{"number":25463,"updated_at":"2018-11-13T01:03:24Z","username":"rish9898","title":"Application of Backtracking","filenames":["guide/english/algorithms/backtracking-algorithms/index.md"]},{"number":25464,"updated_at":"2018-11-13T01:03:25Z","username":"kingtheoden","title":"Add a clear explanation of Lamda Expressions","filenames":["guide/english/python/lambda-expressions/index.md"]},{"number":25465,"updated_at":"2018-11-13T01:03:27Z","username":"rish9898","title":"Traversals in BST","filenames":["guide/english/algorithms/binary-search-trees/index.md"]},{"number":25466,"updated_at":"2018-11-13T01:03:30Z","username":"aghaffar570","title":"add a playlist of JS tutorials","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":25467,"updated_at":"2018-11-13T01:03:31Z","username":"BegaDavor","title":"How to create your own generic method","filenames":["guide/english/java/generics/index.md"]},{"number":25468,"updated_at":"2018-11-13T01:03:33Z","username":"sh910831","title":"Correcting the translation of the button name","filenames":["guide/chinese/css/css-buttons/index.md"]},{"number":25474,"updated_at":"2018-11-13T01:03:36Z","username":"Nevix","title":"Translated some comments into Russian","filenames":["guide/russian/css/background-opacity/index.md"]},{"number":25475,"updated_at":"2018-11-13T01:03:38Z","username":"Xenulat3r","title":"Border Radius is already explained above this list.","filenames":["guide/english/css/borders/index.md"]},{"number":25476,"updated_at":"2018-11-13T01:03:39Z","username":"Kaunaj","title":"Add content in Mutable section of Lists","filenames":["guide/english/python/lists/index.md"]},{"number":25477,"updated_at":"2018-11-13T01:03:41Z","username":"Nevix","title":"improved the translation of this article","filenames":["guide/russian/css/colors/index.md"]},{"number":25480,"updated_at":"2018-11-13T01:03:42Z","username":"Nevix","title":"improved the translation of this article","filenames":["guide/russian/css/css-buttons/index.md"]},{"number":25482,"updated_at":"2018-11-13T01:03:44Z","username":"jexin","title":"Add to \"want to learn more\"","filenames":["guide/english/swift/index.md"]},{"number":25483,"updated_at":"2018-11-13T01:03:46Z","username":"Nevix","title":"improved the translation of this article","filenames":["guide/russian/css/comments-in-css/index.md"]},{"number":25485,"updated_at":"2018-11-13T01:03:49Z","username":"dliuproduction","title":"fix(guide): add intermediate solution to guide","filenames":["guide/english/certifications/javascript-algorithms-and-data-structures/basic-algorithm-scripting/factorialize-a-number/index.md"]},{"number":25486,"updated_at":"2018-11-13T01:03:51Z","username":"Nevix","title":"improved the translation of this article","filenames":["guide/russian/css/margins/index.md"]},{"number":25487,"updated_at":"2018-11-13T01:03:52Z","username":"Xenulat3r","title":" wasn't view-able in doc.","filenames":["guide/english/css/fonts/index.md"]},{"number":25488,"updated_at":"2018-11-13T01:03:54Z","username":"jtoledo3970","title":"Added a license code example for Package.json","filenames":["guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-license-to-your-package.json/index.md"]},{"number":25490,"updated_at":"2018-11-13T01:03:57Z","username":"jtoledo3970","title":"Added a version code example for package.json","filenames":["guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json/index.md"]},{"number":25491,"updated_at":"2018-11-13T01:03:59Z","username":"jtoledo3970","title":"Added a keywords code example for package.json","filenames":["guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md"]},{"number":25493,"updated_at":"2018-11-13T01:04:02Z","username":"ShkiperMe","title":"Update Russian translation for 'git-checkout' documentation","filenames":["guide/russian/git/git-checkout/index.md"]},{"number":25496,"updated_at":"2018-11-13T01:04:06Z","username":"tokesk","title":"Add for loop article","filenames":["guide/english/php/for/index.md"]},{"number":25497,"updated_at":"2018-11-13T01:04:07Z","username":"neenjaw","title":"updated php-install guide for modern systems, libraries, package managers","filenames":["guide/english/php/php-install/index.md"]},{"number":25498,"updated_at":"2018-11-13T01:04:09Z","username":"Krevit","title":"Add comment to article","filenames":["guide/english/css/background-size/index.md"]},{"number":25499,"updated_at":"2018-11-13T01:04:11Z","username":"jtoledo3970","title":"Added a version code example for package.json","filenames":["guide/english/certifications/apis-and-microservices/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm/index.md"]},{"number":25500,"updated_at":"2018-11-13T01:04:12Z","username":"mtkane0","title":"Add .clear method","filenames":["guide/english/ruby/common-array-methods/index.md"]},{"number":25501,"updated_at":"2018-11-13T01:04:14Z","username":"jtoledo3970","title":"Added an author code example for package.json","filenames":["guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md"]},{"number":25503,"updated_at":"2018-11-13T01:04:15Z","username":"jonmoon74","title":"Fixed typographical errors in lines 7 and 8","filenames":["guide/english/user-experience-design/customer-journey-map/index.md"]},{"number":25506,"updated_at":"2018-11-13T01:04:19Z","username":"dotslash21","title":"Emphasized the element comparison in the example","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":25507,"updated_at":"2018-11-13T01:04:20Z","username":"IAmRC1","title":"Added basic definitions and reference","filenames":["guide/english/mathematics/amplitude-period-phase-shift-and-frequency/index.md"]},{"number":25510,"updated_at":"2018-11-13T01:04:25Z","username":"jexin","title":"Add link to \"more information\"","filenames":["guide/english/tools/calculators/gpa-calculator/index.md"]},{"number":25513,"updated_at":"2018-11-13T01:04:29Z","username":"Murrium123","title":"Update how-to-catch-outgoing-emails-locally.md","filenames":["docs/how-to-catch-outgoing-emails-locally.md"]},{"number":25514,"updated_at":"2018-11-13T01:04:30Z","username":"tokesk","title":"Add php syntax highlighting","filenames":["guide/english/php/array/index.md"]},{"number":25515,"updated_at":"2018-11-13T01:04:32Z","username":"jtoledo3970","title":"Added a dependency convention code example","filenames":["guide/english/certifications/apis-and-microservices/managing-packages-with-npm/manage-npm-dependencies-by-understanding-semantic-versioning/index.md"]},{"number":25517,"updated_at":"2018-11-13T01:04:34Z","username":"jexin","title":"Add link to \"more information\"","filenames":["guide/english/tools/calculators/sales-tax-calculator/index.md"]},{"number":25518,"updated_at":"2018-11-13T01:04:35Z","username":"tealc55","title":"Update how-to-work-on-guide-articles.md","filenames":["docs/spanish/how-to-work-on-guide-articles.md"]},{"number":25519,"updated_at":"2018-11-13T01:04:37Z","username":"KidoVin01","title":"Add \"Byzantine Fault Tolerance\"","filenames":["guide/english/blockchain/index.md"]},{"number":25520,"updated_at":"2018-11-13T01:04:39Z","username":"jtoledo3970","title":"Added a dependency removal code example","filenames":["guide/english/certifications/apis-and-microservices/managing-packages-with-npm/remove-a-package-from-your-dependencies/index.md"]},{"number":25521,"updated_at":"2018-11-13T01:04:40Z","username":"JoseP-UR","title":"Update on the size explanation","filenames":["guide/portuguese/bootstrap/grid-system/index.md"]},{"number":25522,"updated_at":"2018-11-13T01:04:42Z","username":"chiragswadia","title":"CSS linting consistency: Code linting should be consistent across the document","filenames":["guide/english/html/css-classes/index.md"]},{"number":25524,"updated_at":"2018-11-13T01:04:45Z","username":"tokesk","title":"Add more details for constants","filenames":["guide/english/php/constants/index.md"]},{"number":25525,"updated_at":"2018-11-13T01:04:47Z","username":"SameerBhardwaj98","title":"Added iterative implementation in c++","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":25527,"updated_at":"2018-11-13T01:04:48Z","username":"gsoare2","title":"Explaining about access to vector and lists data","filenames":["guide/portuguese/r/data-types/index.md"]},{"number":25529,"updated_at":"2018-11-13T01:04:52Z","username":"thisislola","title":"Corrected some grammar mistakes.","filenames":["guide/spanish/linux/advantages-of-linux/index.md"]},{"number":25532,"updated_at":"2018-11-13T01:04:55Z","username":"Samuel027","title":"Added historical info.","filenames":["guide/english/algorithms/index.md"]},{"number":25534,"updated_at":"2018-11-13T01:04:57Z","username":"SameerBhardwaj98","title":"Added implementation in JAVA","filenames":["guide/english/algorithms/sorting-algorithms/selection-sort/index.md"]},{"number":25538,"updated_at":"2018-11-13T01:05:02Z","username":"dotslash21","title":"Added two more additional learning resources","filenames":["guide/english/c/file-handling/index.md"]},{"number":25539,"updated_at":"2018-11-13T01:05:04Z","username":"JoseP-UR","title":"Added extra information","filenames":["guide/portuguese/css/padding/index.md"]},{"number":25541,"updated_at":"2018-11-13T01:05:07Z","username":"KidoVin01","title":"Added \"Proof of Work\"","filenames":["guide/english/blockchain/features/index.md"]},{"number":25542,"updated_at":"2018-11-13T01:05:09Z","username":"AmilaIndika789","title":"Add images of flow diagrams for if statements","filenames":["guide/english/c/if-statements/index.md"]},{"number":25544,"updated_at":"2018-11-13T01:05:12Z","username":"15jacobj","title":"Changed from stub into short article","filenames":["guide/english/computer-science/data-mining/index.md"]},{"number":25545,"updated_at":"2018-11-13T01:05:14Z","username":"lavindersingh931","title":"add the text \"O(n*m) time\"","filenames":["guide/english/algorithms/brute-force-algorithms/index.md"]},{"number":25546,"updated_at":"2018-11-13T01:05:15Z","username":"SameerBhardwaj98","title":"Added recursive implementation in c++","filenames":["guide/english/algorithms/search-algorithms/linear-search/index.md"]},{"number":25547,"updated_at":"2018-11-13T01:05:17Z","username":"SameerBhardwaj98","title":"Completed c++ implemetation","filenames":["guide/english/algorithms/sorting-algorithms/merge-sort/index.md"]},{"number":25550,"updated_at":"2018-11-13T01:05:20Z","username":"Vorkonolic","title":"Changes","filenames":["guide/russian/designer-tools/photoshop/index.md"]},{"number":25552,"updated_at":"2018-11-13T01:05:23Z","username":"15jacobj","title":"Added new Issues section","filenames":["guide/english/blockchain/index.md"]},{"number":25554,"updated_at":"2018-10-29T04:25:43Z","username":"wizzac","title":"Changing \"clic\" for \"click\"","filenames":["guide/spanish/jquery/jquery-click-method/index.md"]},{"number":25555,"updated_at":"2018-11-13T01:05:27Z","username":"Vorkonolic","title":"changes","filenames":["guide/russian/android-development/core-components/index.md"]},{"number":25556,"updated_at":"2018-11-15T19:49:50Z","username":"MackenzieThomasDevelopment","title":"Added the solution code.","filenames":["curriculum/challenges/english/01-responsive-web-design/basic-css/add-borders-around-your-elements.english.md"]},{"number":25557,"updated_at":"2018-11-13T01:05:31Z","username":"DaciteRocks","title":"Added Link to MIPS assembly language green sheet","filenames":["guide/english/computer-science/assembly-language/index.md"]},{"number":25558,"updated_at":"2018-11-13T01:05:33Z","username":"15jacobj","title":"Added DK graph","filenames":["guide/english/working-in-tech/dunning-kruger-effect/index.md"]},{"number":25560,"updated_at":"2018-11-13T01:05:36Z","username":"Vorkonolic","title":"changes","filenames":["guide/russian/linux/linux-brief-history/index.md"]},{"number":25563,"updated_at":"2018-11-13T01:05:39Z","username":"DaciteRocks","title":"Added Video example of a recursive descent parser","filenames":["guide/english/computer-science/recursive-descent/index.md"]},{"number":25564,"updated_at":"2018-11-13T01:05:41Z","username":"alexkadis","title":"Added a bit more about CSS Grid Layout","filenames":["guide/english/css/css3-grid-layout/index.md"]},{"number":25566,"updated_at":"2018-11-15T19:49:52Z","username":"mikholka","title":"Improved Russian translation","filenames":["curriculum/challenges/russian/03-front-end-libraries/bootstrap/add-font-awesome-icons-to-all-of-our-buttons.russian.md"]},{"number":25568,"updated_at":"2018-11-15T19:49:53Z","username":"MackenzieThomasDevelopment","title":"Added the solution code.","filenames":["curriculum/challenges/english/01-responsive-web-design/basic-css/add-different-margins-to-each-side-of-an-element.english.md"]},{"number":25569,"updated_at":"2018-11-13T01:05:48Z","username":"DaciteRocks","title":"Added link to youtube video explaining divide and conquer method","filenames":["guide/english/algorithms/divide-and-conquer-algorithms/index.md"]},{"number":25571,"updated_at":"2018-11-13T01:05:51Z","username":"DaciteRocks","title":"Delete duplicate \"visualization of data structures\"","filenames":["guide/english/computer-science/index.md"]},{"number":25574,"updated_at":"2018-11-15T19:49:55Z","username":"MackenzieThomasDevelopment","title":"Added in an answer to the solution.","filenames":["curriculum/challenges/english/01-responsive-web-design/basic-css/add-rounded-corners-with-border-radius.english.md"]},{"number":25575,"updated_at":"2018-11-13T01:05:56Z","username":"Tiwaripunit","title":"Add the image to article","filenames":["guide/english/agile/application-lifecycle-management/index.md"]},{"number":25576,"updated_at":"2018-11-13T01:05:58Z","username":"daniel-j-mac","title":"Corrected minimum value of a long long in C Guide, \"Data Types in C\" article","filenames":["guide/english/c/data-types/index.md"]},{"number":25582,"updated_at":"2018-11-13T01:06:01Z","username":"FeistyLes","title":"Minor grammar edits","filenames":["guide/english/puppet/index.md"]},{"number":25585,"updated_at":"2018-11-13T01:06:03Z","username":"jasonranney","title":"Fixed capitalization and added description","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":25586,"updated_at":"2018-11-15T19:49:56Z","username":"mikholka","title":"Improve \"Description\" and \"Instructions\" translations","filenames":["curriculum/challenges/russian/01-responsive-web-design/basic-css/use-clockwise-notation-to-specify-the-margin-of-an-element.russian.md"]},{"number":25588,"updated_at":"2018-11-15T19:49:58Z","username":"Octabond","title":"Update tests and challenge seeds","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.spanish.md"]},{"number":25590,"updated_at":"2018-11-13T01:06:08Z","username":"reinvnt","title":"Added link","filenames":["guide/english/working-in-tech/imposter-syndrome/index.md"]},{"number":25591,"updated_at":"2018-11-15T19:49:59Z","username":"Octabond","title":"Update yml text and comments","filenames":["curriculum/challenges/spanish/01-responsive-web-design/css-grid/add-columns-with-grid-template-columns.spanish.md"]},{"number":25592,"updated_at":"2018-11-13T01:06:10Z","username":"mian3se","title":"Update index.md","filenames":["guide/english/java/strings/index.md"]},{"number":25593,"updated_at":"2018-11-13T01:06:11Z","username":"EduNs","title":"Inclusão de descrição mais detalhada.","filenames":["guide/portuguese/html/elements/div-tag/index.md"]},{"number":25596,"updated_at":"2018-11-15T19:50:01Z","username":"Octabond","title":"Update .md grammar and comments","filenames":["curriculum/challenges/spanish/01-responsive-web-design/css-grid/reduce-repetition-using-the-repeat-function.spanish.md"]},{"number":25598,"updated_at":"2018-11-27T15:14:20Z","username":"daniel-j-mac","title":"Applied consistent commas in numbers in C Guide, \"Data Types in C\" article","filenames":["guide/english/c/data-types/index.md"]},{"number":25599,"updated_at":"2018-11-13T01:06:18Z","username":"Bcardona21","title":"Add 2 podcast suggestions","filenames":["guide/english/working-in-tech/index.md"]},{"number":25601,"updated_at":"2018-11-15T19:50:02Z","username":"Octabond","title":"Translate challenge seed section","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/use-tabindex-to-specify-the-order-of-keyboard-focus-for-several-elements.spanish.md"]},{"number":25602,"updated_at":"2018-11-13T01:06:22Z","username":"mian3se","title":"Update index.md","filenames":["guide/english/java/comments-in-java/index.md"]},{"number":25604,"updated_at":"2018-11-13T01:06:23Z","username":"MedranoCE","title":"Update in transtlation structure index.md","filenames":["guide/spanish/html/attributes/div-align-attribute/index.md"]},{"number":25607,"updated_at":"2018-11-13T01:06:28Z","username":"michapietsch","title":"Add new introductory article about Tailwind CSS","filenames":["guide/english/tailwindcss/index.md"]},{"number":25608,"updated_at":"2018-11-15T19:50:04Z","username":"mikholka","title":"Update \"Description\" translation","filenames":["curriculum/challenges/russian/01-responsive-web-design/basic-css/add-a-negative-margin-to-an-element.russian.md"]},{"number":25609,"updated_at":"2018-11-13T01:06:31Z","username":"mian3se","title":"Update index.md","filenames":["guide/english/java/loops/index.md"]},{"number":25611,"updated_at":"2018-11-13T01:06:35Z","username":"KidoVin01","title":"Added \"Oracles\"","filenames":["guide/english/blockchain/smart-contracts/index.md"]},{"number":25612,"updated_at":"2018-11-13T01:06:36Z","username":"reinvnt","title":"Added link","filenames":["guide/english/c/basic-networking/index.md"]},{"number":25614,"updated_at":"2018-11-27T01:57:00Z","username":"MedranoCE","title":"Fixed some expressions for better understanding in use-rgb-values-to-color-elements.spanish.md","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-css/use-rgb-values-to-color-elements.spanish.md"]},{"number":25615,"updated_at":"2018-11-13T01:06:40Z","username":"jasonranney","title":"fixed capitalization of \"JavaScript\"","filenames":["guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md"]},{"number":25617,"updated_at":"2018-11-13T01:06:41Z","username":"EduNs","title":"Descrição mais detalhada.","filenames":["guide/portuguese/python/functions/index.md"]},{"number":25618,"updated_at":"2018-11-13T01:06:43Z","username":"kingtheoden","title":"Better the word flow, explain __len__(self).","filenames":["guide/english/python/len-function/index.md"]},{"number":25619,"updated_at":"2018-11-13T01:06:45Z","username":"sergeimellow","title":"added to and updated verbiage to account for Ruby lang","filenames":["guide/english/ruby/classes-and-objects/index.md"]},{"number":25620,"updated_at":"2018-11-13T01:06:46Z","username":"reinvnt","title":"Added link","filenames":["guide/english/computer-hardware/power-supply/index.md"]},{"number":25623,"updated_at":"2018-11-13T01:06:48Z","username":"reinvnt","title":"added link","filenames":["guide/english/computer-hardware/power-supply/index.md"]},{"number":25626,"updated_at":"2018-11-13T01:06:50Z","username":"EduNs","title":"Adição de observação no uso da estrutura do Switch","filenames":["guide/portuguese/java/control-flow/index.md"]},{"number":25629,"updated_at":"2018-11-13T01:06:53Z","username":"Undead623","title":"Added \"[What is FreeBSD]\"","filenames":["guide/english/bsd-os/index.md"]},{"number":25631,"updated_at":"2018-11-13T01:06:55Z","username":"jasonranney","title":"fixed \"Font Awesome\" capitalization and spacing","filenames":["guide/english/bootstrap/fontawesome-icons/index.md"]},{"number":25632,"updated_at":"2018-10-29T04:36:15Z","username":"AndrreyCastillo","title":"I translated the commented code into spanish","filenames":["guide/spanish/java/data-types/index.md"]},{"number":25633,"updated_at":"2018-11-15T19:50:07Z","username":"MedranoCE","title":"Updated the instructions section","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.spanish.md"]},{"number":25634,"updated_at":"2018-11-13T01:06:58Z","username":"Undead623","title":"Added Learn more line","filenames":["guide/english/groovy/index.md"]},{"number":25635,"updated_at":"2018-11-13T01:07:00Z","username":"wulfmatik","title":"Minor grammar corrections and edited for clarity.","filenames":["guide/english/computer-hardware/cooling/index.md"]},{"number":25636,"updated_at":"2018-11-13T01:07:01Z","username":"EduNs","title":"Melhora da descrição das funções.","filenames":["guide/portuguese/c/arrays-and-strings/index.md"]},{"number":25637,"updated_at":"2018-11-13T01:07:03Z","username":"curiouscoding22","title":"Grammatical and spelling changes","filenames":["guide/english/python/for-loop-statements/index.md"]},{"number":25638,"updated_at":"2018-11-13T01:07:05Z","username":"MedranoCE","title":"Update index.md","filenames":["guide/spanish/documentation/index.md"]},{"number":25641,"updated_at":"2018-11-13T01:07:06Z","username":"clylo","title":"Add resources for learning tableau","filenames":["guide/english/data-science-tools/tableau/index.md"]},{"number":25643,"updated_at":"2018-11-13T01:07:08Z","username":"MatejStraka","title":"Added links to other libraries","filenames":["guide/english/machine-learning/tensorflow-for-machine-learning/index.md"]},{"number":25644,"updated_at":"2018-11-13T01:07:10Z","username":"MedranoCE","title":"Update index.md","filenames":["guide/spanish/bootstrap/buttons/index.md"]},{"number":25645,"updated_at":"2018-11-13T01:07:11Z","username":"ariguiba","title":"grammar fixes","filenames":["guide/arabic/computer-science/compilers/index.md"]},{"number":25648,"updated_at":"2018-11-13T01:07:15Z","username":"danielrs975","title":"Traducción de algunas partes del documento index.md sobre clases en python","filenames":["guide/spanish/python/class/index.md"]},{"number":25649,"updated_at":"2018-11-13T01:07:16Z","username":"Harithahhh","title":"Deep learning application in computer vision","filenames":["guide/english/machine-learning/deep-learning/index.md"]},{"number":25650,"updated_at":"2018-11-13T01:07:18Z","username":"BinaryCrochet","title":"Grammatical changes to text for readability","filenames":["docs/how-to-catch-outgoing-emails-locally.md"]},{"number":25651,"updated_at":"2018-11-13T01:07:20Z","username":"ntn","title":"Added 'Getting Started' resource to Apache","filenames":["guide/english/apache/index.md"]},{"number":25652,"updated_at":"2018-11-13T01:07:21Z","username":"EduNs","title":"Melhora de sintaxe das descrições e código.","filenames":["guide/portuguese/java/strings/index.md"]},{"number":25682,"updated_at":"2018-11-13T01:07:23Z","username":"GiraffeWarrior","title":"Edited \"If Statement\" article for grammar and clarity","filenames":["guide/english/cplusplus/the-if-statement/index.md"]},{"number":25683,"updated_at":"2018-11-13T01:07:24Z","username":"danielrs975","title":"Traducción de la parte de instanciación de clases en Python","filenames":["guide/spanish/python/class/index.md"]},{"number":25684,"updated_at":"2018-11-13T01:07:26Z","username":"ntn","title":"Added additional textbook algorithms resource","filenames":["guide/english/algorithms/index.md"]},{"number":25688,"updated_at":"2018-11-13T01:07:28Z","username":"txxin","title":"Add a link to another article in freecampcode that migt be useful and…","filenames":["guide/english/certifications/coding-interview-prep/index.md"]},{"number":25689,"updated_at":"2018-11-13T01:07:30Z","username":"AndrreyCastillo","title":"I translated the Access Modifiers Table","filenames":["guide/spanish/java/access-modifiers/index.md"]},{"number":25692,"updated_at":"2018-11-25T07:30:07Z","username":"AndrreyCastillo","title":"I translated some code comments to spanish","filenames":["guide/spanish/java/javafx/index.md"]},{"number":25694,"updated_at":"2018-11-26T11:31:58Z","username":"txxin","title":"I changed the heading size of the article. The first heading went fr…","filenames":["guide/english/python/what-is-python-used-for/index.md"]},{"number":25696,"updated_at":"2018-11-25T09:58:32Z","username":"jeremycpc","title":"Added a quick tip to expose the \"truthiness\" of an object","filenames":["guide/english/ruby/true-false-nil/index.md"]},{"number":25698,"updated_at":"2018-11-25T07:31:14Z","username":"AndrreyCastillo","title":"I translated comment code into spanish","filenames":["guide/spanish/java/interfaces/index.md"]},{"number":25701,"updated_at":"2018-11-25T07:29:09Z","username":"clayhefner","title":"Add paragraph on consistency","filenames":["guide/english/agile/velocity/index.md"]},{"number":25702,"updated_at":"2018-11-25T07:31:53Z","username":"AndrreyCastillo","title":"Translated comment in typecasting section of java into Spanish","filenames":["guide/spanish/java/typecasting/index.md"]},{"number":25706,"updated_at":"2018-11-26T11:32:08Z","username":"jbeals12","title":"Combined two sentences","filenames":["guide/english/java/arraylist/index.md"]},{"number":25710,"updated_at":"2018-11-25T07:33:22Z","username":"bcpudge7","title":"Adding the homepage link for the apache project","filenames":["guide/english/apache/index.md"]},{"number":25711,"updated_at":"2018-11-25T07:33:56Z","username":"laolmstead","title":"Added new note regarding rm","filenames":["guide/english/bash/bash-rm/index.md"]},{"number":25713,"updated_at":"2018-11-25T07:34:18Z","username":"jbeals12","title":"Fixed spelling and added \"the\" to a sentence.","filenames":["guide/english/typography/alignment/index.md"]},{"number":25714,"updated_at":"2018-11-25T07:34:28Z","username":"Harithahhh","title":"Data preprocessing technique in machine learning","filenames":["guide/english/machine-learning/index.md"]},{"number":25716,"updated_at":"2018-11-25T07:36:46Z","username":"bcpudge7","title":"Reworded the sentence after the example","filenames":["guide/english/html/elements/style-tag/index.md"]},{"number":25717,"updated_at":"2018-11-25T07:37:01Z","username":"BTmathic","title":"Added content to stub","filenames":["guide/english/mathematics/order-of-operations-pemdas/index.md"]},{"number":25718,"updated_at":"2018-11-25T07:37:11Z","username":"german1608","title":"add `map` function to haskell section","filenames":["guide/english/haskell/map/index.md"]},{"number":25723,"updated_at":"2018-11-25T07:37:42Z","username":"sergeimellow","title":"added section on famous websites written in ruby on rails.","filenames":["guide/english/ruby/ruby-on-rails/index.md"]},{"number":25725,"updated_at":"2018-11-25T07:38:19Z","username":"Harithahhh","title":"Update index.md","filenames":["guide/english/machine-learning/index.md"]},{"number":25727,"updated_at":"2018-11-25T07:38:31Z","username":"laolmstead","title":"Fixed Semantic Tags Section","filenames":["guide/english/html/page-structure/index.md"]},{"number":25729,"updated_at":"2018-11-25T07:39:22Z","username":"AndreyPootMay","title":"Traducción de títulos","filenames":["curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-projects/build-a-product-landing-page.spanish.md"]},{"number":25730,"updated_at":"2018-11-25T07:39:43Z","username":"AndreyPootMay","title":"traducción de subtítulos - add-a-submit-button-to-a-form.spanish.md","filenames":["curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.spanish.md"]},{"number":25731,"updated_at":"2018-11-25T07:40:07Z","username":"AndreyPootMay","title":"Actualización de descripción","filenames":["curriculum/challenges/spanish/03-front-end-libraries/bootstrap/add-id-attributes-to-bootstrap-elements.spanish.md"]},{"number":25732,"updated_at":"2018-11-25T07:41:32Z","username":"spinder96","title":"Add link to show k-means","filenames":["guide/english/machine-learning/clustering-algorithms/index.md"]},{"number":25733,"updated_at":"2018-11-25T07:41:47Z","username":"AndreyPootMay","title":"Redacción del título","filenames":["curriculum/challenges/spanish/09-certificates/apis-and-microservices-certificate/apis-and-microservices-certificate.spanish.md"]},{"number":25734,"updated_at":"2018-11-25T07:41:57Z","username":"AndreyPootMay","title":"Título correcto - javascript-algorithms-and-data-structures-certificate.spanish.md","filenames":["curriculum/challenges/spanish/09-certificates/javascript-algorithms-and-data-structures-certificate/javascript-algorithms-and-data-structures-certificate.spanish.md"]},{"number":25735,"updated_at":"2018-11-25T07:43:24Z","username":"Pankaj14476","title":"Add my changes","filenames":["guide/english/bash/bash-touch/index.md"]},{"number":25736,"updated_at":"2018-11-25T07:43:33Z","username":"Drknessfall","title":"Update index.md","filenames":["guide/portuguese/html/comments-in-html/index.md"]},{"number":25737,"updated_at":"2018-11-25T07:43:44Z","username":"AndreyPootMay","title":"Traducción de subtítulos","filenames":["curriculum/challenges/spanish/09-certificates/apis-and-microservices-certificate/apis-and-microservices-certificate.spanish.md"]},{"number":25738,"updated_at":"2018-11-25T07:43:57Z","username":"Drknessfall","title":"Update index.md","filenames":["guide/portuguese/sql/index.md"]},{"number":25744,"updated_at":"2018-11-25T07:44:31Z","username":"wizzac","title":"Correccion de traduccion inicial","filenames":["guide/spanish/ionic/hello-world-in-ionic/index.md"]},{"number":25746,"updated_at":"2018-11-25T07:45:58Z","username":"Analogues","title":"Corrected inconsistencies in headings","filenames":["guide/english/docker/docker-compose/index.md"]},{"number":25749,"updated_at":"2018-11-25T07:47:01Z","username":"spellingbat","title":"corrected spelling, grammar line 6","filenames":["guide/english/data-science-tools/tableau/index.md"]},{"number":25751,"updated_at":"2018-11-25T07:47:10Z","username":"dczysz","title":"Added Content To Initial Stub","filenames":["guide/english/mathematics/cylinder-volume-and-surface-area/index.md"]},{"number":25753,"updated_at":"2018-11-25T07:47:43Z","username":"dczysz","title":"Fixed broken More Information link","filenames":["guide/english/mathematics/absolute-value/index.md"]},{"number":25754,"updated_at":"2018-11-25T07:47:56Z","username":"wulfmatik","title":"Corrected grammar usage on line 104","filenames":["guide/english/android-development/core-components/index.md"]},{"number":25756,"updated_at":"2018-11-25T10:01:11Z","username":"dczysz","title":"Added initial content to stub","filenames":["guide/english/mathematics/polygons/index.md"]},{"number":25759,"updated_at":"2018-11-13T01:08:44Z","username":"wizzac","title":"Traduccion de tutorial y adaptacion","filenames":["guide/spanish/ionic/hello-world-in-ionic/index.md"]},{"number":25760,"updated_at":"2018-11-25T07:52:02Z","username":"wulfmatik","title":"Updated punctuation on lines 12 and 13","filenames":["guide/english/computer-hardware/expansion-cards/index.md"]},{"number":25763,"updated_at":"2018-11-13T01:08:54Z","username":"wizzac","title":"Mejorando traduccion","filenames":["guide/spanish/javascript/onload-event/index.md"]},{"number":25764,"updated_at":"2018-11-13T01:08:56Z","username":"Bcardona21","title":"Add terminology","filenames":["guide/english/miscellaneous/learn-about-pair-programming/index.md"]},{"number":25765,"updated_at":"2018-11-13T01:08:57Z","username":"setyoadiw","title":"Update attribute target to open link in new tab","filenames":["guide/english/html/tutorials/how-to-use-links/index.md"]},{"number":25766,"updated_at":"2018-11-25T07:52:16Z","username":"kindhartcoding","title":"corrected spelling error","filenames":["guide/english/bootstrap/icons/index.md"]},{"number":25768,"updated_at":"2018-11-25T07:52:37Z","username":"agilebelma","title":"Added two more links to the resources section","filenames":["guide/english/devops/index.md"]},{"number":25769,"updated_at":"2018-11-13T01:09:06Z","username":"infinitec","title":"Adds guide page for bash command grep","filenames":["guide/english/bash/bash-grep/index.md"]},{"number":25771,"updated_at":"2018-11-13T01:09:09Z","username":"Bcardona21","title":"Add terminology","filenames":["guide/english/miscellaneous/learn-about-pair-programming/index.md"]},{"number":25774,"updated_at":"2018-11-25T07:52:50Z","username":"spellingbat","title":"grammar and spacing fixes","filenames":["guide/english/cloud-development/amazon-aws/index.md"]},{"number":25775,"updated_at":"2018-11-25T07:53:24Z","username":"djfrost3066","title":"Add word \" пользователям\" to an article","filenames":["curriculum/challenges/russian/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.russian.md"]},{"number":25776,"updated_at":"2018-11-13T01:09:14Z","username":"agilebelma","title":"Added 10 DevOps Courses link to resources","filenames":["guide/english/devops/index.md"]},{"number":25780,"updated_at":"2018-11-25T07:58:50Z","username":"emily-gong","title":"Update translation","filenames":["guide/chinese/java/finally-keyword/index.md"]},{"number":25781,"updated_at":"2018-11-25T07:59:10Z","username":"mancillad","title":"Added Nginx installation on CENTOS","filenames":["guide/english/nginx/index.md"]},{"number":25783,"updated_at":"2018-11-25T07:59:23Z","username":"Rayhatron","title":"Fix markdown links formatting","filenames":["guide/english/progressive-web-apps/index.md"]},{"number":25785,"updated_at":"2018-11-13T01:09:33Z","username":"Ruchika8","title":"Update Java Code for Bubble Sort","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":25787,"updated_at":"2018-11-25T08:00:23Z","username":"Ruchika8","title":"Updated class name in Java","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":25789,"updated_at":"2018-11-13T01:09:40Z","username":"luciantanase14","title":"Update on link documentation","filenames":["guide/english/agile/index.md"]},{"number":25793,"updated_at":"2018-11-15T19:50:19Z","username":"AlekseyPudlo","title":"Changed values to CSS/English in Example","filenames":["curriculum/challenges/russian/01-responsive-web-design/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property.russian.md"]},{"number":25794,"updated_at":"2018-11-25T08:07:06Z","username":"deveshp","title":"Changed spacing in the CSS for consistency","filenames":["curriculum/challenges/english/01-responsive-web-design/responsive-web-design-principles/use-a-retina-image-for-higher-resolution-displays.english.md"]},{"number":25795,"updated_at":"2018-11-25T08:07:33Z","username":"Bhagathp","title":"Adds \"Note: QA - Quality Assurance.\"","filenames":["guide/english/agile/acceptance-criteria/index.md"]},{"number":25796,"updated_at":"2018-11-25T08:08:09Z","username":"naidaagic","title":"Corrected code snippets","filenames":["guide/english/python/if-elif-else-statements/index.md"]},{"number":25798,"updated_at":"2018-11-16T15:59:41Z","username":"YzahFe","title":"Jumbotron","filenames":["guide/english/bootstrap/jumbotron/index.md"]},{"number":25799,"updated_at":"2018-11-13T01:09:56Z","username":"FazeelUsmani","title":"Add the text \"Design is an art...\"","filenames":["guide/english/agile/design-patterns/index.md"]},{"number":25800,"updated_at":"2018-11-15T19:50:22Z","username":"sierisimo","title":"Added some translations to titles","filenames":["curriculum/challenges/spanish/01-responsive-web-design/applied-accessibility/wrap-radio-buttons-in-a-fieldset-element-for-better-accessibility.spanish.md"]},{"number":25802,"updated_at":"2018-11-25T08:08:33Z","username":"Bhagathp","title":"Adds an example for \"Techniques to solve the problem of Web Accessibi…","filenames":["guide/english/accessibility/index.md"]},{"number":25805,"updated_at":"2018-11-13T01:10:03Z","username":"sergii-zhuravel","title":"Russian translation fixes JS index","filenames":["guide/russian/javascript/index.md"]},{"number":25806,"updated_at":"2018-11-13T01:10:05Z","username":"naidaagic","title":"Added an example for iterating over a string","filenames":["guide/english/python/for-loop-statements/index.md"]},{"number":25811,"updated_at":"2018-11-13T01:10:08Z","username":"zonqq","title":"Add information AVL tree Wiki","filenames":["guide/english/algorithms/avl-trees/index.md"]},{"number":25812,"updated_at":"2018-11-13T01:10:10Z","username":"zonqq","title":"Add tutorial information","filenames":["guide/english/css/borders/index.md"]},{"number":25816,"updated_at":"2018-11-25T08:12:10Z","username":"Kenford20","title":"guide: add code explanations to js algorithm","filenames":["guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities/index.md"]},{"number":25818,"updated_at":"2018-11-25T08:12:35Z","username":"dharmang","title":"Update index.md - Added link to CodeIgniter framework.","filenames":["guide/english/php/index.md"]},{"number":25822,"updated_at":"2018-11-15T19:50:23Z","username":"GoldenCorgi","title":"Added solution to challenge","filenames":["curriculum/challenges/english/01-responsive-web-design/applied-visual-design/decrease-the-opacity-of-an-element.english.md"]},{"number":25826,"updated_at":"2018-11-25T08:13:32Z","username":"LosAngalex","title":"Added additional resource link","filenames":["guide/english/css/colors/index.md"]},{"number":25828,"updated_at":"2018-11-15T19:50:26Z","username":"GoldenCorgi","title":"Added solution to challenge","filenames":["curriculum/challenges/english/01-responsive-web-design/basic-css/change-the-color-of-text.english.md"]},{"number":25831,"updated_at":"2018-11-25T08:13:52Z","username":"LosAngalex","title":"Fixed the code formatting for readability","filenames":["curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-projects/build-a-tribute-page.spanish.md"]},{"number":25833,"updated_at":"2018-11-25T08:15:32Z","username":"Thaurin","title":"Add Oculus Go/Quest to supported platforms","filenames":["guide/english/game-development/unity/index.md"]},{"number":25836,"updated_at":"2018-11-25T08:15:48Z","username":"Thaurin","title":"Add more noteworthy games created with Unity","filenames":["guide/english/game-development/unity/index.md"]},{"number":25839,"updated_at":"2018-11-25T08:16:48Z","username":"Dranthos","title":"Improved translation of 'Description'","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/convert-celsius-to-fahrenheit.spanish.md"]},{"number":25841,"updated_at":"2018-11-25T08:18:05Z","username":"cmondorf","title":"Minor edits for clarity.","filenames":["guide/spanish/python/anaconda/index.md"]},{"number":25842,"updated_at":"2018-11-13T01:10:45Z","username":"nickhq","title":"added php keywords","filenames":["guide/english/php/php-keywords/index.md"]},{"number":25844,"updated_at":"2018-11-15T19:50:31Z","username":"Dranthos","title":"Improved wording of 'Description'","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/convert-celsius-to-fahrenheit.spanish.md"]},{"number":25845,"updated_at":"2018-11-13T01:10:50Z","username":"Awes0meM4n","title":"Invalid code solved and improved description","filenames":["guide/spanish/java/interfaces/index.md"]},{"number":25846,"updated_at":"2018-11-13T01:10:52Z","username":"gourabk121","title":"add the lines","filenames":["guide/english/bootstrap/collapse/index.md"]},{"number":25849,"updated_at":"2018-11-13T01:10:54Z","username":"Awes0meM4n","title":"Added explanation about sintactic sugar","filenames":["guide/spanish/java/arrays/index.md"]},{"number":25854,"updated_at":"2018-11-15T19:50:32Z","username":"AlekseyPudlo","title":"Changed few words in example.","filenames":["curriculum/challenges/russian/01-responsive-web-design/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property.russian.md"]},{"number":25855,"updated_at":"2018-11-13T01:11:02Z","username":"bloodwithmilk25","title":"Class Objects translated to \"Объекты Класса\"","filenames":["guide/russian/python/class/index.md"]},{"number":25858,"updated_at":"2018-11-13T01:11:05Z","username":"bloodwithmilk25","title":"Translation","filenames":["guide/russian/python/class/index.md"]},{"number":25861,"updated_at":"2018-11-13T01:11:10Z","username":"bloodwithmilk25","title":"regular translation","filenames":["guide/russian/python/class/index.md"]},{"number":25871,"updated_at":"2018-11-25T10:01:18Z","username":"bernardosequeir","title":"Changed some of the translation for it to read better, particularly the translation of grid","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/css-grid/add-columns-with-grid-template-columns.portuguese.md"]},{"number":25873,"updated_at":"2018-12-08T20:55:22Z","username":"MrDatastorage","title":"\"Little text issue fixed\"","filenames":["guide/english/android-development/index.md"]},{"number":25875,"updated_at":"2018-11-25T10:01:24Z","username":"JHeisecke","title":"Agregar un algoritmo de ordenamiento mas","filenames":["guide/spanish/algorithms/index.md"]},{"number":25876,"updated_at":"2018-11-25T08:31:47Z","username":"bloodwithmilk25","title":"translation","filenames":["guide/russian/python/lambda-expressions/index.md"]},{"number":25880,"updated_at":"2018-11-25T08:37:21Z","username":"ElienVissers","title":"Grammatical fix","filenames":["curriculum/challenges/english/01-responsive-web-design/basic-css/add-borders-around-your-elements.english.md"]},{"number":25882,"updated_at":"2018-11-25T08:37:39Z","username":"SpaceXar20","title":"Add text to article","filenames":["guide/spanish/agile/acceptance-testing/index.md"]},{"number":25883,"updated_at":"2018-11-25T08:38:12Z","username":"emrdgrmnci","title":"Add view hierarchy of views","filenames":["guide/english/swift/view-controller/index.md"]},{"number":25884,"updated_at":"2018-11-25T08:38:31Z","username":"bloodwithmilk25","title":"translation","filenames":["guide/russian/python/class/index.md"]},{"number":25885,"updated_at":"2018-11-25T08:38:52Z","username":"Ttesori","title":"Improve formatting and edit for clarity","filenames":["guide/english/css/borders/index.md"]},{"number":25886,"updated_at":"2018-11-25T08:39:10Z","username":"bloodwithmilk25","title":"translation","filenames":["guide/russian/python/class/index.md"]},{"number":25888,"updated_at":"2018-11-25T08:41:44Z","username":"ElienVissers","title":"Improved readability of Description","filenames":["curriculum/challenges/english/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-carefully-choosing-colors-that-convey-information.english.md"]},{"number":25892,"updated_at":"2018-11-25T08:44:30Z","username":"felipesen","title":"Made a suitable translation for Join types","filenames":["guide/portuguese/sql/sql-joins/index.md"]},{"number":25893,"updated_at":"2018-11-13T01:11:47Z","username":"kevinrb","title":"Some orthographic corrections","filenames":["guide/spanish/algorithms/algorithm-design-patterns/behavioral-patterns/index.md"]},{"number":25895,"updated_at":"2018-11-26T18:15:15Z","username":"ElienVissers","title":"Improved readability of 'description'","filenames":["curriculum/challenges/english/01-responsive-web-design/applied-accessibility/know-when-alt-text-should-be-left-blank.english.md"]},{"number":25896,"updated_at":"2018-12-05T16:18:08Z","username":"pal3635","title":"description added","filenames":["guide/english/javascript/index.md"]},{"number":25897,"updated_at":"2018-11-13T01:11:52Z","username":"almande","title":"Fix grammar and which user executes example","filenames":["guide/english/bash/index.md"]},{"number":25898,"updated_at":"2018-11-13T01:11:54Z","username":"clintonastute","title":"Added IDEs for Java Coding.","filenames":["guide/english/java/index.md"]},{"number":25899,"updated_at":"2018-11-13T01:11:55Z","username":"Ttesori","title":"Improved formatting, updated links, clarity edits","filenames":["guide/english/css/background/index.md"]},{"number":25900,"updated_at":"2018-11-21T22:35:08Z","username":"felipesen","title":"Minor spelling corrections.","filenames":["guide/portuguese/agile/invest/index.md"]},{"number":25904,"updated_at":"2018-11-13T01:12:00Z","username":"AmilaIndika789","title":"Add Exception types, Exception handling","filenames":["guide/english/java/exception-handling/index.md"]},{"number":25906,"updated_at":"2018-11-13T01:12:04Z","username":"thisislola","title":"Fixed some mistakes (literal translations)","filenames":["guide/spanish/linux/basic-linux-commands/index.md"]},{"number":25908,"updated_at":"2018-11-15T19:50:41Z","username":"AlekseyPudlo","title":"Fixed translate in example...","filenames":["curriculum/challenges/russian/01-responsive-web-design/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property.russian.md"]},{"number":25910,"updated_at":"2018-11-13T01:12:07Z","username":"saiviru","title":"Add the \"Multiple Backgrounds \" section","filenames":["guide/english/css/css3-backgrounds/index.md"]},{"number":25911,"updated_at":"2018-11-13T01:12:09Z","username":"Kobussc","title":"Added 2 more blogs with good content","filenames":["guide/english/angular/angular-resources/index.md"]},{"number":25912,"updated_at":"2018-11-13T01:12:10Z","username":"greggubarev","title":"[Guide] Added Using Multiple Conditional (Ternary) Operators","filenames":["guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/counting-cards/index.md"]},{"number":25914,"updated_at":"2018-11-13T01:12:12Z","username":"Vanally","title":"Add \"the link\" to your articles","filenames":["guide/english/android-development/core-components/index.md"]},{"number":25915,"updated_at":"2018-11-13T01:12:14Z","username":"Ttesori","title":"Formatting improvements, edits for clarity.","filenames":["guide/english/css/fonts/index.md"]},{"number":25918,"updated_at":"2018-11-13T01:12:15Z","username":"Timmymichael","title":"Update index.md","filenames":["guide/english/css/fonts/index.md"]},{"number":25919,"updated_at":"2018-11-15T19:50:43Z","username":"AndrewLeontev","title":"fix syntax and lexical errors","filenames":["curriculum/challenges/russian/02-javascript-algorithms-and-data-structures/es6/compare-scopes-of-the-var-and-let-keywords.russian.md"]},{"number":25921,"updated_at":"2018-11-13T01:12:20Z","username":"ml4711","title":"Fixing spelling mistakes","filenames":["guide/english/agile/acceptance-criteria/index.md"]},{"number":25923,"updated_at":"2018-11-13T01:12:24Z","username":"ml4711","title":"fixing spelling mistake","filenames":["guide/english/agile/acceptance-testing/index.md"]},{"number":25924,"updated_at":"2018-11-15T19:50:44Z","username":"ElienVissers","title":"Improved readability of 'Description'","filenames":["curriculum/challenges/english/01-responsive-web-design/applied-accessibility/wrap-content-in-the-article-element.english.md"]},{"number":25927,"updated_at":"2018-10-22T21:45:20Z","username":"michelsonhns","title":"Bulma","filenames":["guide/portuguese/bulma/index.md"]},{"number":25928,"updated_at":"2018-11-13T01:12:31Z","username":"saiviru","title":"Added Multiple backgrounds section at the bottom","filenames":["guide/english/css/css3-backgrounds/index.md"]},{"number":25930,"updated_at":"2018-11-13T01:12:33Z","username":"ml4711","title":"Rewording the first intro sentence","filenames":["guide/english/agile/architectural-runway/index.md"]},{"number":25932,"updated_at":"2018-11-13T01:12:34Z","username":"ml4711","title":"fixing spelling and improving formatting","filenames":["guide/english/agile/application-lifecycle-management/index.md"]},{"number":25933,"updated_at":"2018-10-29T04:43:13Z","username":"misterarko","title":"Change wrong spanish gender-related terms","filenames":["guide/spanish/working-in-tech/women-in-tech/index.md"]},{"number":25934,"updated_at":"2018-11-13T01:12:36Z","username":"Kobussc","title":"Added 2 blogs","filenames":["guide/english/angular/angular-resources/index.md"]},{"number":25936,"updated_at":"2018-11-13T01:12:39Z","username":"Kobussc","title":"added Pages made with Angular","filenames":["guide/english/angular/angular-resources/index.md"]},{"number":25937,"updated_at":"2018-11-13T01:12:41Z","username":"Ruchika8","title":"Updated Class name as per convention","filenames":["guide/english/algorithms/sorting-algorithms/bubble-sort/index.md"]},{"number":25938,"updated_at":"2018-11-15T19:50:46Z","username":"kontramot","title":"Issue #18312: partially translated and corrected to Russian curriculum","filenames":["curriculum/challenges/russian/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.russian.md","curriculum/challenges/russian/01-responsive-web-design/applied-accessibility/add-an-accessible-date-picker.russian.md","curriculum/challenges/russian/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-carefully-choosing-colors-that-convey-information.russian.md","curriculum/challenges/russian/01-responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-using-sufficient-contrast.russian.md","curriculum/challenges/russian/01-responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text.russian.md","curriculum/challenges/russian/01-responsive-web-design/applied-accessibility/improve-accessibility-of-audio-content-with-the-audio-element.russian.md","curriculum/challenges/russian/01-responsive-web-design/applied-accessibility/improve-chart-accessibility-with-the-figure-element.russian.md"]},{"number":25940,"updated_at":"2018-11-25T08:47:50Z","username":"s3xycake","title":"Added text","filenames":["guide/english/r/functions/index.md"]},{"number":25941,"updated_at":"2018-11-13T01:12:46Z","username":"annebelleo","title":"Added comment usage suggestion","filenames":["guide/english/ruby/ruby-comments/index.md"]},{"number":25942,"updated_at":"2018-11-25T08:48:11Z","username":"s3xycake","title":"Added text to the article","filenames":["guide/english/r/data-types/index.md"]},{"number":25943,"updated_at":"2018-11-13T01:12:49Z","username":"konstantinosftw","title":"Speed","filenames":["guide/english/computer-hardware/rom/index.md"]},{"number":25945,"updated_at":"2018-11-25T08:48:35Z","username":"daya2940","title":"Added preprocessor directive","filenames":["guide/english/c/data-types/index.md"]},{"number":25946,"updated_at":"2018-11-25T08:49:08Z","username":"konstantinosftw","title":"Spelling error. Changed \"fo\" to \"for\"","filenames":["guide/english/computer-hardware/ram/index.md"]},{"number":25948,"updated_at":"2018-11-25T08:49:34Z","username":"daya2940","title":"updated do while loop","filenames":["guide/english/cplusplus/do-while-loop/index.md"]},{"number":25949,"updated_at":"2018-11-25T10:01:59Z","username":"shilpi03","title":"keywords (reserve words ) in python","filenames":["guide/english/python/keywords/index.md"]},{"number":25950,"updated_at":"2018-11-25T08:57:21Z","username":"konstantinosftw","title":"Spelling fix. \"adress\" to \"address\"","filenames":["guide/english/computer-hardware/cpu/index.md"]},{"number":25951,"updated_at":"2018-11-25T08:57:44Z","username":"IonTarna","title":"added a common type of attack","filenames":["guide/english/security/cyberattacks/index.md"]},{"number":25953,"updated_at":"2018-11-25T08:59:07Z","username":"darcardona","title":"Translate titles into Spanish","filenames":["curriculum/challenges/spanish/08-coding-interview-prep/algorithms/find-the-symmetric-difference.spanish.md"]},{"number":25954,"updated_at":"2018-11-25T10:02:16Z","username":"yosoyoscar","title":"SQL comments translated into Spanish","filenames":["guide/spanish/sql/sql-group-by-statement/index.md"]},{"number":25955,"updated_at":"2018-11-25T09:02:50Z","username":"sedanodlr","title":"Update epic translation in index.md","filenames":["guide/spanish/agile/user-stories/index.md"]},{"number":25965,"updated_at":"2018-11-25T09:06:06Z","username":"Phillnavy","title":"purposedChangesToForLoops.md","filenames":["guide/english/java/loops/for-loop/index.md"]},{"number":25968,"updated_at":"2018-11-25T09:06:23Z","username":"daya2940","title":"one liner conditional","filenames":["guide/english/cplusplus/conditional-operator/index.md"]},{"number":25970,"updated_at":"2018-11-25T09:06:37Z","username":"hbawazir","title":"Fixed sentences structure. Removes Less literal translation.","filenames":["guide/arabic/css/css-pre-processors/index.md"]},{"number":25973,"updated_at":"2018-11-25T09:06:51Z","username":"lozgarrido","title":"Proofreading and editing after the translation","filenames":["guide/spanish/visual-design/index.md"]},{"number":25976,"updated_at":"2018-11-13T01:13:15Z","username":"Jdhansen41","title":"Grammar Mistakes - Fixed","filenames":["docs/how-to-work-on-coding-challenges.md"]},{"number":25977,"updated_at":"2018-11-13T01:13:17Z","username":"Zeyuzhao","title":"Dynamic programming introduction","filenames":["guide/english/algorithms/dynamic-programming/index.md"]},{"number":25980,"updated_at":"2018-11-13T01:13:19Z","username":"Zeyuzhao","title":"Prototype Chain Cycles","filenames":["guide/english/javascript/prototypes/index.md"]},{"number":25981,"updated_at":"2018-11-13T01:13:20Z","username":"abbotttp","title":"fix: update JavaScript string.prototype.trimleft article from stub","filenames":["guide/english/javascript/standard-objects/string/string-prototype-trimleft/index.md"]},{"number":25982,"updated_at":"2018-11-13T01:13:22Z","username":"aidilumarov","title":"Исправление некоторых ошибок в артикле for-loop-statements","filenames":["guide/russian/python/commenting-code/index.md","guide/russian/python/for-loop-statements/index.md"]},{"number":25983,"updated_at":"2018-11-13T01:13:24Z","username":"sedanodlr","title":"Update some literal translations in index.md","filenames":["guide/spanish/agile/the-agile-manifesto/index.md"]},{"number":25985,"updated_at":"2018-11-13T01:13:25Z","username":"Drknessfall","title":"Update index.md","filenames":["guide/portuguese/game-development/index.md"]},{"number":25986,"updated_at":"2018-11-13T01:13:27Z","username":"FENDdeveloperkei","title":"added additional info to security researchers","filenames":["guide/english/security/index.md"]},{"number":25987,"updated_at":"2018-11-13T01:13:28Z","username":"Adonking","title":"Colons must be next to whatever subtitle","filenames":["guide/spanish/algorithms/algorithm-design-patterns/behavioral-patterns/index.md"]},{"number":25988,"updated_at":"2018-11-13T01:13:30Z","username":"lavindersingh931","title":"add text \"homogeneous data\" to article","filenames":["guide/english/java/arrays/index.md"]},{"number":25989,"updated_at":"2018-11-13T01:13:32Z","username":"sedanodlr","title":"Update some literal translations in index.md","filenames":["guide/spanish/agile/test-driven-development/index.md"]},{"number":25990,"updated_at":"2018-11-13T01:13:33Z","username":"Tekcoder","title":"Add the text \"A more advanced and shorter version of the classical `i…","filenames":["guide/english/javascript/if-else-statement/index.md"]},{"number":25992,"updated_at":"2018-11-13T01:13:35Z","username":"abbotttp","title":"fix: update the JavaScript String.prototype.toLocaleUpperCase article…","filenames":["guide/english/javascript/standard-objects/string/string-prototype-tolocaleuppercase/index.md"]},{"number":25993,"updated_at":"2018-11-13T01:13:37Z","username":"Adonking","title":"\"Chef\" must not be translated into \"Cocinero\"","filenames":["guide/spanish/chef/index.md"]},{"number":25995,"updated_at":"2018-11-13T01:13:38Z","username":"FENDdeveloperkei","title":"added additional article from www.w3.org","filenames":["guide/english/accessibility/index.md"]},{"number":25996,"updated_at":"2018-11-13T01:13:40Z","username":"LosAngalex","title":"Formatted resource code for readability","filenames":["guide/spanish/css/colors/index.md"]},{"number":25997,"updated_at":"2018-11-15T19:50:49Z","username":"alanpaulprice","title":"Challenge - ES6: Write Arrow Functions with Parameters - Expanded description","filenames":["curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/write-arrow-functions-with-parameters.english.md"]},{"number":25998,"updated_at":"2018-11-13T01:13:43Z","username":"sedanodlr","title":"Update literal translations in index.md","filenames":["guide/spanish/android-development/core-components/index.md"]},{"number":26000,"updated_at":"2018-11-13T01:13:45Z","username":"zonqq","title":"Add more information about list","filenames":["guide/english/html/lists/index.md"]},{"number":26001,"updated_at":"2018-11-15T19:50:50Z","username":"Adonking","title":"Style edition","filenames":["curriculum/challenges/spanish/08-coding-interview-prep/algorithms/find-the-symmetric-difference.spanish.md"]},{"number":26003,"updated_at":"2018-11-13T01:13:48Z","username":"vicorente","title":"Translation corrections","filenames":["guide/spanish/swift/functions/index.md"]},{"number":26005,"updated_at":"2018-11-13T01:13:52Z","username":"rajdeepbharati","title":"Described char declaration alternative","filenames":["guide/english/c/data-types/index.md"]},{"number":26007,"updated_at":"2018-11-13T01:13:55Z","username":"sedanodlr","title":"Update literal translations in index.md","filenames":["guide/spanish/agile/technical-debt/index.md"]},{"number":26009,"updated_at":"2018-11-13T01:13:57Z","username":"tarunrajl","title":"Changing some little things to give better look","filenames":["guide/english/c/data-types/index.md"]},{"number":26012,"updated_at":"2018-11-13T01:14:00Z","username":"PanSem","title":"Add \".bashrc\" line to article","filenames":["guide/english/vim/basic-usage/index.md"]},{"number":26013,"updated_at":"2018-11-13T01:14:02Z","username":"xiroto","title":"Update index.md","filenames":["guide/spanish/robotics/index.md"]},{"number":26015,"updated_at":"2018-11-13T01:14:04Z","username":"Naron2Old","title":"Update index.md with correct screenshot URLs","filenames":["guide/english/developer-tools/source-code-editors/index.md"]},{"number":26018,"updated_at":"2018-11-13T01:14:07Z","username":"PanSem","title":"Add \"inheritance text\" to article","filenames":["guide/english/python/class/index.md"]},{"number":26022,"updated_at":"2018-11-13T01:14:10Z","username":"PanSem","title":"Add \"basic html text\" to article","filenames":["guide/english/html/tutorials/basic-html/index.md"]},{"number":26023,"updated_at":"2018-11-13T01:14:12Z","username":"9jaydoshi9","title":"Understanding api more","filenames":["guide/english/computer-science/what-is-an-api/index.md"]},{"number":26026,"updated_at":"2018-11-13T01:14:15Z","username":"teegr","title":"Added images and moved sections","filenames":["guide/english/computer-hardware/index.md"]},{"number":26027,"updated_at":"2018-11-15T19:50:52Z","username":"bannon-tanner","title":"updated wording to be more clear about color model","filenames":["curriculum/challenges/english/01-responsive-web-design/applied-visual-design/learn-about-tertiary-colors.english.md"]},{"number":26028,"updated_at":"2018-11-13T01:14:19Z","username":"alaminos","title":"improved first parragraph","filenames":["guide/spanish/accessibility/index.md"]},{"number":26029,"updated_at":"2018-11-13T01:14:20Z","username":"9jaydoshi9","title":"Bold examples","filenames":["guide/english/computer-science/compilers/index.md"]},{"number":26031,"updated_at":"2018-11-13T01:14:22Z","username":"PanSem","title":"Add \"image scaling code\" to article","filenames":["guide/english/css/tutorials/scaling-background-images/index.md"]},{"number":26032,"updated_at":"2018-11-13T01:14:24Z","username":"igorhideki","title":"Update translation and format text in some function article","filenames":["guide/portuguese/javascript/es6/some-function/index.md"]},{"number":26033,"updated_at":"2018-11-15T19:50:53Z","username":"melascuco","title":"Fix es-sea verb in build-javascript-objects Spanish translation","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.spanish.md"]},{"number":26035,"updated_at":"2018-11-13T01:14:27Z","username":"danielrs975","title":"Se traducen algunas partes del documento sobre hacer comentarios en P…","filenames":["guide/spanish/python/commenting-code/index.md"]},{"number":26036,"updated_at":"2018-11-13T01:14:29Z","username":"BTmathic","title":"Added more content","filenames":["guide/english/mathematics/prime-numbers/index.md"]},{"number":26038,"updated_at":"2018-11-13T01:14:30Z","username":"Praneeth16","title":"Added additional articles for SVM","filenames":["guide/english/machine-learning/support-vector-machine/index.md"]},{"number":26041,"updated_at":"2018-11-25T09:08:14Z","username":"Kldaniel98","title":"Update index.md","filenames":["guide/english/game-development/gamemaker-studio/index.md"]},{"number":26042,"updated_at":"2018-11-13T01:14:35Z","username":"alaminos","title":"correction index.md","filenames":["guide/spanish/agile/actual-time-estimation/index.md"]},{"number":26043,"updated_at":"2018-11-25T09:08:34Z","username":"subhasisbanik","title":"Update index.md","filenames":["guide/english/docker/index.md"]},{"number":26045,"updated_at":"2018-11-13T01:14:40Z","username":"Praneeth16","title":"Added a video tutorial for Pandas","filenames":["guide/english/data-science-tools/pandas/index.md"]},{"number":26046,"updated_at":"2018-11-25T09:08:57Z","username":"igorhideki","title":"Fix translated names for originals in additional javascript resources article","filenames":["guide/portuguese/javascript/additional-javascript-resources/index.md"]},{"number":26047,"updated_at":"2018-11-25T09:10:13Z","username":"KingofLegendary","title":"Added ` symbol","filenames":["guide/english/css/fonts/index.md"]},{"number":26048,"updated_at":"2018-11-25T09:10:26Z","username":"melascuco","title":"Fix weird word order in chaining-if-else-statements Spanish translation","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-javascript/chaining-if-else-statements.spanish.md"]},{"number":26050,"updated_at":"2018-11-25T09:13:55Z","username":"NaveenDA","title":"Remove unwanted comma","filenames":["curriculum/challenges/english/01-responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility.english.md"]},{"number":26051,"updated_at":"2018-11-25T09:14:16Z","username":"marciadasilva","title":"Update index.md portuguese why-react file","filenames":["guide/portuguese/react/why-react/index.md"]},{"number":26053,"updated_at":"2018-11-25T09:14:33Z","username":"melascuco","title":"Fix instructions to be coherent with the tests","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-javascript/chaining-if-else-statements.spanish.md"]},{"number":26054,"updated_at":"2018-11-25T09:15:05Z","username":"madhursk","title":"Added the link for the blockchain course","filenames":["guide/english/blockchain/index.md"]},{"number":26055,"updated_at":"2018-11-25T09:16:30Z","username":"Adonking","title":"\"icono\" to \"ícono\"","filenames":["curriculum/challenges/spanish/03-front-end-libraries/bootstrap/add-font-awesome-icons-to-our-buttons.spanish.md"]},{"number":26056,"updated_at":"2018-11-25T09:17:12Z","username":"igorhideki","title":"Update translation of titles in add borders around your elements article","filenames":["curriculum/challenges/portuguese/01-responsive-web-design/basic-css/add-borders-around-your-elements.portuguese.md"]},{"number":26057,"updated_at":"2018-11-25T09:18:00Z","username":"Praneeth16","title":"Article for unsupervised learning","filenames":["guide/english/machine-learning/unsupervised-learning/index.md"]},{"number":26058,"updated_at":"2018-11-25T09:18:20Z","username":"subhasisbanik","title":"Added detail for smart contracts","filenames":["guide/english/blockchain/smart-contracts/index.md"]},{"number":26059,"updated_at":"2018-12-05T23:46:48Z","username":"igorhaugg","title":"Update index.md portuguese guide react state","filenames":["guide/portuguese/react/state/index.md"]},{"number":26061,"updated_at":"2018-11-25T09:19:12Z","username":"subhasisbanik","title":"Added example and corrected typo","filenames":["guide/english/blockchain/types/index.md"]},{"number":26063,"updated_at":"2018-11-25T09:20:17Z","username":"Tekcoder","title":"Add the text \"In addition to the break statement which opts out of th…","filenames":["guide/english/javascript/loops/for-loop/index.md"]},{"number":26064,"updated_at":"2018-11-25T09:20:35Z","username":"igorhaugg","title":"Update index.md portuguese guide react-router","filenames":["guide/portuguese/react/react-router/index.md"]},{"number":26067,"updated_at":"2018-11-13T01:15:06Z","username":"Kldaniel98","title":"Updated version used ","filenames":["guide/english/game-development/opengl/index.md"]},{"number":26069,"updated_at":"2018-11-15T19:51:02Z","username":"melascuco","title":"Fix partial Spanish translations","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.spanish.md"]},{"number":26070,"updated_at":"2018-11-13T01:15:07Z","username":"PanSem","title":"Add \"code for transparent background image\" to article","filenames":["guide/english/css/tutorials/transparent-background-images/index.md"]},{"number":26074,"updated_at":"2018-11-13T01:15:09Z","username":"edenbelachew","title":"Update index.md","filenames":["guide/english/html/lists/index.md"]},{"number":26075,"updated_at":"2018-11-13T01:15:11Z","username":"CLima86","title":"Add print statement on line 27 to article","filenames":["guide/english/python/bool-function/index.md"]},{"number":26076,"updated_at":"2018-11-13T01:15:12Z","username":"madhursk","title":"Added the working of Bitwise OR operation","filenames":["guide/english/java/basic-operations/index.md"]},{"number":26078,"updated_at":"2018-11-13T01:15:16Z","username":"gityash01","title":"Update how-to-setup-freecodecamp-locally.md","filenames":["docs/how-to-setup-freecodecamp-locally.md"]},{"number":26079,"updated_at":"2018-11-13T01:15:18Z","username":"vicorente","title":"Translation correction","filenames":["guide/spanish/swift/view-controller/index.md"]},{"number":26081,"updated_at":"2018-11-13T01:15:19Z","username":"CLima86","title":"Add the text on line 17 for the comment block to the article","filenames":["guide/english/python/commenting-code/index.md"]},{"number":26083,"updated_at":"2018-11-13T01:15:21Z","username":"FreeRubius","title":"Gramatical changes.","filenames":["guide/spanish/game-development/minecraft-forge/index.md"]},{"number":26084,"updated_at":"2018-11-13T01:15:23Z","username":"majorkira","title":"Refined some wording and grammar.","filenames":["guide/english/css/borders/index.md"]},{"number":26085,"updated_at":"2018-11-13T01:15:25Z","username":"blisscreates","title":"Add video to explain bootstrap","filenames":["guide/english/bootstrap/index.md"]},{"number":26086,"updated_at":"2018-10-29T04:47:05Z","username":"rodrigovz","title":"Update docs for \"for loop\" in Spanish version.","filenames":["guide/spanish/c/for/index.md"]},{"number":26088,"updated_at":"2018-11-15T19:51:04Z","username":"bannon-tanner","title":"fixed typo with instructions and preview","filenames":["curriculum/challenges/english/01-responsive-web-design/css-grid/create-flexible-layouts-using-auto-fill.english.md"]},{"number":26089,"updated_at":"2018-11-13T01:15:28Z","username":"stefanhk31","title":"Added more specs to SCSS","filenames":["guide/english/sass/index.md"]},{"number":26090,"updated_at":"2018-11-13T01:15:30Z","username":"swissashley","title":"Added some translations to the file.","filenames":["guide/chinese/javascript/tutorials/finding-a-remainder-in-javascript/index.md"]},{"number":26091,"updated_at":"2018-11-13T01:15:31Z","username":"ShivashMahespalsingh","title":"Textual change","filenames":["guide/english/accessibility/index.md"]},{"number":26094,"updated_at":"2018-11-13T01:15:35Z","username":"delbertf","title":"translation correction","filenames":["guide/spanish/android-development/core-components/index.md"]},{"number":26095,"updated_at":"2018-11-13T01:15:36Z","username":"Supreetha-athreya","title":"add text and color changes to the article","filenames":["guide/english/css/colors/index.md"]},{"number":26096,"updated_at":"2018-11-13T01:15:38Z","username":"tofiqueahmedkhan","title":"Java is Open Source Programing Language.","filenames":["guide/english/java/index.md"]},{"number":26097,"updated_at":"2018-10-29T04:47:39Z","username":"Adonking","title":"Correcting text","filenames":["guide/spanish/rust/hello-world/index.md"]},{"number":26099,"updated_at":"2018-11-13T01:15:40Z","username":"MagusApex","title":"replaced awesome-button with epic-button on line 72 // this is my fir…","filenames":["guide/english/accessibility/accessibility-basics/index.md"]},{"number":26102,"updated_at":"2018-11-13T01:15:43Z","username":"XonathanG","title":"XML Typo and grammatical errors","filenames":["guide/english/xml/index.md"]},{"number":26103,"updated_at":"2018-11-13T01:15:45Z","username":"greggubarev","title":"[Guide] Added Intermediate Code Solution - Use Multiple Conditional (…","filenames":["guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/record-collection/index.md"]},{"number":26106,"updated_at":"2018-11-15T19:51:05Z","username":"blisscreates","title":"Add link for Creative Commons","filenames":["curriculum/LICENSE.md"]},{"number":26107,"updated_at":"2018-11-15T19:51:07Z","username":"melascuco","title":"Fix Mad Libs sample in Spanish translation","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-javascript/word-blanks.spanish.md"]},{"number":26108,"updated_at":"2018-11-13T01:15:50Z","username":"Kldaniel98","title":"Update index.md","filenames":["guide/english/game-development/libgdx/index.md"]},{"number":26110,"updated_at":"2018-11-13T01:15:52Z","username":"vicorente","title":"Fixed typos","filenames":["guide/spanish/swift/variables/index.md"]},{"number":26111,"updated_at":"2018-11-13T01:15:53Z","username":"Tekcoder","title":"Add the text \"x = true; console.log(type of x) // boolean ``` From t…","filenames":["guide/english/javascript/typeof/index.md"]},{"number":26116,"updated_at":"2018-11-13T01:15:55Z","username":"FreeRubius","title":"Added info on CMD","filenames":["guide/spanish/terminal-commandline/index.md"]},{"number":26118,"updated_at":"2018-11-13T01:15:57Z","username":"shardic1","title":"Edited some typos","filenames":["guide/english/cplusplus/clean-code-guidelines/index.md"]},{"number":26119,"updated_at":"2018-11-13T01:15:58Z","username":"rodrigovz","title":"Add missing subtitle","filenames":["guide/spanish/c/functions/index.md"]},{"number":26120,"updated_at":"2018-11-13T01:16:00Z","username":"delbertf","title":"translation correction","filenames":["guide/spanish/computer-hardware/cooling/index.md"]},{"number":26122,"updated_at":"2018-11-13T01:16:02Z","username":"Kldaniel98","title":"Updated additional resources and games used by the unity engine","filenames":["guide/english/game-development/unity/index.md"]},{"number":26124,"updated_at":"2018-11-13T01:16:04Z","username":"vicorente","title":"Fixed typos","filenames":["guide/spanish/swift/hello-world/index.md"]},{"number":26125,"updated_at":"2018-11-13T01:16:05Z","username":"N-Gohel","title":"example of multiple if","filenames":["guide/english/c/if/index.md"]},{"number":26127,"updated_at":"2018-12-10T01:44:19Z","username":"David-Way","title":"Adjust formatting for English css examples","filenames":["guide/english/css/background-opacity/index.md","guide/english/css/background-size/index.md","guide/english/css/background/index.md","guide/english/css/before-selector/index.md","guide/english/css/borders/index.md","guide/english/css/box-shadow/index.md","guide/english/css/breakpoints/index.md","guide/english/css/class-selector/index.md","guide/english/css/comments-in-css/index.md","guide/english/css/css-buttons/index.md","guide/english/css/css-display/index.md","guide/english/css/css-images/index.md","guide/english/css/css-preprocessors/index.md","guide/english/css/css3-backgrounds/index.md","guide/english/css/css3-gradients/index.md","guide/english/css/css3-media-queries/index.md","guide/english/css/dropdowns/index.md","guide/english/css/fonts/index.md","guide/english/css/image-galleries/index.md","guide/english/css/image-opacity-and-transparency/index.md","guide/english/css/layout/display-property/index.md","guide/english/css/layout/float-and-clear/index.md","guide/english/css/layout/grid-layout/index.md","guide/english/css/layout/the-position-property/index.md","guide/english/css/margins/index.md","guide/english/css/navigation-bars/index.md","guide/english/css/object-fit/index.md","guide/english/css/overflow/index.md","guide/english/css/padding/index.md","guide/english/css/properties/background-color-property/index.md"]},{"number":26128,"updated_at":"2018-11-13T01:16:09Z","username":"sudoshreyas","title":"updated some basic introduction of terminal","filenames":["guide/english/terminal-commandline/index.md"]},{"number":26129,"updated_at":"2018-11-13T01:16:10Z","username":"MagusApex","title":"whitespace","filenames":["guide/english/go/installing-go/windows-installer/index.md"]},{"number":26130,"updated_at":"2018-11-13T01:16:12Z","username":"alexcorrs","title":"add my text about web components to the article","filenames":["guide/english/web-components/how-do-i-use-web-components/index.md"]},{"number":26134,"updated_at":"2018-11-13T01:16:15Z","username":"Kldaniel98","title":"Added links to more information.","filenames":["guide/english/game-development/godot/index.md"]},{"number":26135,"updated_at":"2018-11-13T01:16:17Z","username":"Supreetha-athreya","title":"add new variables and codes to the article","filenames":["guide/english/javascript/booleans/index.md"]},{"number":26136,"updated_at":"2018-11-13T01:16:19Z","username":"Timmymichael","title":"Update on Web safe font","filenames":["guide/english/css/web-safe-fonts/index.md"]},{"number":26137,"updated_at":"2018-11-13T01:16:20Z","username":"delbertf","title":"translation correction","filenames":["guide/spanish/cloud-development/firebase/index.md"]},{"number":26140,"updated_at":"2018-11-13T01:16:24Z","username":"swissashley","title":"Added more description","filenames":["guide/chinese/javascript/semicolons/index.md"]},{"number":26143,"updated_at":"2018-11-13T01:16:29Z","username":"geektutor","title":"Added a new link from a FreeCodeCamp article","filenames":["guide/english/blockchain/index.md"]},{"number":26144,"updated_at":"2018-11-13T01:16:30Z","username":"shardic1","title":"Fixed some typos.","filenames":["guide/english/cplusplus/arrays/index.md"]},{"number":26145,"updated_at":"2018-11-13T01:16:32Z","username":"rodrigovz","title":"Improve translation of title and first paragraph","filenames":["guide/spanish/c/if-statements/index.md"]},{"number":26148,"updated_at":"2018-11-13T01:16:37Z","username":"Minter27","title":"Added an understanding of arrays in memory.","filenames":["guide/arabic/c/arrays/index.md"]},{"number":26149,"updated_at":"2018-11-13T01:16:39Z","username":"swissashley","title":"Added some translations","filenames":["guide/chinese/javascript/loops/for-in-loop/index.md"]},{"number":26150,"updated_at":"2018-11-15T19:51:08Z","username":"melascuco","title":"Fix the no convenient translation of return","filenames":["curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-javascript/introducing-else-statements.spanish.md"]},{"number":26152,"updated_at":"2018-11-13T01:16:42Z","username":"tofiqueahmedkhan","title":"16 * Previous","filenames":["guide/english/css/colors/index.md"]},{"number":26153,"updated_at":"2018-11-13T01:16:44Z","username":"maria-m2","title":"Added additional reference link in the index.md","filenames":["guide/english/semantic-ui/index.md"]},{"number":26154,"updated_at":"2018-11-13T01:16:45Z","username":"madhursk","title":"Added types of extensions in Joomla.","filenames":["guide/english/joomla/index.md"]},{"number":26155,"updated_at":"2018-11-13T01:16:47Z","username":"stefanhk31","title":"Edited copy for grammar/flow","filenames":["guide/english/react/index.md"]},{"number":26156,"updated_at":"2018-11-13T01:16:48Z","username":"Supreetha-athreya","title":"add the new link of tree image to the article","filenames":["guide/english/d3/index.md"]},{"number":26158,"updated_at":"2018-11-13T01:16:50Z","username":"swissashley","title":"Added new comments to return","filenames":["guide/chinese/javascript/return-statements/index.md"]},{"number":26159,"updated_at":"2018-11-13T01:16:52Z","username":"shahulbasha","title":"Java9 interface","filenames":["guide/english/java/generics/index.md","guide/english/java/interfaces/index.md"]},{"number":26160,"updated_at":"2018-11-13T01:16:54Z","username":"rodrigovz","title":"Translate a subtitle that was in English","filenames":["guide/spanish/c/pointers/index.md"]},{"number":26161,"updated_at":"2018-11-13T01:16:55Z","username":"appyark","title":"Color Picker option added","filenames":["guide/english/designer-tools/index.md"]},{"number":26162,"updated_at":"2018-11-13T01:16:57Z","username":"BladeQue12","title":"corrected line 94","filenames":["guide/english/css/colors/index.md"]},{"number":26163,"updated_at":"2018-11-13T01:16:59Z","username":"tofiqueahmedkhan","title":"Version Control: software tool(s)","filenames":["guide/english/git/index.md"]},{"number":26164,"updated_at":"2018-11-14T15:05:12Z","username":"teegr","title":"Proofreading","filenames":["guide/english/developer-ethics/the-programmers-oath/index.md"]},{"number":26165,"updated_at":"2018-11-13T01:17:02Z","username":"spellingbat","title":"grammar fixes, lines 14+20","filenames":["guide/english/agile/index.md"]},{"number":26167,"updated_at":"2018-11-13T01:17:05Z","username":"swissashley","title":"Added a note.","filenames":["guide/chinese/javascript/arrow-functions/index.md"]},{"number":26168,"updated_at":"2018-11-13T01:17:07Z","username":"madhursk","title":"Added information on XML parsers","filenames":["guide/english/xml/index.md"]},{"number":26169,"updated_at":"2018-11-13T01:17:09Z","username":"fi-carvalho","title":"Translation adjustment - 'idioma' for 'linguagem'","filenames":["guide/portuguese/computer-science/compiled-versus-interpreted-languages/index.md"]},{"number":26170,"updated_at":"2018-10-29T04:49:34Z","username":"rodrigovz","title":"Fix bad translation","filenames":["guide/spanish/c/data-types/index.md"]},{"number":26172,"updated_at":"2018-11-13T01:17:12Z","username":"BladeQue12","title":"corrected line 27","filenames":["guide/english/css/css3-colors/index.md"]},{"number":26173,"updated_at":"2018-11-13T01:17:14Z","username":"amyg123","title":"Update index.md to include Collaboration examples","filenames":["guide/english/working-in-tech/remote-versus-onsite/index.md"]},{"number":26174,"updated_at":"2018-11-13T01:17:16Z","username":"appyark","title":"Added tech related jobs and a podcast link","filenames":["guide/english/working-in-tech/index.md"]},{"number":26176,"updated_at":"2018-11-13T01:17:19Z","username":"czakarian","title":"Update index.md examples with more detail for calculating hexadecimals","filenames":["guide/english/computer-science/hexcode/index.md"]},{"number":26177,"updated_at":"2018-11-13T01:17:21Z","username":"BladeQue12","title":"corrected line 46","filenames":["guide/english/css/borders/index.md"]},{"number":26178,"updated_at":"2018-11-13T01:17:23Z","username":"isha2812","title":"added examples in brute force algorithm ","filenames":["guide/english/algorithms/brute-force-algorithms/index.md"]},{"number":26180,"updated_at":"2018-11-13T01:17:24Z","username":"Minter27","title":"Added Accessing Members of Structs.","filenames":["guide/arabic/c/structures/index.md"]},{"number":26182,"updated_at":"2018-11-13T01:17:27Z","username":"trentonblackwell","title":"Added details to HDD/SSD section","filenames":["guide/english/computer-hardware/index.md"]},{"number":26185,"updated_at":"2018-11-13T01:17:31Z","username":"alexcorrs","title":"Images and Figures Elements","filenames":["guide/english/html/iframes/index.md"]},{"number":26186,"updated_at":"2018-11-13T01:17:32Z","username":"nicolas9218","title":"Update index","filenames":["guide/english/algorithms/algorithm-performance/index.md"]},{"number":26188,"updated_at":"2018-11-13T01:17:34Z","username":"amyg123","title":"Update index.md with additional question","filenames":["guide/english/miscellaneous/interview-questions-for-junior-front-end-web-developers/index.md"]},{"number":26189,"updated_at":"2018-11-13T01:17:36Z","username":"trentonblackwell","title":"power supply section","filenames":["guide/english/computer-hardware/index.md"]},{"number":26190,"updated_at":"2018-11-13T01:17:37Z","username":"isha2812","title":"added code in c in index.md","filenames":["guide/english/algorithms/search-algorithms/linear-search/index.md"]},{"number":26194,"updated_at":"2018-11-13T01:17:39Z","username":"nicolas9218","title":"Update uppercase","filenames":["docs/italian/CONTRIBUTING.md"]},{"number":26197,"updated_at":"2018-11-13T01:17:42Z","username":"maria-m2","title":"Updated intro title , added additional resources","filenames":["guide/english/vue/index.md"]},{"number":26198,"updated_at":"2018-11-13T01:17:44Z","username":"lpjune","title":"Added note on when curly braces are necessary","filenames":["guide/english/cplusplus/conditional-operator/index.md"]},{"number":26199,"updated_at":"2018-11-13T01:17:46Z","username":"appyark","title":"Added UX Course Links to List","filenames":["guide/english/user-experience-design/index.md"]},{"number":26200,"updated_at":"2018-11-13T01:17:47Z","username":"trentonblackwell","title":"case section","filenames":["guide/english/computer-hardware/index.md"]},{"number":26201,"updated_at":"2018-11-13T01:17:49Z","username":"isha2812","title":"added about perfect binary tree in index.md","filenames":["guide/english/algorithms/binary-search-trees/index.md"]},{"number":26202,"updated_at":"2018-11-13T01:17:51Z","username":"Edulop139","title":"small grammer fix","filenames":["guide/english/java/abstract-class/index.md"]},{"number":26203,"updated_at":"2018-11-13T01:17:52Z","username":"N1ck1234","title":"Grammatical corrections on lines 6, 23, and 26.","filenames":["guide/english/css/css3-colors/index.md"]},{"number":26204,"updated_at":"2018-11-13T01:17:54Z","username":"alexcorrs","title":"Another way of using
element","filenames":["guide/english/html/elements/br-tag/index.md"]},{"number":26206,"updated_at":"2018-11-13T01:17:57Z","username":"amyg123","title":"Update index.md to stand-up questions","filenames":["guide/english/miscellaneous/what-is-a-sprint/index.md"]},{"number":26210,"updated_at":"2018-11-13T01:18:02Z","username":"jbeals12","title":"Simple grammar changes","filenames":["docs/how-to-setup-freecodecamp-locally.md"]},{"number":26212,"updated_at":"2018-11-13T01:18:04Z","username":"RGD-Consulting","title":"Updated grammar of \"third party\" to \"third-party\"","filenames":["guide/english/cloud-development/index.md"]},{"number":26213,"updated_at":"2018-11-13T01:18:06Z","username":"lpjune","title":"link to android studio installation guide","filenames":["guide/english/android-development/index.md"]},{"number":26214,"updated_at":"2018-11-13T01:18:08Z","username":"giselen","title":"improvement of 'If' documentation","filenames":["guide/portuguese/c/if/index.md"]},{"number":26216,"updated_at":"2018-11-13T01:18:11Z","username":"itsdavyjones","title":"added a concise \"usage\" section providing a little extra insight into the function of Canvas","filenames":["guide/english/canvas/index.md"]},{"number":26218,"updated_at":"2018-11-13T01:18:14Z","username":"isha2812","title":"added recursive implemenation in c++ in index.md","filenames":["guide/english/algorithms/sorting-algorithms/selection-sort/index.md"]},{"number":26219,"updated_at":"2018-11-13T01:18:16Z","username":"Edulop139","title":"grammer","filenames":["guide/english/css/graceful-degradation/index.md"]},{"number":26220,"updated_at":"2018-11-13T01:18:17Z","username":"PujanV","title":"Update index.md","filenames":["guide/english/bash/index.md"]},{"number":26222,"updated_at":"2018-11-13T01:18:19Z","username":"lpjune","title":"added references for vocab and documentation","filenames":["guide/english/android-development/index.md"]},{"number":26224,"updated_at":"2018-11-13T01:18:21Z","username":"Samuel027","title":"Additional resources.","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":26225,"updated_at":"2018-11-13T01:18:22Z","username":"vleder","title":"Add Book suggestion","filenames":["guide/english/javascript/additional-javascript-resources/index.md"]},{"number":26226,"updated_at":"2018-11-13T01:18:24Z","username":"sudoshreyas","title":"added simple expalaination and an example","filenames":["guide/english/blockchain/smart-contracts/index.md"]},{"number":26228,"updated_at":"2018-11-13T01:18:25Z","username":"rappelsen","title":"Updated index.md added acceptance criteria","filenames":["guide/english/agile/user-stories/index.md"]},{"number":26229,"updated_at":"2018-11-13T01:18:27Z","username":"amyg123","title":"update index.md with product owner vs manager","filenames":["guide/english/agile/product-owners/index.md"]},{"number":26232,"updated_at":"2018-11-13T01:18:31Z","username":"rotespferd","title":"Add instructions to run Mailhog with Docker","filenames":["docs/how-to-catch-outgoing-emails-locally.md"]},{"number":26234,"updated_at":"2018-11-13T01:18:36Z","username":"maria-m2","title":"Added additional info","filenames":["guide/english/vue-cli/index.md"]},{"number":26236,"updated_at":"2018-11-13T01:18:36Z","username":"alexcorrs","title":"How to do a timetable","filenames":["guide/english/html/tables/index.md"]},{"number":26237,"updated_at":"2018-11-13T01:18:37Z","username":"jcolynn","title":"Update index.md with additional resources","filenames":["guide/english/working-in-tech/code-reviews/index.md"]},{"number":26239,"updated_at":"2018-11-13T01:18:39Z","username":"maagu","title":"Added the description for the -i option","filenames":["guide/english/bash/bash-rm/index.md"]},{"number":26242,"updated_at":"2018-11-13T01:18:44Z","username":"greggubarev","title":"[Guide] Added Alternative Code Solution - Use Multiple Conditional (T…","filenames":["guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/profile-lookup/index.md"]},{"number":26244,"updated_at":"2018-11-13T01:18:46Z","username":"jasmeetsohal","title":"Add typescript classes guide.","filenames":["guide/english/typescript/classes/index.md"]},{"number":26246,"updated_at":"2018-11-13T01:18:49Z","username":"amyg123","title":"update index.md to include JIRA","filenames":["guide/english/agile/scrum/index.md"]},{"number":26249,"updated_at":"2018-11-13T01:18:54Z","username":"nmadar","title":"**my-notes","filenames":["guide/english/html/css-classes/index.md"]},{"number":26250,"updated_at":"2018-11-13T01:18:56Z","username":"alexcorrs","title":"Another way to use