Tool

What is a Headless CMS?

https://hygraph.com/learn/headless-cms https://www.sanity.io/headless-cms What is a Headless CMS? A headless CMS is a content management system that provides a way to author content, but instead of web page rendering, it provides the content as data over an API. A headless CMS works by giving editors an interface for managing content while providing APIs for developers to …

What is a Headless CMS? Read More »

Syn SublimeText settings

Install Package: Ctrl+Shift+P and install Sync Settings package Edit config. Ctrl+Shift+P and SyncSetting Edit config … Insert: Token & gist ID Ctrl+Shift+P & SyncSetting: Download settings or Create & Upload setting

VS code setting.json

Ctrl + Shift + P > Open Setting (JSON) { “terminal.integrated.shell.windows”: “C:\\Program Files\\Git\\bin\\bash.exe”, “workbench.editorAssociations”: [], “emmet.includeLanguages”: { “javascript”: “javascriptreact” }, “emmet.triggerExpansionOnTab”: true, “css.completion.completePropertyWithSemicolon”: false, “less.completion.completePropertyWithSemicolon”: false, “editor.formatOnPaste”: true, // format code on paste “editor.formatOnType”: true, // format code when you hit save “editor.formatOnSave”: true, // Ensures there’s only one blank line at the end of …

VS code setting.json Read More »

Emmet hotkey sublime text 3

Go to SublimeText3 > Preference > Key binding Insert snipping code below [ { “keys”: [“ctrl+t”], “command”: “new_file” }, { “keys”: [“shift+alt+e”], “command”: “open_dir”, “args”: {“dir”: “$file_path”, “file”: “$file_name”}}, { “keys”: [“ctrl+alt+p”], “command”: “prompt_select_workspace”}, { “keys”: [“shift+alt+f”], “command”: “reindent” , “args”: { “single_line”: false }}, { “keys”: [“alt+r”], “command”: “reveal_in_side_bar”}, { “keys”: [“shift+ctrl+g”], “command”: “emmet_wrap_with_abbreviation”, …

Emmet hotkey sublime text 3 Read More »