This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tutorial: https://www.w3schools.com/react/default.asp | |
ReactJs: https://www.youtube.com/playlist?list=PLtLCBrFxFR-f9HJo1AEwca7Db9U_0-iHv (My Playlist) | |
https://www.udemy.com/course/react-tutorial-and-projects-course | |
Mosh: codewithmosh.com/courses/ultimate-react-part1 | |
React-Basic GitHub: github.com/subrotoice/react-basic | |
Deploy Netlify: youtube.com/watch?v=tVzpC5_AC8M | |
Why Should use React: https://prnt.sc/opwGtKUm3jzg | |
✅ JavaScript for React | |
# Javascript Array[], Object{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# YouTube Work Flow --- | |
- Select topics ( Channel most popular video, Or Recent videos that doing good, Comment and Polling in Facebook) | |
- Fliming Video (in Section it could be for voice record may be in 5 sentences at a time ) | |
- Engaging Video ( Adding Text, B Rolls ) | |
- Default Description | |
- Pinned comment | |
- Community post | |
- Promotion ( Free like Facebook, Website, Insagram, Youtube ) | |
- Thumbnail (Text left, Image right), 6 feet dure thaklewo dekte pare, Maximum 5 words |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Convert One date format to another ( Y, m, d, H all meaning w3schools.com/php/func_date_date.asp ) | |
$new_date_format = date('Y-m-d H:i:s', strtotime('2008-07-01T22:35:17.02')); | |
$oldFormat = "18:30:30 Feb 28, 2008 PST"; // PayPal Format | |
$newFormat = date('Y-m-d', strtotime($oldFormat) ); | |
# One year add, and time difference | |
$date1=date_create("2013-03-15"); // $dateStr1=date( 'Y-m-d', strtotime('-1 year') ); $date1 = date_create( $dateStr1 ); | |
$date2=date_create("2013-12-12"); // $dateStr2=date( 'Y-m-d', strtotime('-1 year') ); $date2 = date_create( $dateStr2 ); | |
$diff=date_diff($date1,$date2); // $date1, $date2 must be a PHP date Object |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SEO_Subroto | |
Article Writhing: Identify Keyword - Proper Research on that keyword in web - Google doc voice bangla typing - Translate - Insert keyword properly (On page seo) - Publish - Create video |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Respected Recruiter, | |
I read with interest your posting for . I believe . | |
I look forward to speaking with you further regarding your available . | |
Sincerely, | |
Goutom Biswas |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Search google People also ask that can replace Brain stroming | |
https://smallseotools.com | |
https://www.duplichecker.com | |
https://plagiarismdetector.net |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://docs.google.com/document/d/10_wKI-IB-O5DotEliyMJDe9SWdx2zWTuu_B7PcIQdCw | |
(Laravel Crash Course) youtube.com/watch?v=MFh0Fd7BsjE | |
youtu.be/xIApzP4mWyA | |
Naming Con: https://xqsit.github.io/laravel-coding-guidelines/docs/naming-conventions | |
Installation-----VS Code, Wamp, Composer, Laravel--- | |
composer global require laravel/installer // Just Once, | |
laravel --version // 4.1.0 above Must have | |
IF any porblem then | |
# uninstall the package | |
composer global remove laravel/installer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# VS Code - Extensions | |
Prettier - Code formatter (Javascript, HTML, CSS) | |
Material Icon Theme(Philipp Kief) | |
Highlight Matching Tag(vincaslt): Highlights matching closing and opening tags | |
HTML CSS Support(ecmel): Auto Complete css class in HTML markup | https://prnt.sc/J9i5PsLERdxR | |
CSS Peek (Pranay Prakash): Click HTML Markup and it link to css class rule in css file | https://prnt.sc/YIFcnZfVR_LN | |
lucy Theme: vscodethemes.com/e/juliettepretot.lucy-vscode/lucy?language=javascript | |
Live Server: Do not need to refresh browser for any change | |
GitLens — Git supercharged: (GitKraken) | |
Quokka.js: Live JS variable output dey |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name: সুব্রত কুমার বিশ্বাস - Subroto Kumar Biswas | |
F Name: সুদর্শন কুমার বিশ্বাস - Sudorson Kumar Biswas - 5016343774395 | |
M Name: অর্পনা রানী বিশ্বাস - Arpona Rani Biswas - 5016343774296 (Orpana Rani Biswas) | |
S Name: সুষমা মোদক - SUSMA MODAK - 1514652518 - 10/Dec/1999 | |
N Id : 19908210795000274 | |
Paspot: BM0886599 -- Updated(*New) | |
Birth Reg: 19905016300006034 -----Birsth REG | |
Mobile: 01722272790 | |
Job ICT Ministry------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Download File form server to server | |
<?php | |
set_time_limit(0); //Unlimited max execution time | |
$path = 'latest.zip'; //can keep this name same | |
$url = 'https://wordpress.org/latest.zip'; | |
$newfname = $path; | |
echo 'Starting Download!<br>'; | |
$file = fopen ($url, "rb"); | |
if($file) { |