To bookmark online knowledge resources and trendy new technologies in the field of computer science.
(excludig ones containing library
or framework
in their description)
Ranking | Project Name | Stars | Forks | Language | Open Issues | Description | Last Commit |
---|---|---|---|---|---|---|---|
1 | javascript | 115937 | 22144 | JavaScript | 135 | JavaScript Style Guide | 2021-11-11T15:46:43Z |
2 | create-react-app | 91397 | 23172 | JavaScript | 1331 | Set up a modern web app by running one command. | 2021-11-12T09:42:07Z |
3 | 30-seconds-of-code | 88142 | 9359 | JavaScript | 6 | Short JavaScript code snippets for all your development needs | 2021-11-03T07:55:07Z |
4 | node | 82985 | 21792 | JavaScript | 1608 | Node.js JavaScript runtime ✨🐢🚀✨ | 2021-11-13T05:50:17Z |
5 | [nodebestpr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get editor completions based on the config schema | |
"$schema" = 'https://starship.rs/config-schema.json' | |
format = """ | |
$username\ | |
$hostname\ | |
$localip\ | |
$shlvl\ | |
$singularity\ | |
$kubernetes\ |
A collection of the best resources for programming, web development, computer science and more.
DISCLAIMER: it is worth mentioning that a portion of resources (mainly courses and books) included have affiliate links or items mentioned are projects I have built that I directly benefit from their sale or use.
Books
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"name":"Frontend Development","settings":"{\"settings\":\"{\\n \\\"workbench.startupEditor\\\": \\\"none\\\",\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\n \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\"\\n}\"}","snippets":"{\"snippets\":{\"romik.code-snippets\":\"{\\n\\t\\\"Echo print\\\": {\\n\\t\\t\\\"scope\\\": \\\"php\\\",\\n\\t\\t\\\"prefix\\\": \\\"ec\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"echo '<pre>';\\\",\\n\\t\\t\\t\\\"print_r($1);\\\",\\n\\t\\t\\t\\\"echo '</pre>';\\\",\\n\\t\\t\\t\\\"exit;\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"\\\"\\n\\t},\\n\\t\\\"arrmap\\\": {\\n\\t\\t\\\"scope\\\": \\\"php\\\",\\n\\t\\t\\\"prefix\\\": \\\"arrmap\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"$$1 = array_map(function($$2){\\\",\\n\\t\\t\\t\\\"return $$2;\\\",\\n\\t\\t\\t\\\"}, $$1);\\\",\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"\\\"\\n\\t},\\n\\t\\\"arrfilter\\\": {\\n\\t\\t\\\"scope\\\": \\\"php\\\",\\n\\t\\t\\\"prefix\\\": \\\"arrfilter\\\",\\n\\t\\t\\\"body\\\": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Given an array nums, and a value val, write a function to remove | |
// all instances of val from the array and return the new length | |
const removeValInstances = (arr, val) => { | |
if(!arr) return 0; | |
if(!Array.isArray(arr)) return 0; | |
if(!val) return arr.length; | |
let newArrLength = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
//----------------beginning of editor settings--------------------\\ | |
"editor.comments.ignoreEmptyLines": false, | |
"editor.trimAutoWhitespace": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.definitionLinkOpensInPeek": true, | |
"editor.fastScrollSensitivity": 9, | |
"editor.suggest.shareSuggestSelections": true, | |
"editor.fontSize": 12, | |
"editor.fontFamily": "Consolas, 'Courier New', monospace", |
NewerOlder