Skip to content

Instantly share code, notes, and snippets.

View bipon68's full-sized avatar
🎯
Focusing

Bipon Biswas bipon68

🎯
Focusing
View GitHub Profile
import { Router } from '@angular/router';
constructor(private _router: Router) { }
SignIn() {
this._router.navigate(["/home/dashboard"]);
console.log(">>>");
}
<button class="btn btn-primary btn-block" routerLink="/home/dashboard"><i class="fa fa-sign-in fa-lg fa-fw"></i>SIGN IN</button>
@bipon68
bipon68 / Movie
Last active August 5, 2021 08:11
# Pending Watch
Be with You (2018)
The Beauty Inside (2015)
Let Me Eat Your Pancreas
Mucize/The Miracle (2015)
# Watched List (Malayalam, Telugu, Thriller)
Neram
Vettah 2016
Ishq (2019)
@bipon68
bipon68 / Brainstation (Knowledge Sharing Platform).txt
Last active January 11, 2021 05:19
Brainstation (Knowledge Sharing Platform)
Interview Experience Site
https://tahanima.github.io/
Top 10 Sites for your career:
1. LinkedIn
2. Indeed
3. Naukri
4. Monster
@bipon68
bipon68 / gist:df6f79494f27700ce426c69f7c4bc71a
Created July 23, 2020 15:09 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@bipon68
bipon68 / introrx.md
Created July 17, 2020 00:39 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@bipon68
bipon68 / p4merge-git-tool.md
Created July 10, 2020 07:44 — forked from dgoguerra/p4merge-git-tool.md
Setup p4merge as difftool and mergetool on Windows

Setting up p4merge as diff and merge tool on Windows. Tried for Git version 1.8.4.msysgit.0.

Two alternatives are explained: using the command line, and directly editing the config file.

Setting up from the command line

Being the installation path "C:Program Files\Perforce\p4merge.exe", just run:

$ git config --global diff.tool p4merge
@bipon68
bipon68 / clientX.html
Created April 8, 2020 04:49
clientX vs pageX vs screenX vs offsetX
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>clientX vs pageX vs screenX vs offsetX</title>
<style>
html {
#Angular CLI overview
- A command line interface for Angular
Purpose:
- Build an Angular application
- Generate Angular files
- Execute the application
- Run unit and end to end tests
- Prepare the application for deployment
# Angular CLI Commands
import {LogoItem} from './items.model';
export var DUMMY_LOGOS: LogoItem[] = [
{ imageUrl: 'https://cdn.vox-cdn.com/thumbor/pkUF7uOdfKTjltlxJxkOpzaLiHU=/0x0:640x427/920x613/filters:focal(269x162:371x264):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/61160835/binglogo.1419979907.0.jpg', visible: true },
{ imageUrl: 'https://cdn.vox-cdn.com/thumbor/drG69iSTSbsYDNcckVzB3x97pDA=/7x0:633x417/920x613/filters:focal(7x0:633x417):format(webp)/cdn.vox-cdn.com/assets/1311169/mslogo.jpg', visible: true },
{ imageUrl: 'https://cdn.vox-cdn.com/thumbor/xGx425irVzHq-r8-_vTZrWo-79A=/0x0:1320x880/920x613/filters:focal(555x335:765x545):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/55270365/newskypelogo.1497525155.jpg', visible: true },
{ imageUrl: 'https://1000logos.net/wp-content/uploads/2018/08/Xbox-Logo.png', visible: true }
]
let customGlobalVar = "Miew Global Variable";
function miewGlobalScope(){
console.log('Inside a Function: ' + customGlobalVar);
}
miewGlobalScope();
console.log('Outside Function: ' + customGlobalVar);
// output: Inside a Function: Miew Global Variable
// output: Outside Function:: Miew Global Variable
##