Remove the feeds module
This commit is contained in:
parent
acfd1cca8d
commit
0c98be96eb
851 changed files with 840 additions and 10348 deletions
|
@ -87,14 +87,5 @@
|
|||
"processed": "\n <p>Here are two versions of some example code I've recently been working on.<\/p>\n\n<p>One has types and uses TypeScript, the other is JavaScript and has no types.<\/p>\n\n<p>Which do you prefer and why?<\/p>\n\n<h2 id=\"typescript-with-types\">TypeScript (with types)<\/h2>\n\n<pre><code class=\"js\">add(...numbers: number[]): number {\n return numbers.reduce((a: number, b: number) => a + b, 0);\n}\n\nsubtract(...numbers: number[]): number {\n let total = numbers[0];\n\n for (var i = 1, length = numbers.length; i < length; i++) {\n total -= numbers[i];\n }\n return total;\n}\n<\/code><\/pre>\n\n<h2 id=\"javascript-no-types\">JavaScript (no types)<\/h2>\n\n<pre><code class=\"js\">add(...numbers){\n return numbers.reduce((a, b) => a + b, 0);\n}\n\nsubtract(...numbers) {\n let total = numbers[0];\n\n for (var i = 1, length = numbers.length; i < length; i++) {\n total -= numbers[i];\n }\n\n return total;\n}\n<\/code><\/pre>\n\n ",
|
||||
"summary": null
|
||||
}
|
||||
],
|
||||
"feeds_item": [
|
||||
{
|
||||
"imported": "1970-01-01T00:32:50+00:00",
|
||||
"guid": null,
|
||||
"hash": "02563327b263204583e6aa95ad8c9bd2",
|
||||
"target_type": "feeds_feed",
|
||||
"target_uuid": "90c85284-7ca8-4074-9178-97ff8384fe76"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue