Skip to content

Instantly share code, notes, and snippets.

#ES6
1. [https://www.udemy.com/course/next-level-javascript-in-bangla-from-es5-to-esnext]
2.[https://medium.com/%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%E0%A6%BF%E0%A6%82-%E0%A6%AA%E0%A6%BE%E0%A6%A4%E0%A6%BE/tagged/javascript]
3.[JavaScript OOP Crash Course (ES5 & ES6](https://www.youtube.com/watch?v=vDJpGenyHaA)
# React JS
1. [Bangla Crash Course](https://www.youtube.com/watch?v=xVrqPcNX0Bk)
2. [Todo App Bangla](https://www.youtube.com/watch?v=YMi8SjTzjkQ)
3. [React JS Crash Course - 2019 By Traversy Media](https://www.youtube.com/watch?v=sBws8MSXN7A)
4.[React Documentation](https://reactjs.org/tutorial/tutorial.html)
styled.button`
position: relative;
height: 40px;
padding: 0 15px;
font-size: 16px;
margin: 0 0.5em;
background: ${props => (props.active ? "#f5f5f5" : "rgba(256,256,256,0.5)")};
border: none;
border-radius: 0.18em;
outline: none;
@sazzad24x7
sazzad24x7 / css indicator pointer.txt
Last active May 24, 2019 23:06
css indicator pointer
&::before {
content: " ";
height: 0;
position: absolute;
top: 47px;
width: 0;
z-index: 1;
right: 30px;
border: medium solid white;
border-width: 0px 10px 10px 10px;
@sazzad24x7
sazzad24x7 / js local storage code snippet
Created May 14, 2019 03:06
I used local-storage in my react project this way
//Set data to local storage. 1st parameter for token name which will used to catch data from local storage.
//JSON.stringify(), Convert a JavaScript object into a string.
localStorage.setItem(
'tokanNameOfData',
JSON.stringify(this.props.tokanNameOfData)
)
// Catch data from local storage.
//JSON.parse() convert server data string to JavaScript object
@sazzad24x7
sazzad24x7 / docker_wordpress.md
Created May 3, 2019 15:42 — forked from bradtraversy/docker_wordpress.md
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes
@sazzad24x7
sazzad24x7 / box-shadow.html
Created April 30, 2019 10:21 — forked from ocean90/box-shadow.html
CSS3 Box Shadow, only top/right/bottom/left and all
<!DOCTYPE html>
<html>
<head>
<title>Box Shadow</title>
<style>
.box {
height: 150px;
width: 300px;
margin: 20px;
@sazzad24x7
sazzad24x7 / nvmCommands.js
Created March 27, 2019 07:21 — forked from chranderson/nvmCommands.js
Useful NVM commands
// check version
node -v || node --version
// list installed versions of node (via nvm)
nvm ls
// install specific version of node
nvm install 6.9.2
// set default version of node
@sazzad24x7
sazzad24x7 / sql-mongo_comparison.md
Created March 16, 2019 18:57 — forked from aponxi/sql-mongo_comparison.md
MongoDb Cheat Sheets

SQL to MongoDB Mapping Chart

SQL to MongoDB Mapping Chart

In addition to the charts that follow, you might want to consider the Frequently Asked Questions section for a selection of common questions about MongoDB.

Executables

The following table presents the MySQL/Oracle executables and the corresponding MongoDB executables.

@sazzad24x7
sazzad24x7 / Random Number Generate in range.txt
Created February 5, 2019 13:45
Random Number Generate in range
const imageIndexRandom = (min, max) =>
Math.floor(Math.random() * (max - min + 1)) + min;
@sazzad24x7
sazzad24x7 / gist:533fdf12c3cff0fcbcc956ce8664e4c3
Created October 18, 2018 12:14
React MegaMenu MobileMenu StickyMenu Sementic UI react example
https://codepen.io/stephanrusu/pen/VPRQqK
https://codepen.io/designosis/pen/LbMgya
http://react.semantic-ui.com/layouts/sticky/