Skip to content

Instantly share code, notes, and snippets.

@polodev
polodev / insurance_specs_gist.md
Created March 25, 2025 10:09
temp insurance gist march 25, 2025

৬ (ছয়) কিস্তি বীমা-বোনাসসহ

১৬ জানুয়ারি ২০২২ (আইডিআরএ কর্তৃক অনুমোদিত)

[Image of Insurance]

এই পরিকল্পে বীমার টাকা ছয় কিস্তিতে পরিশোধ করার ব্যবস্থা রয়েছে। ফলে বীমাগ্রাহক ভবিষ্যতে একাধিকবার অনাকাঙ্ক্ষিত আর্থিক প্রয়োজন মেটাতে সক্ষম হবেন এবং জীবিত অবস্থায় ধাপে ধাপে বীমার টাকা লাভজনক খাতে কিংবা গঠনমূলক কাজে খাটাতে পারবেন। তাছাড়া মেয়াদের মধ্যে বীমাবৃতের অকাল মৃত্যুতে পুরো বীমা অংকের টাকা মৃত্যুর দিন পর্যন্ত অর্জিত বোনাসসহ পরিশোধ করা হয়। গ্রাহক জীবিত থাকলে মেয়াদান্তে অর্জিত বোনাসসহ নিয়মানুযায়ী বীমা অংক প্রদান করা হয়।

সঞ্চয়ী ছয় কিস্তি বীমার বৈশিষ্ট্যঃ

@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