Skip to content

Instantly share code, notes, and snippets.

View subrotoice's full-sized avatar
:octocat:
Codding is the beauty of life

Subroto Biswas subrotoice

:octocat:
Codding is the beauty of life
View GitHub Profile
https://docs.google.com/presentation/d/1wPOX0xevM-HGij9XdHUh4elh9N3OZh5hJ3w3mpzHbOE
training-d.nothi.gov.bd
114283 এ টি এম আল ফাত্তাহ Password: 02522016 (Admin)
200000002946 মোঃ তহুরুল হাসান Password: 02522016
200000002968 মি. ইশতিয়াক হোসাইন Password: 02522016
200000075964 নাদিয়া জামান নিসা Password: 02522016
D-Nothi ID: https://drive.google.com/file/d/12Rr20smVmfLzari_KjKtC-PgIPkNESQg/view?usp=sharing
Digital File Number: https://docs.google.com/document/d/1RppnLgOMa9vO1V0qtJVywSfTLTHeNWQWA9Xt9klRKxY/edit
@subrotoice
subrotoice / chatGPT
Last active February 22, 2024 10:03
chatGPT
https://docs.google.com/document/d/1wUqUDc8BHRRpRwTPHOIcnmbdcBmjTnC8WNPGuPukG-c/edit?usp=sharing
https://www.youtube.com/watch?v=jC4v5AS4RIM
Persona +
Context: Need to limit the endless possiblilities
Task: Always start the Task sentence with an Action Verb. e.g. Generate, Give, Write, Analyze, etc
Exemplar +
Format +
Tone
https://github.com/subrotoice/flex-grid
https://css-tricks.com/snippets/css/a-guide-to-flexbox
https://css-tricks.com/snippets/css/complete-guide-grid
https://www.youtube.com/watch?v=kRS5ficucNM
https://www.youtube.com/watch?v=18VLSXfsj94 (Best: Where to use Flex & Grid)
# Flex Box
.container {
display: flex;
flex-direction: row | row-reverse | column | column-reverse;
NB: Any Rule start with "RewriteRule ^" + Type url in browser + PHP file need to load
# .htaccess to get the value from url ie. edeves.com/myValue
RewriteEngine On
RewriteRule ^([a-zA-Z0-9]+)$ index.php?id=$1
# index.php
<?php
if(isset($_GET["id"])){
if($_GET["id"]!="") {
echo "User ID: " . $_GET["id"]; // User ID: myValue
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{}
# 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
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
@subrotoice
subrotoice / Cover Letter Subroto Biswas
Last active August 10, 2021 02:03
Cover Letter Subroto Biswas
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
Search google People also ask that can replace Brain stroming
https://smallseotools.com
https://www.duplichecker.com
https://plagiarismdetector.net
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