Skip to content

Instantly share code, notes, and snippets.

View jahidulsaeid's full-sized avatar
🎯
Focusing

Jahidul Islam (Saeid) jahidulsaeid

🎯
Focusing
View GitHub Profile
@jahidulsaeid
jahidulsaeid / Date-Select-Markup.html
Created April 23, 2018 14:26 — forked from aleksblago/Date-Select-Markup.html
Markup: Select options for Month, Day, and Year.
<span>
<select name="month">
<option value="January">January</option>
<option value="February">February</option>
<option value="March">March</option>
<option value="April">April</option>
<option value="May">May</option>
<option value="June">June</option>
<option value="July">July</option>
<option value="August">August</option>
@jahidulsaeid
jahidulsaeid / html_for_international_calling coes.htm
Created April 23, 2018 14:28 — forked from andyj/html_for_international_calling coes.htm
HTML <select> international calling codes for each country
<!-- country codes (ISO 3166) and Dial codes. -->
<select name="countryCode" id="">
<option data-countryCode="GB" value="44" Selected>UK (+44)</option>
<option data-countryCode="US" value="1">USA (+1)</option>
<optgroup label="Other countries">
<option data-countryCode="DZ" value="213">Algeria (+213)</option>
<option data-countryCode="AD" value="376">Andorra (+376)</option>
<option data-countryCode="AO" value="244">Angola (+244)</option>
<option data-countryCode="AI" value="1264">Anguilla (+1264)</option>
<option data-countryCode="AG" value="1268">Antigua &amp; Barbuda (+1268)</option>
@jahidulsaeid
jahidulsaeid / index.php
Created November 10, 2018 18:09
Everytime refresh background change
<?php
$backgrounds = array
(
array
(
'image' => 'images/42.png',
'url' => 'http://google.se'
),
array
.p0{padding:0!important}.p1{padding:1!important}.p2{padding:2!important}.p3{padding:3!important}.p4{padding:4!important}.p5{padding:5!important}.p6{padding:6!important}.p7{padding:7!important}.p8{padding:8!important}.p9{padding:9!important}.p10{padding:10!important}.p11{padding:11!important}.p12{padding:12!important}.p13{padding:13!important}.p14{padding:14!important}.p15{padding:15!important}.p16{padding:16!important}.p17{padding:17!important}.p18{padding:18!important}.p19{padding:19!important}.p20{padding:20!important}.p21{padding:21!important}.p22{padding:22!important}.p23{padding:23!important}.p24{padding:24!important}.p25{padding:25!important}.p26{padding:26!important}.p27{padding:27!important}.p28{padding:28!important}.p29{padding:29!important}.p30{padding:30!important}.p31{padding:31!important}.p32{padding:32!important}.p33{padding:33!important}.p34{padding:34!important}.p35{padding:35!important}.p36{padding:36!important}.p37{padding:37!important}.p38{padding:38!important}.p39{padding:39!important}.p40
@jahidulsaeid
jahidulsaeid / function.php
Created August 20, 2019 17:52
Remove Span tag in Contact form 7
/*Contact form 7 remove span*/
add_filter('wpcf7_form_elements', function($content) {
$content = preg_replace('/<(span).*?class="\s*(?:.*\s)?wpcf7-form-control-wrap(?:\s[^"]+)?\s*"[^\>]*>(.*)<\/\1>/i', '\2', $content);
$content = str_replace('<br />', '', $content);
return $content;
});
@jahidulsaeid
jahidulsaeid / react_heroku.md
Last active September 2, 2019 10:32
React Project Deployment in Heroku
@jahidulsaeid
jahidulsaeid / laravel_heroku.md
Last active September 2, 2019 15:15
Laravel Project Deployment in Heroku
@jahidulsaeid
jahidulsaeid / docker_wordpress.md
Created September 22, 2019 10:35 — 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
@jahidulsaeid
jahidulsaeid / Blogs&Podcasts.md
Last active January 22, 2020 13:34
Here is a list that I compiled of 31 (30 sounded better) active blogs, newsletters and podcasts that relate to web development and design. All of these resources are currently posting in 2018. Some of these resources are related to certain technologies and topics and some are more diverse….Enjoy!

Blogs & Articles

Laravel Heroku Deployment

Smashing magazine has been around for a while and has great resources for HTML, CSS, JavaScript and front-end technologies but also has articles on things like design patterns, workflow and even more personal stuff like the mental health of web developers. They offer books for sale, events as well as a full featured job board.

davidwalsh.name is JavaScript based blog and this site features articles on modern JavaScript. Things like promises and async / await, destructuring, react, node and even some jquery. If you’re JavaScript developer then you should definitely check this blog out. The posts are very short and concise and easy to read and comprehend. This is probably one of my favorite JavaScript blogs

React Project deploy in github pages

Package install

npm install gh-pages --save-dev

Add Homepage