Skip to content

Instantly share code, notes, and snippets.

View cihat's full-sized avatar
💻
writing code🚀

Cihat SALİK cihat

💻
writing code🚀
View GitHub Profile
@cihat
cihat / futag-code-night
Last active January 8, 2022 17:38
Links to `Futag Code Night` Front-end presentation
1. Frontend RoadMap Link --> https://roadmap.sh/frontend
2. The Odin Project --> https://www.theodinproject.com/
3. Basic Linux Command --> https://hackr.io/blog/basic-linux-commands
4. An Intro to Git and GitHub --> https://medium.com/@abhishekj/an-intro-to-git-and-github-1a0e2c7e3a2f
5. Basic Git Command --> https://www.edureka.co/blog/git-commands-with-example/
6. WSL(Windows Subsystem for Linux) --> https://pureinfotech.com/install-windows-subsystem-linux-2-windows-10/
7. Windows Terminal --> https://medium.com/@hjgraca/style-your-windows-terminal-and-wsl2-like-a-pro-9a2e1ad4c9d0
8. Awesome Repo --> https://github.com/sindresorhus/awesome
9. JavaScript Documentations --> https://developer.mozilla.org/en-US/
10. JavaScript 30 --> https://javascript30.com/
@cihat
cihat / backend roadmap
Created October 15, 2021 07:52
This is my roadmap for backend
Backend:
Servisler:
API:
RESTFULL:
-CRUD OPERASYONLARI
-Request Limiting
-Header Request Validation
-Authentication(JWT)
-pagination
-APIDOC
@cihat
cihat / .prettierrc
Created September 12, 2021 12:08 — forked from ilkaydnc/prettier-config.md
My Prettier Config
With React
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"printWidth": 80,
"singleQuote": true,
"useTabs": false,
"quoteProps": "as-needed",
"bracketSpacing": true,
@cihat
cihat / list of must read books
Created August 24, 2021 08:10
list of must read books
Growing OO Software by Tests
The Software Craftsman
Refactoring (v2 released)
GoF Design Patterns
Working Effectively w/ Legacy Code
DD by Example
Accelerate
Continuous Delivery
Pro JS Design Patterns
You don't know JS (1st Edition)
module.exports = {
root: true,
env: {
node: true
},
extends: [
// "plugin:vue/base"
"plugin:vue/recommended"
// "plugin:vue/essential",
// "plugin:vue/strongly-recommended"
@cihat
cihat / iterm2.md
Created June 6, 2021 12:56 — forked from squarism/iterm2.md
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
New Tab + T
Close Tab or Window + W (same as many mac apps)
Go to Tab + Number Key (ie: ⌘2 is 2nd tab)
Go to Split Pane by Direction + Option + Arrow Key
Cycle iTerm Windows + backtick (true of all mac apps and works with desktops/mission control)
* {
padding: 0;
margin: 0;
list-style: none;
border: none;
text-decoration: none;
box-sizing: border-box;
-webkit-overflow-scrolling: touch;
}
@cihat
cihat / vs-code-user-setting.md
Created May 25, 2021 10:18 — forked from xgqfrms-GitHub/vs-code-user-setting.md
VS code setting.json & React JS
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma":"none",
"bracketSpacing": true,
"jsxBracketSameLine": false
}
@cihat
cihat / branch conflict
Created April 30, 2021 10:12
branch conflict
git add -A
git stash
git checkout master
git pull origin master
git checkout development(branch)