Skip to content

Instantly share code, notes, and snippets.

View nayeemch's full-sized avatar
🏆
Dev

Nayeem Parvez Chowdhury nayeemch

🏆
Dev
View GitHub Profile
@nayeemch
nayeemch / banks.json
Created September 24, 2023 08:42
All Banks Name
[
{
"BankName": "AB Bank Ltd.",
},
{
"BankName": "Agrani Bank",
},
{
"BankName": "Al-Arafah Islami Bank Ltd.",
},
@nayeemch
nayeemch / AllUpazillas.json
Created March 14, 2022 11:34
All upazillas list
{
"upazilas": [
{
"id": "1",
"district_id": "34",
"name": "Amtali",
"bn_name": "আমতলী"
},
{
"id": "2",
@nayeemch
nayeemch / test.html
Created February 17, 2022 05:20
test html
<p><strong>Are you new to PHP or need a refresher?</strong>&nbsp; \n Then this course will help you get all the fundamentals of Procedural PHP, Object Oriented PHP, MYSQLi and ending the course by building a CMS system similar to WordPress, Joomla or Drupal.<br>
<strong>Knowing PHP has allowed me to make enough money to stay home and make courses like this one for students all over the world.</strong>&nbsp;Being a PHP developer can allow anyone to make really good money online and offline, developing dynamic applications.<br>
Knowing&nbsp;<strong>PHP&nbsp;</strong>will allow you to build web applications, websites or Content Management systems, like WordPress, Facebook, Twitter or even Google.<br>
<strong>There is no limit to what you can do with this knowledge.</strong>&nbsp;PHP is one of the most important web programming languages to learn, and knowing it, will give you&nbsp;<strong>SUPER POWERS</strong>&nbsp;in the web development world and job market place.<br>
<strong>Why?</strong><br>
Because Millions
@nayeemch
nayeemch / postcodes.json
Created February 6, 2022 05:48
Postcodes List
{
"postcodes": [
{
"division_id": "1",
"district_id": "34",
"upazila": "Amtali",
"postOffice": "Amtali",
"postCode": "8710"
},
{
@nayeemch
nayeemch / districts.json
Created February 6, 2022 05:45
districts list
{
"districts": [
{
"id": "1",
"division_id": "3",
"name": "Dhaka",
"bn_name": "ঢাকা",
"lat": "23.7115253",
"long": "90.4111451"
},
@nayeemch
nayeemch / bp-core-avatars.php
Created July 19, 2021 20:41
Fix avatar URL
<?php
/**
* BuddyPress Avatars.
*
* @package BuddyBoss\Core
* @since BuddyPress 1.0.0
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
@nayeemch
nayeemch / bp-core-avatars.php
Created July 17, 2021 19:50
Learndash course image not appearing issue (path : buddyboss-platform/bp-core/bp-core-avatars.php)
<?php
/**
* BuddyPress Avatars.
*
* @package BuddyBoss\Core
* @since BuddyPress 1.0.0
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
<?php
/**
* @todo add description
*
* @package BuddyBoss\Search
* @since BuddyBoss 1.0.0
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
@nayeemch
nayeemch / Download-Shopify-CDN-Assets.md
Created October 24, 2020 16:04 — forked from lexthor/Download-Shopify-CDN-Assets.md
Download all Shopify CDN assets from a store

Instructions

  1. Go to your Shopify admin/settings/files page
  2. Open your browser Dev tools, go to the console
  3. Paste the content of the console_download_list.js file, and press enter
  4. Your browser will automatically fetch each page and download the list with the links of all the files on the CDN.
  5. Using your preffered code editor, edit the HTML file by adding each link in img tag.
  6. Open the HTML file you just edit in a browser then right click-save as. It will download the HTML file again along with all the images in the location you specify.
@nayeemch
nayeemch / Change Primary author in Tutor LMS
Created October 5, 2020 20:34
Change Primary/Main author
function tutor_primary_author() {
if ( function_exists('tutor')) {
$tutor_post_type = tutor()->course_post_type;
add_post_type_support( $tutor_post_type, 'author' );
}
}
add_action('init', 'tutor_primary_author', 999 );