Skip to content

Instantly share code, notes, and snippets.

View alicankaralar's full-sized avatar

alican karalar alicankaralar

View GitHub Profile
@alicankaralar
alicankaralar / README.md
Last active September 18, 2019 14:48
JSON challenge V.1

Problem:

Create a project in which you will use the list.json or other-list.json below to render a page where you display each element as a user, and the personal infomation. Render a table of items with expand and delete functionalities, such that:

  • children of a parent should be collapsed by default, but expandable by a parent items' expand children button.
  • a parent item and it's children should be deleted with a delete button on the parent item.
@alicankaralar
alicankaralar / bd3d4befe38185704bf0fc875e9deed6|configuration.json
Last active September 8, 2020 13:39
Visual Studio Code Settings Sync Gist
{"contents":{"files":{"exclude":{"node_modules/**":true}},"eslint":{"enable":true},"npm":{"packageManager":"yarn"},"launch":{"version":"0.2.0","configurations":[{"type":"chrome","request":"launch","name":"Launch Chrome","url":"http://localhost:3000","webRoot":"${workspaceRoot}/src","userDataDir":"${workspaceRoot}/.vscode/chrome","sourceMaps":true},{"type":"node","request":"launch","name":"Launch via NPM","runtimeExecutable":"npm","windows":{"runtimeExecutable":"npm.cmd"},"runtimeArgs":["run-script","start-dev"],"port":5858,"cwd":"${workspaceRoot}"}]},"tasks":{"version":"0.1.0","command":"npm","isShellCommand":true,"suppressTaskName":true,"args":["Hello World"],"showOutput":"always","tasks":[{"args":["run-script","start-dev"],"problemMatcher":[{"owner":"custom","pattern":[],"watching":{"activeOnStart":true,"beginsPattern":"webpack: bundle is now INVALID","endsPattern":"webpack: bundle is now VALID"}},{"owner":"javascript","severity":"error","applyTo":"closedDocuments","fileLocation":"absolute","pattern":[{"reg
// Place your settings in this file to overwrite the default settings
{
"todoIgnore": ["node_modules"],
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"workbench.iconTheme": "simple-icons",
"workbench.colorTheme": "Material Theme",
PUBLIC GIST!!!!!!! =====