Skip to content

Instantly share code, notes, and snippets.

View sumon-sarker's full-sized avatar
🏠
Working from home

Sumon Sarker sumon-sarker

🏠
Working from home
View GitHub Profile
@somratcste
somratcste / Bank_Account
Last active May 21, 2018 06:49
This represent an bank account system
#include<iostream>
using namespace std;
class bank
{
char name_depo[20];
int ac,ac_no;
char type_ac[20];
int balance_ac;
int n,balance;
char Y,N;
@sumon-sarker
sumon-sarker / progressive-lazyload.html
Created December 18, 2019 04:30
Progressive JavaScript Image Lazy Load
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Progressive Image lazy Loading</title>
<style>
ul{list-style: none;text-align: center;}
ul li{display: inline-block;}