Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View polashrp's full-sized avatar
🖥️
Flutter & dart with ios and android

Habib Software Engineer polashrp

🖥️
Flutter & dart with ios and android
View GitHub Profile
@polashrp
polashrp / bdpostcodes.json
Created September 5, 2021 10:41
Post codes of Bangladesh
{
"postcodes": [{
"division_id": "1",
"district_id": "34",
"upazila": "Amtali",
"postOffice": "Amtali",
"postCode": "8710"
}, {
"division_id": "1",
"district_id": "34",
@polashrp
polashrp / bdupazilas.json
Last active September 5, 2021 10:40
Upazilas of Bangladesh
{
"upazilas": [
{
"id": "1",
"district_id": "34",
"name": "Amtali",
"bn_name": "আমতলী"
},
{
"id": "2",
@polashrp
polashrp / bddistricts.json
Created September 5, 2021 10:38
Districts of Bangladesh
{
"districts": [
{
"id": "1",
"division_id": "3",
"name": "Dhaka",
"bn_name": "ঢাকা",
"lat": "23.7115253",
"long": "90.4111451"
},
@polashrp
polashrp / bddivisions.json
Created September 5, 2021 10:31
Divisions of Bangladesh
{
"divisions": [
{
"id": "1",
"name": "Barishal",
"bn_name": "বরিশাল",
"lat": "22.701002",
"long": "90.353451"
},
{
Flutter setup
At First you select what type opprating system/meshein you use Like (Windows, Mac, Ubuntu etc) then download same type SDK
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
@polashrp
polashrp / custom-permalink-from-meta.php
Created August 25, 2017 13:11 — forked from petenelson/custom-permalink-from-meta.php
WordPress permalink for custom post type based on post meta
@polashrp
polashrp / Magento_Extension
Created February 8, 2017 06:43
Magento Extension Development
Magento Extension Development

In this article I'm going to walk you through process of creating Wordpress plugins. First I'm going to talk about some of the basic concepts in Wordpress plugin development like the actions, hooks, and API's that makes up Wordpress. Then were going to build a plugin where we apply some of the concepts and best practices in developing Wordpress plugins.

###Prerequisites

In order to fully benefit from this tutorial you should have a basic knowledge on PHP. As Wordpress is running on PHP and most of the code that we will be writing will be on PHP. A little bit of knowledge on HTML, CSS and JavaScript is also helpful but not required for this tutorial.