Skip to content

Instantly share code, notes, and snippets.

View fxcjahid's full-sized avatar
🏠
Working from home

Mohammad Jahid fxcjahid

🏠
Working from home
View GitHub Profile
@fxcjahid
fxcjahid / franch-all-city-postal-code-department-name-department-code-region-population-list-download-sql-database.sql
Last active April 8, 2023 13:30
Franch all city, postal code, department name, department code, region, population list download SQL database
-- phpMyAdmin SQL Dump
-- version 4.9.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 08, 2023 at 01:01 PM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.4.29
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
@arulrajnet
arulrajnet / apkdl.sh
Last active December 13, 2023 20:33
Script to download apk file from Google Play a.k.a Android Market.
#!/bin/bash
#
# Script to download apk file from Google Play a.k.a Android Market.
# Accepts package name or Google Play URL as input.
# Files are download from apk-dl.com
# author : Arul (@arulrajnet)
#
APK_DL_URL="http://apk-dl.com/store/apps/details?id=%s"
PACKAGE_NAME=""
@driesd
driesd / customize_user_form.php
Created October 8, 2013 09:51
Customize the Drupal user forms (login & register)
<?php
/**
* Implements hook_user_login
*/
function MODULE_form_user_login_alter(&$form, &$form_state) {
$form['already_customer'] = array(
'#type' => 'markup',
'#markup' => '<h3>' . t('I am already a customer') . '</h3>',
'#weight' => -10,