From f7c2cc7ae4c54899f9f5cb9df5c06190934594a6 Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Sat, 14 May 2022 15:55:07 +0300 Subject: [PATCH] Add covers to snippets --- snippets/JSONtoCSV.md | 1 + snippets/UUIDGeneratorBrowser.md | 1 + snippets/accumulate.md | 1 + snippets/addMinutesToDate.md | 1 + snippets/addMultipleEvents.md | 1 + snippets/arithmeticProgression.md | 1 + snippets/arrayToCSV.md | 1 + snippets/assertValidKeys.md | 1 + snippets/averageBy.md | 1 + snippets/binarySearch.md | 1 + snippets/bindAll.md | 1 + snippets/chainAsync.md | 1 + snippets/changeLightness.md | 1 + snippets/commonKeys.md | 1 + snippets/compactJoin.md | 1 + snippets/converge.md | 1 + snippets/countBy.md | 1 + snippets/countSubstrings.md | 1 + snippets/createEventHub.md | 1 + snippets/cycleGenerator.md | 1 + snippets/debouncePromise.md | 1 + snippets/decapitalize.md | 1 + snippets/deepGet.md | 1 + snippets/deepMapKeys.md | 1 + snippets/defaults.md | 1 + snippets/differenceBy.md | 1 + snippets/digitize.md | 1 + snippets/dropWhile.md | 1 + snippets/escapeHTML.md | 1 + snippets/extendHex.md | 1 + snippets/findKey.md | 1 + snippets/findKeys.md | 1 + snippets/findLastIndex.md | 1 + snippets/findLastKey.md | 1 + snippets/flags.md | 1 + snippets/flattenObject.md | 1 + snippets/forOwn.md | 1 + snippets/forOwnRight.md | 1 + snippets/formToObject.md | 1 + snippets/formatSeconds.md | 1 + snippets/frequencies.md | 1 + snippets/functions.md | 1 + snippets/gcd.md | 1 + snippets/getElementsBiggerThanViewport.md | 1 + snippets/getImages.md | 1 + snippets/getSiblings.md | 1 + snippets/groupBy.md | 1 + snippets/hasKey.md | 1 + snippets/hexToRGB.md | 1 + snippets/indexBy.md | 1 + snippets/indexOn.md | 1 + snippets/intersectionBy.md | 1 + snippets/invertKeyValues.md | 1 + snippets/isAnagram.md | 1 + snippets/isDateValid.md | 1 + snippets/join.md | 1 + snippets/mapConsecutive.md | 1 + snippets/mapKeys.md | 1 + snippets/mapObject.md | 1 + snippets/mapString.md | 1 + snippets/mapValues.md | 1 + snippets/matchesWith.md | 1 + snippets/mostFrequent.md | 1 + snippets/objectFromPairs.md | 1 + snippets/objectToEntries.md | 1 + snippets/objectToQueryString.md | 1 + snippets/omit.md | 1 + snippets/omitBy.md | 1 + snippets/on.md | 1 + snippets/once.md | 1 + snippets/orderBy.md | 1 + snippets/orderWith.md | 1 + snippets/overArgs.md | 1 + snippets/palindrome.md | 1 + snippets/partition.md | 1 + snippets/partitionBy.md | 1 + snippets/permutations.md | 1 + snippets/pickBy.md | 1 + snippets/pipeAsyncFunctions.md | 1 + snippets/pipeFunctions.md | 1 + snippets/powerset.md | 1 + snippets/prefix.md | 1 + snippets/pull.md | 1 + snippets/pullAtIndex.md | 1 + snippets/queryStringToObject.md | 1 + snippets/rearg.md | 1 + snippets/reduceSuccessive.md | 1 + snippets/reducedFilter.md | 1 + snippets/remove.md | 1 + snippets/removeEventListenerAll.md | 1 + snippets/renameKeys.md | 1 + snippets/renderElement.md | 1 + snippets/repeatGenerator.md | 1 + snippets/replaceLast.md | 1 + snippets/reverseNumber.md | 1 + snippets/reverseString.md | 1 + snippets/runAsync.md | 1 + snippets/runPromisesInSeries.md | 1 + snippets/sampleSize.md | 1 + snippets/selectionSort.md | 1 + snippets/serializeForm.md | 1 + snippets/show.md | 1 + snippets/sortCharactersInString.md | 1 + snippets/sortedLastIndexBy.md | 1 + snippets/spreadOver.md | 1 + snippets/stringPermutations.md | 1 + snippets/sumBy.md | 1 + snippets/sumPower.md | 1 + snippets/swapCase.md | 1 + snippets/symbolizeKeys.md | 1 + snippets/symmetricDifferenceBy.md | 1 + snippets/takeRightUntil.md | 1 + snippets/takeRightWhile.md | 1 + snippets/takeUntil.md | 1 + snippets/takeWhile.md | 1 + snippets/toCamelCase.md | 1 + snippets/toHSLArray.md | 1 + snippets/toHSLObject.md | 1 + snippets/toHash.md | 1 + snippets/toISOStringWithTimezone.md | 1 + snippets/toKebabCase.md | 1 + snippets/toPairs.md | 1 + snippets/toPascalCase.md | 1 + snippets/toRGBArray.md | 1 + snippets/toRGBObject.md | 1 + snippets/toSnakeCase.md | 1 + snippets/toTitleCase.md | 1 + snippets/transform.md | 1 + snippets/uncurry.md | 1 + snippets/unescapeHTML.md | 1 + snippets/unflattenObject.md | 1 + snippets/unfold.md | 1 + snippets/unionBy.md | 1 + snippets/uniqueElementsBy.md | 1 + snippets/uniqueElementsByRight.md | 1 + snippets/walkThrough.md | 1 + snippets/words.md | 1 + snippets/zip.md | 1 + snippets/zipObject.md | 1 + snippets/zipWith.md | 1 + 140 files changed, 140 insertions(+) diff --git a/snippets/JSONtoCSV.md b/snippets/JSONtoCSV.md index df2aecfa9..d4d411ae5 100644 --- a/snippets/JSONtoCSV.md +++ b/snippets/JSONtoCSV.md @@ -2,6 +2,7 @@ title: JSON to CSV tags: array,string,object expertise: advanced +cover: blog_images/horse-sunset.jpg firstSeen: 2018-07-06T20:25:46+03:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/UUIDGeneratorBrowser.md b/snippets/UUIDGeneratorBrowser.md index 2e1458014..ce69907cb 100644 --- a/snippets/UUIDGeneratorBrowser.md +++ b/snippets/UUIDGeneratorBrowser.md @@ -2,6 +2,7 @@ title: Generate UUID (browser) tags: browser,random expertise: intermediate +cover: blog_images/mountain-lake-cottage.jpg firstSeen: 2017-12-29T09:47:10+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/accumulate.md b/snippets/accumulate.md index 2123ac21e..98793ba2a 100644 --- a/snippets/accumulate.md +++ b/snippets/accumulate.md @@ -3,6 +3,7 @@ title: Partial sum array tags: math,array expertise: intermediate author: chalarangelo +cover: blog_images/river-house-lights.jpg firstSeen: 2020-05-04T12:20:46+03:00 lastUpdated: 2022-01-30T13:10:13+02:00 --- diff --git a/snippets/addMinutesToDate.md b/snippets/addMinutesToDate.md index 4d353e5bf..58515ed84 100644 --- a/snippets/addMinutesToDate.md +++ b/snippets/addMinutesToDate.md @@ -2,6 +2,7 @@ title: Add minutes to date tags: date expertise: intermediate +cover: blog_images/lake-trees.jpg firstSeen: 2020-11-28T19:27:46+02:00 lastUpdated: 2020-11-28T19:27:46+02:00 --- diff --git a/snippets/addMultipleEvents.md b/snippets/addMultipleEvents.md index c21785c2a..2570aa2d0 100644 --- a/snippets/addMultipleEvents.md +++ b/snippets/addMultipleEvents.md @@ -2,6 +2,7 @@ title: Add multiple listeners tags: browser,event expertise: intermediate +cover: blog_images/balloons.jpg firstSeen: 2020-10-08T00:40:30+03:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/arithmeticProgression.md b/snippets/arithmeticProgression.md index 7c183cbc1..1bfc57e31 100644 --- a/snippets/arithmeticProgression.md +++ b/snippets/arithmeticProgression.md @@ -3,6 +3,7 @@ title: Arithmetic progression tags: math,algorithm expertise: beginner author: maciv +cover: blog_images/u-got-this.jpg firstSeen: 2020-10-04T11:37:07+03:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/arrayToCSV.md b/snippets/arrayToCSV.md index c541587c9..e9a1b203e 100644 --- a/snippets/arrayToCSV.md +++ b/snippets/arrayToCSV.md @@ -2,6 +2,7 @@ title: Array to CSV tags: array,string expertise: intermediate +cover: blog_images/sunrise-over-city.jpg firstSeen: 2018-06-27T20:26:43+03:00 lastUpdated: 2020-11-03T21:55:08+02:00 --- diff --git a/snippets/assertValidKeys.md b/snippets/assertValidKeys.md index 48f41ff29..701178203 100644 --- a/snippets/assertValidKeys.md +++ b/snippets/assertValidKeys.md @@ -3,6 +3,7 @@ title: Assert object keys are valid tags: object expertise: intermediate author: chalarangelo +cover: blog_images/river-flow.jpg firstSeen: 2021-07-18T05:00:00-04:00 --- diff --git a/snippets/averageBy.md b/snippets/averageBy.md index 7f6764970..9efb84ce0 100644 --- a/snippets/averageBy.md +++ b/snippets/averageBy.md @@ -2,6 +2,7 @@ title: Mapped array average tags: math,array expertise: intermediate +cover: blog_images/rock-climbing.jpg firstSeen: 2018-01-11T12:25:54+02:00 lastUpdated: 2020-10-21T21:17:45+03:00 --- diff --git a/snippets/binarySearch.md b/snippets/binarySearch.md index a350f993e..133feaaed 100644 --- a/snippets/binarySearch.md +++ b/snippets/binarySearch.md @@ -3,6 +3,7 @@ title: Binary search tags: algorithm,array expertise: beginner author: chalarangelo +cover: blog_images/zen-indoors.jpg firstSeen: 2020-12-28T12:35:44+02:00 lastUpdated: 2020-12-29T13:06:47+02:00 --- diff --git a/snippets/bindAll.md b/snippets/bindAll.md index 403a5ccc1..00cfd138a 100644 --- a/snippets/bindAll.md +++ b/snippets/bindAll.md @@ -2,6 +2,7 @@ title: Bind all object methods tags: object,function expertise: intermediate +cover: blog_images/laptop-with-code.jpg firstSeen: 2018-01-26T14:14:53+02:00 lastUpdated: 2020-11-03T22:11:18+02:00 --- diff --git a/snippets/chainAsync.md b/snippets/chainAsync.md index d319f3428..ef1de1117 100644 --- a/snippets/chainAsync.md +++ b/snippets/chainAsync.md @@ -2,6 +2,7 @@ title: Chain async functions tags: function expertise: intermediate +cover: blog_images/tram-car.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 --- diff --git a/snippets/changeLightness.md b/snippets/changeLightness.md index 556349917..d82d724d5 100644 --- a/snippets/changeLightness.md +++ b/snippets/changeLightness.md @@ -2,6 +2,7 @@ title: Change color lightness tags: string,browser,regexp expertise: intermediate +cover: blog_images/aerial-view-port.jpg firstSeen: 2020-10-30T17:38:31+02:00 lastUpdated: 2020-10-31T16:37:54+02:00 --- diff --git a/snippets/commonKeys.md b/snippets/commonKeys.md index c997b7e17..8b2c301aa 100644 --- a/snippets/commonKeys.md +++ b/snippets/commonKeys.md @@ -3,6 +3,7 @@ title: Common keys tags: object expertise: intermediate author: chalarangelo +cover: blog_images/symmetry-cloudy-mountain.jpg firstSeen: 2022-04-23T05:00:00-04:00 --- diff --git a/snippets/compactJoin.md b/snippets/compactJoin.md index 3cd43dd8d..e27bc7b0b 100644 --- a/snippets/compactJoin.md +++ b/snippets/compactJoin.md @@ -3,6 +3,7 @@ title: Compact and join array tags: array expertise: intermediate author: chalarangelo +cover: blog_images/racoon.jpg firstSeen: 2022-04-08T05:00:00-04:00 --- diff --git a/snippets/converge.md b/snippets/converge.md index 53577b712..32e42e3a0 100644 --- a/snippets/converge.md +++ b/snippets/converge.md @@ -3,6 +3,7 @@ title: Converge branching functions tags: function expertise: intermediate excerpt: Converges a list of branching functions into a single function and returns the result. +cover: blog_images/cherry-trees.jpg firstSeen: 2018-02-07T12:23:04+02:00 lastUpdated: 2021-01-08T00:23:44+02:00 --- diff --git a/snippets/countBy.md b/snippets/countBy.md index 7f80cfdd6..61a39ff99 100644 --- a/snippets/countBy.md +++ b/snippets/countBy.md @@ -2,6 +2,7 @@ title: Count grouped elements tags: array,object expertise: intermediate +cover: blog_images/tools.jpg firstSeen: 2018-01-11T13:45:53+02:00 lastUpdated: 2020-11-03T22:11:18+02:00 --- diff --git a/snippets/countSubstrings.md b/snippets/countSubstrings.md index d963d277e..6a9840e3b 100644 --- a/snippets/countSubstrings.md +++ b/snippets/countSubstrings.md @@ -3,6 +3,7 @@ title: Count substrings of string tags: string,algorithm expertise: beginner author: chalarangelo +cover: blog_images/obelisk.jpg firstSeen: 2020-12-31T13:58:51+02:00 lastUpdated: 2021-01-08T00:23:44+02:00 --- diff --git a/snippets/createEventHub.md b/snippets/createEventHub.md index 3c856dda4..c22925450 100644 --- a/snippets/createEventHub.md +++ b/snippets/createEventHub.md @@ -2,6 +2,7 @@ title: Create event hub tags: browser,event expertise: advanced +cover: blog_images/city-view.jpg firstSeen: 2018-01-05T15:07:26+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 --- diff --git a/snippets/cycleGenerator.md b/snippets/cycleGenerator.md index 595f7153f..5eb87e786 100644 --- a/snippets/cycleGenerator.md +++ b/snippets/cycleGenerator.md @@ -3,6 +3,7 @@ title: Cycle generator tags: function,generator expertise: advanced author: chalarangelo +cover: blog_images/secret-tree.jpg firstSeen: 2020-10-11T17:05:38+03:00 lastUpdated: 2020-10-11T17:05:38+03:00 --- diff --git a/snippets/debouncePromise.md b/snippets/debouncePromise.md index 8c167a7b3..49271c506 100644 --- a/snippets/debouncePromise.md +++ b/snippets/debouncePromise.md @@ -3,6 +3,7 @@ title: Debounce promise tags: function,promise expertise: advanced excerpt: Creates a debounced function that returns a promise. +cover: blog_images/ice.jpg firstSeen: 2020-10-10T21:09:04+03:00 lastUpdated: 2020-10-19T18:51:03+03:00 --- diff --git a/snippets/decapitalize.md b/snippets/decapitalize.md index 20eba2f82..3c388ee70 100644 --- a/snippets/decapitalize.md +++ b/snippets/decapitalize.md @@ -2,6 +2,7 @@ title: Decapitalize string tags: string expertise: intermediate +cover: blog_images/forest-balcony.jpg firstSeen: 2018-01-11T11:58:40+02:00 lastUpdated: 2020-11-01T20:50:57+02:00 --- diff --git a/snippets/deepGet.md b/snippets/deepGet.md index 20862b8e4..f01a8370e 100644 --- a/snippets/deepGet.md +++ b/snippets/deepGet.md @@ -2,6 +2,7 @@ title: Get nested value in object based on array of keys tags: object expertise: intermediate +cover: blog_images/mask-quiet.jpg firstSeen: 2019-05-09T13:30:52+03:00 lastUpdated: 2020-10-19T18:51:03+03:00 --- diff --git a/snippets/deepMapKeys.md b/snippets/deepMapKeys.md index ce0ce877c..2bed17a55 100644 --- a/snippets/deepMapKeys.md +++ b/snippets/deepMapKeys.md @@ -2,6 +2,7 @@ title: Deep map object keys tags: object,recursion expertise: advanced +cover: blog_images/duck-plants.jpg firstSeen: 2018-11-29T15:22:53+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 --- diff --git a/snippets/defaults.md b/snippets/defaults.md index bf0a1161b..178362bf4 100644 --- a/snippets/defaults.md +++ b/snippets/defaults.md @@ -2,6 +2,7 @@ title: Assign default values for object properties tags: object expertise: intermediate +cover: blog_images/boats.jpg firstSeen: 2018-01-19T13:51:05+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/differenceBy.md b/snippets/differenceBy.md index 0b204fabd..839125732 100644 --- a/snippets/differenceBy.md +++ b/snippets/differenceBy.md @@ -2,6 +2,7 @@ title: Mapped array difference tags: array expertise: intermediate +cover: blog_images/keyboard.jpg firstSeen: 2018-01-24T11:49:03+02:00 lastUpdated: 2020-10-19T18:52:00+03:00 --- diff --git a/snippets/digitize.md b/snippets/digitize.md index 12015de7d..461498a1c 100644 --- a/snippets/digitize.md +++ b/snippets/digitize.md @@ -2,6 +2,7 @@ title: Digitize number tags: math expertise: beginner +cover: blog_images/industrial-tokyo.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-18T14:58:09+03:00 --- diff --git a/snippets/dropWhile.md b/snippets/dropWhile.md index a31461ad0..f6adc9727 100644 --- a/snippets/dropWhile.md +++ b/snippets/dropWhile.md @@ -2,6 +2,7 @@ title: Drop list elements from the left based on function tags: array expertise: intermediate +cover: blog_images/colorful-lounge.jpg firstSeen: 2018-01-26T12:23:18+02:00 lastUpdated: 2020-10-19T18:51:03+03:00 --- diff --git a/snippets/escapeHTML.md b/snippets/escapeHTML.md index c65302cb1..97e05ebba 100644 --- a/snippets/escapeHTML.md +++ b/snippets/escapeHTML.md @@ -2,6 +2,7 @@ title: Escape HTML tags: string,browser,regexp expertise: intermediate +cover: blog_images/periscope.jpg firstSeen: 2017-12-29T15:09:21+02:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/extendHex.md b/snippets/extendHex.md index 1a606e9c6..109a1cdd6 100644 --- a/snippets/extendHex.md +++ b/snippets/extendHex.md @@ -2,6 +2,7 @@ title: Extend hex value tags: string expertise: intermediate +cover: blog_images/red-mountain.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 --- diff --git a/snippets/findKey.md b/snippets/findKey.md index 0b6c7c0f2..bec7e965f 100644 --- a/snippets/findKey.md +++ b/snippets/findKey.md @@ -2,6 +2,7 @@ title: Find first matching key tags: object expertise: intermediate +cover: blog_images/succulent-crowd.jpg firstSeen: 2018-01-23T18:23:20+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/findKeys.md b/snippets/findKeys.md index 81cb688a9..cb4a5cbc8 100644 --- a/snippets/findKeys.md +++ b/snippets/findKeys.md @@ -2,6 +2,7 @@ title: Find matching keys tags: object expertise: beginner +cover: blog_images/beach-riders.jpg firstSeen: 2020-10-25T09:59:13+02:00 lastUpdated: 2020-11-15T14:43:44+02:00 --- diff --git a/snippets/findLastIndex.md b/snippets/findLastIndex.md index 7c723e14b..c024ed481 100644 --- a/snippets/findLastIndex.md +++ b/snippets/findLastIndex.md @@ -2,6 +2,7 @@ title: Find last matching index tags: array expertise: intermediate +cover: blog_images/taking-photos.jpg firstSeen: 2018-01-24T13:01:51+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/findLastKey.md b/snippets/findLastKey.md index 7478146bd..679dfa177 100644 --- a/snippets/findLastKey.md +++ b/snippets/findLastKey.md @@ -2,6 +2,7 @@ title: Find last matching key tags: object expertise: intermediate +cover: blog_images/sparkles.jpg firstSeen: 2018-01-23T18:23:20+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/flags.md b/snippets/flags.md index 97838203b..91e3d78d9 100644 --- a/snippets/flags.md +++ b/snippets/flags.md @@ -3,6 +3,7 @@ title: Array to flags object tags: array,object expertise: intermediate author: chalarangelo +cover: blog_images/glass-blowing.jpg firstSeen: 2022-04-12T05:00:00-04:00 --- diff --git a/snippets/flattenObject.md b/snippets/flattenObject.md index 3a988f840..bfee5a156 100644 --- a/snippets/flattenObject.md +++ b/snippets/flattenObject.md @@ -2,6 +2,7 @@ title: Flatten object tags: object,recursion expertise: advanced +cover: blog_images/lighthouse.jpg firstSeen: 2018-02-07T11:30:18+02:00 lastUpdated: 2020-10-19T18:51:03+03:00 --- diff --git a/snippets/forOwn.md b/snippets/forOwn.md index c5ff5e9f0..bb3936e33 100644 --- a/snippets/forOwn.md +++ b/snippets/forOwn.md @@ -2,6 +2,7 @@ title: Iterate over object's own properties tags: object expertise: intermediate +cover: blog_images/blank-card.jpg firstSeen: 2018-01-18T16:45:56+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/forOwnRight.md b/snippets/forOwnRight.md index fc3796067..e6d036ef8 100644 --- a/snippets/forOwnRight.md +++ b/snippets/forOwnRight.md @@ -2,6 +2,7 @@ title: Iterate over object's own properties in reverse tags: object expertise: intermediate +cover: blog_images/sea-view.jpg firstSeen: 2018-01-18T16:45:56+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 --- diff --git a/snippets/formToObject.md b/snippets/formToObject.md index ec4c25964..c698361d0 100644 --- a/snippets/formToObject.md +++ b/snippets/formToObject.md @@ -2,6 +2,7 @@ title: Form to object tags: browser,object expertise: intermediate +cover: blog_images/sail-away-2.jpg firstSeen: 2019-03-13T14:50:06+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 --- diff --git a/snippets/formatSeconds.md b/snippets/formatSeconds.md index bbefbc5fc..b18da0e53 100644 --- a/snippets/formatSeconds.md +++ b/snippets/formatSeconds.md @@ -2,6 +2,7 @@ title: Number of seconds to ISO format tags: date,math,string expertise: intermediate +cover: blog_images/rocky-mountains.jpg firstSeen: 2021-05-09T12:44:55+03:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/frequencies.md b/snippets/frequencies.md index 42cbf90f3..73457e1c0 100644 --- a/snippets/frequencies.md +++ b/snippets/frequencies.md @@ -3,6 +3,7 @@ title: Value frequencies tags: array,object expertise: intermediate author: chalarangelo +cover: blog_images/tropical-waterfall.jpg firstSeen: 2020-01-03T15:32:35+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 --- diff --git a/snippets/functions.md b/snippets/functions.md index 37add5cd2..a6ca0bf1d 100644 --- a/snippets/functions.md +++ b/snippets/functions.md @@ -2,6 +2,7 @@ title: Function property names tags: object,function expertise: advanced +cover: blog_images/palm-tree-house.jpg firstSeen: 2018-01-11T21:18:58+02:00 lastUpdated: 2020-10-20T11:21:07+03:00 --- diff --git a/snippets/gcd.md b/snippets/gcd.md index 17eb71e52..4bc8c7d2e 100644 --- a/snippets/gcd.md +++ b/snippets/gcd.md @@ -2,6 +2,7 @@ title: Greatest common divisor tags: math,algorithm,recursion expertise: intermediate +cover: blog_images/flower-pond.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-12-29T12:36:50+02:00 --- diff --git a/snippets/getElementsBiggerThanViewport.md b/snippets/getElementsBiggerThanViewport.md index 489dad50c..4f2272c6e 100644 --- a/snippets/getElementsBiggerThanViewport.md +++ b/snippets/getElementsBiggerThanViewport.md @@ -2,6 +2,7 @@ title: Get elements bigger than viewport tags: browser expertise: intermediate +cover: blog_images/case-study.jpg firstSeen: 2020-10-06T17:41:22+03:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/getImages.md b/snippets/getImages.md index 1bad2cde0..0a3ea446d 100644 --- a/snippets/getImages.md +++ b/snippets/getImages.md @@ -2,6 +2,7 @@ title: Get all images in element tags: browser expertise: intermediate +cover: blog_images/portal-timelapse.jpg firstSeen: 2018-10-07T16:24:36+03:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/getSiblings.md b/snippets/getSiblings.md index 2c4840e90..5d4ec58a4 100644 --- a/snippets/getSiblings.md +++ b/snippets/getSiblings.md @@ -3,6 +3,7 @@ title: Array of element's siblings tags: browser expertise: intermediate author: chalarangelo +cover: blog_images/little-white-flowers.jpg firstSeen: 2020-08-07T15:31:48+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 --- diff --git a/snippets/groupBy.md b/snippets/groupBy.md index ac532a6c3..8f30ab1a9 100644 --- a/snippets/groupBy.md +++ b/snippets/groupBy.md @@ -2,6 +2,7 @@ title: Group array elements tags: array,object expertise: intermediate +cover: blog_images/man-cup-laptop.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/hasKey.md b/snippets/hasKey.md index 71f4ee510..153b5c8f2 100644 --- a/snippets/hasKey.md +++ b/snippets/hasKey.md @@ -3,6 +3,7 @@ title: Check if object has key tags: object expertise: intermediate author: chalarangelo +cover: blog_images/cloudy-mountaintop.jpg firstSeen: 2019-10-15T15:45:13+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 --- diff --git a/snippets/hexToRGB.md b/snippets/hexToRGB.md index 9fd9eccba..c05468a00 100644 --- a/snippets/hexToRGB.md +++ b/snippets/hexToRGB.md @@ -2,6 +2,7 @@ title: Hex to RGB tags: string,math expertise: advanced +cover: blog_images/umbrellas.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 --- diff --git a/snippets/indexBy.md b/snippets/indexBy.md index 5d80d37e3..7579ba7c4 100644 --- a/snippets/indexBy.md +++ b/snippets/indexBy.md @@ -3,6 +3,7 @@ title: Index array based on function tags: array,object expertise: intermediate author: chalarangelo +cover: blog_images/guitar-living-room.jpg firstSeen: 2021-06-20T05:00:00-04:00 --- diff --git a/snippets/indexOn.md b/snippets/indexOn.md index 0641ee6c3..6b73f5b67 100644 --- a/snippets/indexOn.md +++ b/snippets/indexOn.md @@ -3,6 +3,7 @@ title: Array to object based on key tags: array,object expertise: intermediate author: chalarangelo +cover: blog_images/lavender-shelf.jpg firstSeen: 2021-06-27T05:00:00-04:00 --- diff --git a/snippets/intersectionBy.md b/snippets/intersectionBy.md index e04224d61..d54f918c9 100644 --- a/snippets/intersectionBy.md +++ b/snippets/intersectionBy.md @@ -2,6 +2,7 @@ title: Array intersection based on function tags: array expertise: intermediate +cover: blog_images/cobbled-street.jpg firstSeen: 2018-01-24T12:53:18+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 --- diff --git a/snippets/invertKeyValues.md b/snippets/invertKeyValues.md index 7dee39ff4..c67d04940 100644 --- a/snippets/invertKeyValues.md +++ b/snippets/invertKeyValues.md @@ -2,6 +2,7 @@ title: Invert object tags: object expertise: advanced +cover: blog_images/pineapple-on-green.jpg firstSeen: 2018-01-01T17:33:46+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 --- diff --git a/snippets/isAnagram.md b/snippets/isAnagram.md index dff768dec..f119dccda 100644 --- a/snippets/isAnagram.md +++ b/snippets/isAnagram.md @@ -2,6 +2,7 @@ title: String is anagram tags: string,regexp expertise: intermediate +cover: blog_images/new-york.jpg firstSeen: 2018-02-19T15:47:47+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 --- diff --git a/snippets/isDateValid.md b/snippets/isDateValid.md index dd771ce4c..5b21046fc 100644 --- a/snippets/isDateValid.md +++ b/snippets/isDateValid.md @@ -2,6 +2,7 @@ title: Check if date is valid tags: date expertise: intermediate +cover: blog_images/two-cities.jpg firstSeen: 2020-10-08T16:39:23+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 --- diff --git a/snippets/join.md b/snippets/join.md index 871165dfb..e8d941bb7 100644 --- a/snippets/join.md +++ b/snippets/join.md @@ -2,6 +2,7 @@ title: Join array into string tags: array expertise: intermediate +cover: blog_images/couch-laptop.jpg firstSeen: 2018-01-01T12:18:40+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/mapConsecutive.md b/snippets/mapConsecutive.md index a8fce36b4..60cbc3b31 100644 --- a/snippets/mapConsecutive.md +++ b/snippets/mapConsecutive.md @@ -3,6 +3,7 @@ title: Map consecutive elements tags: array expertise: intermediate author: chalarangelo +cover: blog_images/cold-mountains.jpg firstSeen: 2021-08-08T05:00:00-04:00 --- diff --git a/snippets/mapKeys.md b/snippets/mapKeys.md index 64b8fd683..583e0a888 100644 --- a/snippets/mapKeys.md +++ b/snippets/mapKeys.md @@ -2,6 +2,7 @@ title: Map object keys tags: object expertise: intermediate +cover: blog_images/rocky-mountains-2.jpg firstSeen: 2018-01-11T20:33:14+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/mapObject.md b/snippets/mapObject.md index 365e4cc9c..b8e11df18 100644 --- a/snippets/mapObject.md +++ b/snippets/mapObject.md @@ -2,6 +2,7 @@ title: Map array to object tags: array,object expertise: intermediate +cover: blog_images/two-lighthouses.jpg firstSeen: 2017-12-18T12:11:58+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/mapString.md b/snippets/mapString.md index 171ef2c66..7bcda04db 100644 --- a/snippets/mapString.md +++ b/snippets/mapString.md @@ -2,6 +2,7 @@ title: Map string tags: string expertise: intermediate +cover: blog_images/budapest-palace.jpg firstSeen: 2018-07-14T10:59:56+03:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/mapValues.md b/snippets/mapValues.md index ef085d100..2a008d4f8 100644 --- a/snippets/mapValues.md +++ b/snippets/mapValues.md @@ -2,6 +2,7 @@ title: Map object values tags: object expertise: intermediate +cover: blog_images/feathers.jpg firstSeen: 2018-01-11T20:33:14+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/matchesWith.md b/snippets/matchesWith.md index 441291d30..676fbe368 100644 --- a/snippets/matchesWith.md +++ b/snippets/matchesWith.md @@ -2,6 +2,7 @@ title: Matches object properties based on function tags: object expertise: intermediate +cover: undefined firstSeen: 2018-01-23T20:17:32+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/mostFrequent.md b/snippets/mostFrequent.md index dcc6b8753..d129820be 100644 --- a/snippets/mostFrequent.md +++ b/snippets/mostFrequent.md @@ -3,6 +3,7 @@ title: Most frequent element in array tags: array expertise: intermediate author: chalarangelo +cover: blog_images/clock.jpg firstSeen: 2020-01-03T15:32:46+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 --- diff --git a/snippets/objectFromPairs.md b/snippets/objectFromPairs.md index 6e2daa0fb..cf390bc00 100644 --- a/snippets/objectFromPairs.md +++ b/snippets/objectFromPairs.md @@ -2,6 +2,7 @@ title: Object from pairs tags: object,array expertise: beginner +cover: blog_images/silver-flat-screen.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/objectToEntries.md b/snippets/objectToEntries.md index 0809926fc..23d01aa91 100644 --- a/snippets/objectToEntries.md +++ b/snippets/objectToEntries.md @@ -3,6 +3,7 @@ title: Object to entries tags: object,array expertise: beginner author: chalarangelo +cover: blog_images/shapes.jpg firstSeen: 2020-04-16T11:10:13+03:00 lastUpdated: 2020-09-15T16:28:04+03:00 --- diff --git a/snippets/objectToQueryString.md b/snippets/objectToQueryString.md index df81981c1..26aa71875 100644 --- a/snippets/objectToQueryString.md +++ b/snippets/objectToQueryString.md @@ -2,6 +2,7 @@ title: Object to query string tags: object expertise: advanced +cover: blog_images/standing-stones.jpg firstSeen: 2019-10-11T23:16:05+03:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/omit.md b/snippets/omit.md index ba8a5f00a..02dbb2861 100644 --- a/snippets/omit.md +++ b/snippets/omit.md @@ -2,6 +2,7 @@ title: Omit object properties tags: object expertise: intermediate +cover: blog_images/broken-screen.jpg firstSeen: 2018-01-19T13:14:46+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/omitBy.md b/snippets/omitBy.md index bc1ebed49..c62425ac9 100644 --- a/snippets/omitBy.md +++ b/snippets/omitBy.md @@ -2,6 +2,7 @@ title: Omit object properties based on function tags: object expertise: intermediate +cover: blog_images/arrow-functions.jpg firstSeen: 2018-01-19T13:23:45+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/on.md b/snippets/on.md index 7f8b23ccf..9f243a9df 100644 --- a/snippets/on.md +++ b/snippets/on.md @@ -2,6 +2,7 @@ title: Add event listener to element tags: browser,event expertise: intermediate +cover: blog_images/wooden-bowl.jpg firstSeen: 2018-01-05T14:33:48+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/once.md b/snippets/once.md index 2646ea0f1..d984e6f7c 100644 --- a/snippets/once.md +++ b/snippets/once.md @@ -2,6 +2,7 @@ title: Call function once tags: function expertise: intermediate +cover: blog_images/pink-flower-tree.jpg firstSeen: 2018-01-02T00:40:46+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/orderBy.md b/snippets/orderBy.md index 055c17243..759c756da 100644 --- a/snippets/orderBy.md +++ b/snippets/orderBy.md @@ -2,6 +2,7 @@ title: Order array of objects tags: object,array expertise: advanced +cover: blog_images/volcano-sunset.jpg firstSeen: 2017-12-20T11:33:20+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/orderWith.md b/snippets/orderWith.md index 5f0788c43..297802a58 100644 --- a/snippets/orderWith.md +++ b/snippets/orderWith.md @@ -2,6 +2,7 @@ title: Order array of objects based on property order tags: array,object expertise: intermediate +cover: blog_images/san-francisco-skyline.jpg firstSeen: 2020-10-04T12:11:10+03:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/overArgs.md b/snippets/overArgs.md index 4f45cbf04..bb70141be 100644 --- a/snippets/overArgs.md +++ b/snippets/overArgs.md @@ -2,6 +2,7 @@ title: Transform function arguments tags: function expertise: intermediate +cover: blog_images/flower-shape-sunset.jpg firstSeen: 2018-01-28T14:54:16+02:00 lastUpdated: 2020-10-21T21:54:53+03:00 --- diff --git a/snippets/palindrome.md b/snippets/palindrome.md index 7b4ef49de..f8a00a5da 100644 --- a/snippets/palindrome.md +++ b/snippets/palindrome.md @@ -2,6 +2,7 @@ title: Palindrome tags: string expertise: intermediate +cover: blog_images/bridge-drop.jpg firstSeen: 2017-12-17T16:41:31+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/partition.md b/snippets/partition.md index ea84e6334..30c788b34 100644 --- a/snippets/partition.md +++ b/snippets/partition.md @@ -2,6 +2,7 @@ title: Partition array in two tags: array,object expertise: intermediate +cover: blog_images/sunflowers.jpg firstSeen: 2018-01-08T16:58:23+02:00 lastUpdated: 2020-11-03T21:46:13+02:00 --- diff --git a/snippets/partitionBy.md b/snippets/partitionBy.md index 959d10725..39c442ed2 100644 --- a/snippets/partitionBy.md +++ b/snippets/partitionBy.md @@ -2,6 +2,7 @@ title: Partition array tags: array,object expertise: advanced +cover: blog_images/people-on-beach.jpg firstSeen: 2020-05-20T17:48:13+03:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/permutations.md b/snippets/permutations.md index 7f655e0a8..5cb837349 100644 --- a/snippets/permutations.md +++ b/snippets/permutations.md @@ -2,6 +2,7 @@ title: Array permutations tags: array,algorithm,recursion expertise: advanced +cover: blog_images/body-of-water.jpg firstSeen: 2018-02-19T15:47:47+02:00 lastUpdated: 2020-12-28T13:49:24+02:00 --- diff --git a/snippets/pickBy.md b/snippets/pickBy.md index a9973ce42..5ef033b9e 100644 --- a/snippets/pickBy.md +++ b/snippets/pickBy.md @@ -2,6 +2,7 @@ title: Pick matching object keys tags: object expertise: intermediate +cover: blog_images/lake-bench.jpg firstSeen: 2018-01-19T13:23:45+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/pipeAsyncFunctions.md b/snippets/pipeAsyncFunctions.md index 8596fd44c..754915c1d 100644 --- a/snippets/pipeAsyncFunctions.md +++ b/snippets/pipeAsyncFunctions.md @@ -2,6 +2,7 @@ title: Pipe async functions tags: function,promise expertise: intermediate +cover: blog_images/new-york-skyline.jpg firstSeen: 2018-01-27T18:17:44+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/pipeFunctions.md b/snippets/pipeFunctions.md index fc87f7e1d..457f9a14c 100644 --- a/snippets/pipeFunctions.md +++ b/snippets/pipeFunctions.md @@ -2,6 +2,7 @@ title: Pipe functions tags: function expertise: intermediate +cover: blog_images/goat-wooden-cottage.jpg firstSeen: 2017-12-26T19:02:27+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/powerset.md b/snippets/powerset.md index 967c3479e..28115574c 100644 --- a/snippets/powerset.md +++ b/snippets/powerset.md @@ -2,6 +2,7 @@ title: Powerset tags: math,algorithm expertise: beginner +cover: blog_images/new-plant.jpg firstSeen: 2017-12-07T14:41:33+02:00 lastUpdated: 2021-09-27T15:27:07+02:00 --- diff --git a/snippets/prefix.md b/snippets/prefix.md index 0e8130d44..6f3f10f89 100644 --- a/snippets/prefix.md +++ b/snippets/prefix.md @@ -2,6 +2,7 @@ title: Prefix CSS property tags: browser expertise: intermediate +cover: blog_images/cancel-typographer.jpg firstSeen: 2018-03-08T15:22:54+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/pull.md b/snippets/pull.md index 6bd2c7ecc..5131bffaf 100644 --- a/snippets/pull.md +++ b/snippets/pull.md @@ -2,6 +2,7 @@ title: Pull values from array tags: array expertise: intermediate +cover: blog_images/last-light.jpg firstSeen: 2017-12-17T16:41:31+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/pullAtIndex.md b/snippets/pullAtIndex.md index c9166d2f2..90a770cd7 100644 --- a/snippets/pullAtIndex.md +++ b/snippets/pullAtIndex.md @@ -2,6 +2,7 @@ title: Pull values from array at index tags: array expertise: advanced +cover: blog_images/bug.jpg firstSeen: 2017-12-19T00:42:47+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/queryStringToObject.md b/snippets/queryStringToObject.md index dc7336dc5..18b7223c7 100644 --- a/snippets/queryStringToObject.md +++ b/snippets/queryStringToObject.md @@ -2,6 +2,7 @@ title: Query string to object tags: object expertise: intermediate +cover: blog_images/dark-mode.jpg firstSeen: 2020-10-20T20:25:32+03:00 lastUpdated: 2020-11-03T22:11:18+02:00 --- diff --git a/snippets/rearg.md b/snippets/rearg.md index c67286a91..5a1aa3dcf 100644 --- a/snippets/rearg.md +++ b/snippets/rearg.md @@ -2,6 +2,7 @@ title: Rearrange function arguments tags: function expertise: intermediate +cover: blog_images/island-corridor.jpg firstSeen: 2018-01-28T15:04:21+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/reduceSuccessive.md b/snippets/reduceSuccessive.md index a4b31160f..d6a000e3a 100644 --- a/snippets/reduceSuccessive.md +++ b/snippets/reduceSuccessive.md @@ -2,6 +2,7 @@ title: Array of successive values tags: array expertise: intermediate +cover: blog_images/laptop-view.jpg firstSeen: 2018-01-24T16:38:08+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/reducedFilter.md b/snippets/reducedFilter.md index 8a43f1d83..e55c053b7 100644 --- a/snippets/reducedFilter.md +++ b/snippets/reducedFilter.md @@ -2,6 +2,7 @@ title: Filter matching and unspecified values tags: array expertise: intermediate +cover: blog_images/little-bird.jpg firstSeen: 2017-12-22T09:37:36+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/remove.md b/snippets/remove.md index 634523458..f1490e266 100644 --- a/snippets/remove.md +++ b/snippets/remove.md @@ -2,6 +2,7 @@ title: Remove matching elements from array tags: array expertise: intermediate +cover: blog_images/highlands.jpg firstSeen: 2017-12-17T16:41:31+02:00 lastUpdated: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/removeEventListenerAll.md b/snippets/removeEventListenerAll.md index 6c91f58f4..f4b4df2e1 100644 --- a/snippets/removeEventListenerAll.md +++ b/snippets/removeEventListenerAll.md @@ -3,6 +3,7 @@ title: Remove event listeners from target tags: browser,event expertise: intermediate author: chalarangelo +cover: blog_images/snowy-mountains.jpg firstSeen: 2021-04-22T08:53:29+03:00 lastUpdated: 2021-04-22T08:53:29+03:00 --- diff --git a/snippets/renameKeys.md b/snippets/renameKeys.md index 44dec8c5a..d98cc304c 100644 --- a/snippets/renameKeys.md +++ b/snippets/renameKeys.md @@ -2,6 +2,7 @@ title: Rename object keys tags: object expertise: intermediate +cover: blog_images/fallen-leaves.jpg firstSeen: 2018-04-10T20:22:39+03:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/renderElement.md b/snippets/renderElement.md index d6591ec81..0c6b230d9 100644 --- a/snippets/renderElement.md +++ b/snippets/renderElement.md @@ -3,6 +3,7 @@ title: Render DOM element tags: browser,recursion expertise: advanced author: chalarangelo +cover: blog_images/maple-leaf-palette.jpg firstSeen: 2020-05-03T11:55:42+03:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/repeatGenerator.md b/snippets/repeatGenerator.md index 1145bbbba..cc190eb99 100644 --- a/snippets/repeatGenerator.md +++ b/snippets/repeatGenerator.md @@ -3,6 +3,7 @@ title: Repeat generator tags: function,generator expertise: advanced author: chalarangelo +cover: blog_images/white-flower.jpg firstSeen: 2020-10-11T17:05:48+03:00 lastUpdated: 2020-10-11T17:05:48+03:00 --- diff --git a/snippets/replaceLast.md b/snippets/replaceLast.md index dc9891d4c..f70595102 100644 --- a/snippets/replaceLast.md +++ b/snippets/replaceLast.md @@ -3,6 +3,7 @@ title: Replace last occuerence in string tags: string,regexp expertise: advanced author: chalarangelo +cover: blog_images/waves.jpg firstSeen: 2021-04-22T09:01:22+03:00 lastUpdated: 2021-04-22T09:01:22+03:00 --- diff --git a/snippets/reverseNumber.md b/snippets/reverseNumber.md index d4a6b1237..d28853531 100644 --- a/snippets/reverseNumber.md +++ b/snippets/reverseNumber.md @@ -2,6 +2,7 @@ title: Reverse number tags: math,string expertise: beginner +cover: blog_images/walking.jpg firstSeen: 2020-07-17T16:41:28+03:00 lastUpdated: 2020-09-18T21:19:23+03:00 --- diff --git a/snippets/reverseString.md b/snippets/reverseString.md index 825a3b0ba..4718c7fa6 100644 --- a/snippets/reverseString.md +++ b/snippets/reverseString.md @@ -2,6 +2,7 @@ title: Reverse string tags: string expertise: beginner +cover: blog_images/type-stamps.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-18T14:58:09+03:00 --- diff --git a/snippets/runAsync.md b/snippets/runAsync.md index b56ea598e..290467bd8 100644 --- a/snippets/runAsync.md +++ b/snippets/runAsync.md @@ -3,6 +3,7 @@ title: Run function asynchronously tags: browser,function,promise expertise: advanced excerpt: Runs a function in a separate thread by using a Web Worker. +cover: blog_images/purple-sunset.jpg firstSeen: 2018-01-02T02:17:52+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/runPromisesInSeries.md b/snippets/runPromisesInSeries.md index 1f8b7ed40..080d4ae13 100644 --- a/snippets/runPromisesInSeries.md +++ b/snippets/runPromisesInSeries.md @@ -2,6 +2,7 @@ title: Run promises in series tags: function,promise expertise: intermediate +cover: blog_images/sail-away.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/sampleSize.md b/snippets/sampleSize.md index a1ff92c0c..15e46fc2a 100644 --- a/snippets/sampleSize.md +++ b/snippets/sampleSize.md @@ -2,6 +2,7 @@ title: N random elements in array tags: array,random expertise: intermediate +cover: blog_images/tree-roots.jpg firstSeen: 2017-12-31T13:56:28+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/selectionSort.md b/snippets/selectionSort.md index 3bd8242c4..4498e25e5 100644 --- a/snippets/selectionSort.md +++ b/snippets/selectionSort.md @@ -3,6 +3,7 @@ title: Selection sort tags: algorithm,array expertise: intermediate author: chalarangelo +cover: blog_images/violin.jpg firstSeen: 2020-12-27T22:22:44+02:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/serializeForm.md b/snippets/serializeForm.md index dfa4e26fd..80cfb23cd 100644 --- a/snippets/serializeForm.md +++ b/snippets/serializeForm.md @@ -2,6 +2,7 @@ title: Serialize form tags: browser,string expertise: intermediate +cover: blog_images/down-the-stream.jpg firstSeen: 2019-03-13T14:29:45+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/show.md b/snippets/show.md index dda158300..c3149e09b 100644 --- a/snippets/show.md +++ b/snippets/show.md @@ -2,6 +2,7 @@ title: Show elements tags: browser,css expertise: beginner +cover: blog_images/green-plant.jpg firstSeen: 2017-12-28T23:33:21+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/sortCharactersInString.md b/snippets/sortCharactersInString.md index a7080fe2e..ad8d8b08d 100644 --- a/snippets/sortCharactersInString.md +++ b/snippets/sortCharactersInString.md @@ -2,6 +2,7 @@ title: Sort characters in string tags: string expertise: beginner +cover: blog_images/purple-flower-field.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/sortedLastIndexBy.md b/snippets/sortedLastIndexBy.md index f08005c31..84450ed46 100644 --- a/snippets/sortedLastIndexBy.md +++ b/snippets/sortedLastIndexBy.md @@ -2,6 +2,7 @@ title: Last insertion index in sorted array based on function tags: array expertise: intermediate +cover: blog_images/hard-disk.jpg firstSeen: 2018-01-26T13:39:09+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/spreadOver.md b/snippets/spreadOver.md index f94795120..077800a84 100644 --- a/snippets/spreadOver.md +++ b/snippets/spreadOver.md @@ -2,6 +2,7 @@ title: Convert function from variadic tags: function expertise: intermediate +cover: blog_images/tent-stars.jpg firstSeen: 2017-12-22T04:33:57+02:00 lastUpdated: 2021-06-13T13:50:25+03:00 --- diff --git a/snippets/stringPermutations.md b/snippets/stringPermutations.md index 8b02f7dc5..ed39604d8 100644 --- a/snippets/stringPermutations.md +++ b/snippets/stringPermutations.md @@ -2,6 +2,7 @@ title: String permutations tags: string,recursion expertise: advanced +cover: blog_images/mac-and-coffee.jpg firstSeen: 2018-02-19T15:47:47+02:00 lastUpdated: 2020-11-15T17:13:42+02:00 --- diff --git a/snippets/sumBy.md b/snippets/sumBy.md index f1e896ba0..cca418e3e 100644 --- a/snippets/sumBy.md +++ b/snippets/sumBy.md @@ -2,6 +2,7 @@ title: Mapped array sum tags: math,array expertise: intermediate +cover: blog_images/avocado-slices.jpg firstSeen: 2018-01-11T12:25:54+02:00 lastUpdated: 2020-11-03T22:11:18+02:00 --- diff --git a/snippets/sumPower.md b/snippets/sumPower.md index aae77b977..beb5b296d 100644 --- a/snippets/sumPower.md +++ b/snippets/sumPower.md @@ -2,6 +2,7 @@ title: Sum of powers in range tags: math expertise: intermediate +cover: blog_images/boat-port.jpg firstSeen: 2018-01-01T15:49:25+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/swapCase.md b/snippets/swapCase.md index c92d5a7a7..aaf0815b2 100644 --- a/snippets/swapCase.md +++ b/snippets/swapCase.md @@ -3,6 +3,7 @@ title: Swapcase string tags: string expertise: beginner author: maciv +cover: blog_images/mountain-lake-2.jpg firstSeen: 2020-11-15T13:09:03+02:00 lastUpdated: 2020-11-15T13:09:03+02:00 --- diff --git a/snippets/symbolizeKeys.md b/snippets/symbolizeKeys.md index 0b986558f..667fb0294 100644 --- a/snippets/symbolizeKeys.md +++ b/snippets/symbolizeKeys.md @@ -3,6 +3,7 @@ title: Symbolize object keys tags: object expertise: advanced author: chalarangelo +cover: blog_images/rocky-lake.jpg firstSeen: 2021-08-01T05:00:00-04:00 --- diff --git a/snippets/symmetricDifferenceBy.md b/snippets/symmetricDifferenceBy.md index 921c1d0d7..8b1f30cfa 100644 --- a/snippets/symmetricDifferenceBy.md +++ b/snippets/symmetricDifferenceBy.md @@ -2,6 +2,7 @@ title: Mapped array symmetric difference tags: array expertise: intermediate +cover: blog_images/river-houses.jpg firstSeen: 2018-01-24T11:59:02+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/takeRightUntil.md b/snippets/takeRightUntil.md index d20b12f6b..d62ecd1a7 100644 --- a/snippets/takeRightUntil.md +++ b/snippets/takeRightUntil.md @@ -2,6 +2,7 @@ title: Remove list elements from the end until condition is met tags: array expertise: intermediate +cover: blog_images/fruit-feast.jpg firstSeen: 2020-11-29T12:04:53+02:00 lastUpdated: 2020-11-29T12:04:53+02:00 --- diff --git a/snippets/takeRightWhile.md b/snippets/takeRightWhile.md index be5387864..57821d9e2 100644 --- a/snippets/takeRightWhile.md +++ b/snippets/takeRightWhile.md @@ -2,6 +2,7 @@ title: Remove list elements from the end while condition is met tags: array expertise: intermediate +cover: blog_images/beach-pineapple.jpg firstSeen: 2018-01-26T12:55:31+02:00 lastUpdated: 2020-11-29T12:04:53+02:00 --- diff --git a/snippets/takeUntil.md b/snippets/takeUntil.md index c74704474..d9cd7b340 100644 --- a/snippets/takeUntil.md +++ b/snippets/takeUntil.md @@ -2,6 +2,7 @@ title: Remove list elements until condition is met tags: array expertise: intermediate +cover: blog_images/purple-sunset-beach.jpg firstSeen: 2020-11-29T12:04:53+02:00 lastUpdated: 2020-11-29T12:04:53+02:00 --- diff --git a/snippets/takeWhile.md b/snippets/takeWhile.md index 99e27166f..32309daba 100644 --- a/snippets/takeWhile.md +++ b/snippets/takeWhile.md @@ -2,6 +2,7 @@ title: Remove list elements while condition is met tags: array expertise: intermediate +cover: blog_images/colors-mural.jpg firstSeen: 2018-01-26T12:55:31+02:00 lastUpdated: 2020-11-29T12:04:53+02:00 --- diff --git a/snippets/toCamelCase.md b/snippets/toCamelCase.md index 3738bf412..e1d0ab90e 100644 --- a/snippets/toCamelCase.md +++ b/snippets/toCamelCase.md @@ -2,6 +2,7 @@ title: Camelcase string tags: string,regexp expertise: intermediate +cover: blog_images/meteora.jpg firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/toHSLArray.md b/snippets/toHSLArray.md index 992158507..0870a8429 100644 --- a/snippets/toHSLArray.md +++ b/snippets/toHSLArray.md @@ -2,6 +2,7 @@ title: HSL to array tags: string,browser,regexp expertise: beginner +cover: blog_images/kettle-laptop.jpg firstSeen: 2020-10-16T21:46:29+03:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/toHSLObject.md b/snippets/toHSLObject.md index 7e7170446..a1da65d8c 100644 --- a/snippets/toHSLObject.md +++ b/snippets/toHSLObject.md @@ -2,6 +2,7 @@ title: HSL to object tags: string,browser,regexp expertise: intermediate +cover: blog_images/measuring.jpg firstSeen: 2020-10-16T21:48:31+03:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/toHash.md b/snippets/toHash.md index 1abc196e3..1df1c6919 100644 --- a/snippets/toHash.md +++ b/snippets/toHash.md @@ -2,6 +2,7 @@ title: Iterable to hash tags: array expertise: intermediate +cover: blog_images/sleepy-cat.jpg firstSeen: 2018-05-31T02:14:04+03:00 lastUpdated: 2022-01-30T12:45:30+03:00 --- diff --git a/snippets/toISOStringWithTimezone.md b/snippets/toISOStringWithTimezone.md index 7da52e157..496be874e 100644 --- a/snippets/toISOStringWithTimezone.md +++ b/snippets/toISOStringWithTimezone.md @@ -2,6 +2,7 @@ title: Date to ISO format with timezone tags: date expertise: intermediate +cover: blog_images/pop-of-green.jpg firstSeen: 2020-10-07T09:25:05+03:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/toKebabCase.md b/snippets/toKebabCase.md index c789ab965..40981755f 100644 --- a/snippets/toKebabCase.md +++ b/snippets/toKebabCase.md @@ -2,6 +2,7 @@ title: Kebabcase string tags: string,regexp expertise: intermediate +cover: blog_images/old-consoles.jpg firstSeen: 2017-12-22T19:14:51+02:00 lastUpdated: 2020-12-16T13:42:27+02:00 --- diff --git a/snippets/toPairs.md b/snippets/toPairs.md index d71e0d826..4a063e7ed 100644 --- a/snippets/toPairs.md +++ b/snippets/toPairs.md @@ -3,6 +3,7 @@ title: Object to pairs tags: object,array expertise: intermediate author: chalarangelo +cover: blog_images/purple-leaves.jpg firstSeen: 2020-03-23T15:07:23+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/toPascalCase.md b/snippets/toPascalCase.md index 192a0eb60..194f6f6a9 100644 --- a/snippets/toPascalCase.md +++ b/snippets/toPascalCase.md @@ -2,6 +2,7 @@ title: Pascalcase string tags: string,regexp expertise: intermediate +cover: blog_images/camera-zoom.jpg firstSeen: 2021-09-08T19:21:13+00:00 --- diff --git a/snippets/toRGBArray.md b/snippets/toRGBArray.md index 8b65d0207..d34b518da 100644 --- a/snippets/toRGBArray.md +++ b/snippets/toRGBArray.md @@ -2,6 +2,7 @@ title: RGB to array tags: string,browser,regexp expertise: beginner +cover: blog_images/greek-coffee.jpg firstSeen: 2020-10-14T20:36:18+03:00 lastUpdated: 2021-06-13T13:50:25+03:00 --- diff --git a/snippets/toRGBObject.md b/snippets/toRGBObject.md index 9117de073..6d58e0ccd 100644 --- a/snippets/toRGBObject.md +++ b/snippets/toRGBObject.md @@ -3,6 +3,7 @@ title: RGB to object tags: string,browser,regexp expertise: intermediate author: chalarangelo +cover: blog_images/organizer.jpg firstSeen: 2020-10-14T21:58:14+03:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/toSnakeCase.md b/snippets/toSnakeCase.md index f276ba053..878c05304 100644 --- a/snippets/toSnakeCase.md +++ b/snippets/toSnakeCase.md @@ -2,6 +2,7 @@ title: Snakecase string tags: string,regexp expertise: intermediate +cover: blog_images/rustic-cup.jpg firstSeen: 2017-12-22T18:13:22+02:00 lastUpdated: 2021-06-28T15:27:44+03:00 --- diff --git a/snippets/toTitleCase.md b/snippets/toTitleCase.md index 73aaab4f0..85c63655a 100644 --- a/snippets/toTitleCase.md +++ b/snippets/toTitleCase.md @@ -2,6 +2,7 @@ title: Titlecase string tags: string,regexp expertise: intermediate +cover: blog_images/plant-candle.jpg firstSeen: 2018-10-19T04:49:34+03:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/transform.md b/snippets/transform.md index bde861a66..899b724c6 100644 --- a/snippets/transform.md +++ b/snippets/transform.md @@ -2,6 +2,7 @@ title: Transform object tags: object expertise: intermediate +cover: blog_images/fishermen.jpg firstSeen: 2018-01-12T13:55:49+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/uncurry.md b/snippets/uncurry.md index d1a07ebdc..c899bf85c 100644 --- a/snippets/uncurry.md +++ b/snippets/uncurry.md @@ -2,6 +2,7 @@ title: Uncurry function tags: function expertise: advanced +cover: blog_images/perfect-timing.jpg firstSeen: 2018-02-14T11:56:44+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/unescapeHTML.md b/snippets/unescapeHTML.md index 19600e854..38938d1ec 100644 --- a/snippets/unescapeHTML.md +++ b/snippets/unescapeHTML.md @@ -2,6 +2,7 @@ title: Unescape HTML tags: string,browser,regexp expertise: beginner +cover: blog_images/little-tree.jpg firstSeen: 2017-12-29T15:09:10+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/unflattenObject.md b/snippets/unflattenObject.md index 695645d2a..09d2844c9 100644 --- a/snippets/unflattenObject.md +++ b/snippets/unflattenObject.md @@ -2,6 +2,7 @@ title: Unflatten object tags: object expertise: advanced +cover: blog_images/purple-flower-bunch.jpg firstSeen: 2018-02-07T11:30:18+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/unfold.md b/snippets/unfold.md index ad47ed4e6..916bfee50 100644 --- a/snippets/unfold.md +++ b/snippets/unfold.md @@ -2,6 +2,7 @@ title: Unfold array tags: function,array expertise: intermediate +cover: blog_images/dog-waiting.jpg firstSeen: 2018-01-24T16:22:14+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 --- diff --git a/snippets/unionBy.md b/snippets/unionBy.md index 27d93a323..c0bda634c 100644 --- a/snippets/unionBy.md +++ b/snippets/unionBy.md @@ -2,6 +2,7 @@ title: Mapped array union tags: array expertise: intermediate +cover: blog_images/lake-church.jpg firstSeen: 2018-01-24T12:19:41+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/uniqueElementsBy.md b/snippets/uniqueElementsBy.md index 3dfad33b1..de7324cf7 100644 --- a/snippets/uniqueElementsBy.md +++ b/snippets/uniqueElementsBy.md @@ -2,6 +2,7 @@ title: Unique values in array based on function tags: array expertise: intermediate +cover: blog_images/sunrise-over-mountains.jpg firstSeen: 2018-07-18T20:49:07+03:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/uniqueElementsByRight.md b/snippets/uniqueElementsByRight.md index 3383e879a..228fae3fc 100644 --- a/snippets/uniqueElementsByRight.md +++ b/snippets/uniqueElementsByRight.md @@ -2,6 +2,7 @@ title: Reversed unique values in array based on function tags: array expertise: intermediate +cover: blog_images/beach-from-above.jpg firstSeen: 2018-07-18T20:49:07+03:00 lastUpdated: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/walkThrough.md b/snippets/walkThrough.md index e781fa09e..69d84d1de 100644 --- a/snippets/walkThrough.md +++ b/snippets/walkThrough.md @@ -3,6 +3,7 @@ title: Walk through object tags: object,recursion,generator expertise: advanced author: chalarangelo +cover: blog_images/bridge.jpg firstSeen: 2020-12-31T13:03:15+02:00 lastUpdated: 2021-11-15T13:18:18+02:00 --- diff --git a/snippets/words.md b/snippets/words.md index d1bd24d2d..94460d794 100644 --- a/snippets/words.md +++ b/snippets/words.md @@ -2,6 +2,7 @@ title: String to words tags: string,regexp expertise: intermediate +cover: blog_images/sea-view-2.jpg firstSeen: 2017-12-21T14:50:57+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/zip.md b/snippets/zip.md index a9dda56f8..205b47fe3 100644 --- a/snippets/zip.md +++ b/snippets/zip.md @@ -2,6 +2,7 @@ title: Group array elements tags: array expertise: intermediate +cover: blog_images/orange-flower.jpg firstSeen: 2017-12-17T16:41:31+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/zipObject.md b/snippets/zipObject.md index 2c150cf45..bd5cbdbdc 100644 --- a/snippets/zipObject.md +++ b/snippets/zipObject.md @@ -2,6 +2,7 @@ title: Group array into object tags: array,object expertise: intermediate +cover: blog_images/baloons-field.jpg firstSeen: 2017-12-21T00:55:18+02:00 lastUpdated: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/zipWith.md b/snippets/zipWith.md index 831c22e36..ac37117c0 100644 --- a/snippets/zipWith.md +++ b/snippets/zipWith.md @@ -2,6 +2,7 @@ title: Group array elements based on function tags: array expertise: advanced +cover: blog_images/switzerland-night.jpg firstSeen: 2018-01-20T17:21:34+02:00 lastUpdated: 2020-11-03T21:46:13+02:00 ---