Skip to content

Instantly share code, notes, and snippets.

@polodev
polodev / .vimrc
Created August 1, 2023 05:20 — forked from JeffreyWay/.vimrc
My .vimrc file
set nocompatible " Disable vi-compatibility
set t_Co=256
colorscheme xoria256
set guifont=menlo\ for\ powerline:h16
set guioptions-=T " Removes top toolbar
set guioptions-=r " Removes right hand scroll bar
set go-=L " Removes left hand scroll bar
set linespace=15
<x-layout>
<x-section>
<x-tabs active="First">
<x-tab name="First">
First content goes here.
</x-tab>
<x-tab name="Second">
Second content goes here.
</x-tab>
@polodev
polodev / .vimrc
Created August 1, 2023 05:14 — forked from JeffreyWay/.vimrc
Laracasts: Vim Mastery - Episode 3 .vimrc progress
syntax enable
colorscheme desert
"-------------General Settings--------------"
set backspace=indent,eol,start "Make backspace behave like every other editor.
let mapleader = ',' "The default leader is \, but a comma is much better.
set number "Let's activate line numbers.
import { defineStore } from "pinia";
export let useCounterStore = defineStore('counter', {
// data
state() {
return {
count: 5
};
},
@polodev
polodev / DataTable.vue
Created July 25, 2023 11:06 — forked from yajra/DataTable.vue
VueJS DataTables Snippets with Delete Button Component
<template>
<table>
<thead>
<tr>
<th v-for="column in parameters.columns" v-html="title(column)"></th>
</tr>
</thead>
<tfoot v-if="footer">
<tr>
<th v-for="column in parameters.columns" v-html="column.footer"></th>
@polodev
polodev / loadbalancer_and_server_for_laravel.md
Last active July 1, 2023 14:23
Loadbalancer and server for laravel app

Required Server for Running App Servers and Their options

1. Load Balancer Server

  • EC2 instance with nginx load Balancer
  • AWS Lightsail Load Balancer [CURRENTLY USING]
  • AWS ELB

2. File Server [where file uploaded to]

@polodev
polodev / macbook.md
Last active March 9, 2024 08:33
Macbook for Rajib Da
@polodev
polodev / vs_code_keybinding.json
Last active March 13, 2023 04:53
Vs code Setting and Keybindings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+alt+n",
"command": "cursorColumnSelectDown",
"when": "textInputFocus"
},
{
"key": "ctrl+alt+u",
"command": "cursorColumnSelectUp",
@polodev
polodev / learning_path.md
Created August 12, 2022 17:03
Learning Path

Way to be a web developer

  • Frontend

    • html
    • css
    • js
    • js library -> jquery, vue, react
  • Backend

  • Programming Language php

@polodev
polodev / facebook-css.css
Created April 4, 2022 03:28
Hide facebook like comment
[aria-label="Leave a comment"] {
display: none;
}
[aria-label="Like"] {
display: none;
}
[aria-label="Leave a comment"] {
display: none;
}
[aria-label="Like"] {