Skip to content

Instantly share code, notes, and snippets.

View fport's full-sized avatar
🍊
osman mod on

Furkan Portakal fport

🍊
osman mod on
View GitHub Profile
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
" -----------------------------
" IMPORTANT:
" Keep Plugin commands between vundle#begin/end.
Plugin 'eslint/eslint'
// This file was initially generated by Windows Terminal 1.0.1401.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
{
"window.zoomLevel": 0,
"editor.fontSize": 20,
"tslint.jsEnable": true,
"tslint.configFile": ".eslintrc.js",
"editor.minimap.enabled": false,
"terminal.integrated.fontSize": 15,
"workbench.sideBar.location": "right",
"sync.autoUpload": false,
"sync.gist": "332d852f8e9957ccbaea01b1a2110bf3",
@fport
fport / gist:57d1d037e86847a7c5d499e322b665bd
Created December 10, 2020 20:12 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
@fport
fport / style.css
Created January 5, 2021 14:39 — forked from ozcanzaferayan/style.css
Media queries for laptop tablet and mobile
@media screen and (max-width: 1024px) {
/* Laptop (1024px) */
}
@media screen and (max-width: 768px) {
/* Tablet (768px) */
}
@media screen and (max-width: 320px) {
/* Phone (Small) */
@fport
fport / docker-help.md
Created February 7, 2021 21:37 — forked from SelmanKahya/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

function makeResizableDiv(div) {
const element = document.querySelector(div);
const resizers = document.querySelectorAll(div + ' .resizer')
for (let i = 0;i < resizers.length; i++) {
const currentResizer = resizers[i];
currentResizer.addEventListener('mousedown', function(e) {
currentResizer.addEventListener('mousemove', resize)
})
function resize(e) {
@fport
fport / semantic-commit-messages.md
Created October 14, 2021 06:55 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@fport
fport / semantic-commit-messages.md
Created October 14, 2021 06:55 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@fport
fport / vimrc.txt
Last active June 20, 2022 19:02
new vimrc
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
" -----------------------------
" IMPORTANT:
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo