Skip to content

Instantly share code, notes, and snippets.

View hemel-cse's full-sized avatar
🎯
Focusing

Md Hashibul Amin hemel-cse

🎯
Focusing
View GitHub Profile
@hemel-cse
hemel-cse / remove_duplicates.js
Created October 7, 2018 15:13 — forked from lmfresneda/remove_duplicates.js
Remove duplicates from an array of objects in javascript
// FUN METHOD
/**
* Remove duplicates from an array of objects in javascript
* @param arr - Array of objects
* @param prop - Property of each object to compare
* @returns {Array}
*/
function removeDuplicates( arr, prop ) {
let obj = {};
return Object.keys(arr.reduce((prev, next) => {
@hemel-cse
hemel-cse / bookly6_details.php
Created April 28, 2018 16:18
Bookly frontend details page customized
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
use Bookly\Lib\Utils\Common;
use Bookly\Lib\Config;
use Bookly\Lib\Proxy;
/** @var \Bookly\Lib\UserBookingData $userData */
echo $progress_tracker;
?>
<div class="bookly-box"><?php echo $info_text ?></div>
@hemel-cse
hemel-cse / _progress_tracker_.php
Last active April 28, 2018 16:18
bookly wordpress plugin progress tracker with text on active tab
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
$i = 1;
?>
<div class="bookly-progress-tracker bookly-table">
<?php if ( $skip_service_step == false ) : ?>
<div <?php if ( $step >= 1 ) : ?>class="active"<?php endif ?>>
<?php echo $i ++ . '. ' . \Bookly\Lib\Utils\Common::getTranslatedOption( 'bookly_l10n_step_service' ) ?>
<?php if ( $step==1 ) : ?><div class="step stepactive">You are here</div><?php elseif ( $step >=1 ): ?><div class=step></div><?php else: ?><div class=step></div><?php endif ?>
</div>
<?php endif ?>
@hemel-cse
hemel-cse / merge.cpp
Created March 4, 2018 07:16
Merge sort cpp
#include <bits/stdc++.h>
using namespace std;
void mergeSort(int arr[], int l, int r);
void merge(int arr[], int l, int m, int r);
int main(){
int n;
cin>>n;
int arr[n+1];
#!/bin/bash
set -e
GVERSION="1.9.2"
GFILE="go$GVERSION.linux-amd64.tar.gz"
GOPATH="$HOME/go"
GOROOT="/usr/local/go"
if [ -d $GOROOT ]; then
echo "Installation directories already exist $GOROOT"
@hemel-cse
hemel-cse / contact-form7-checkbox.js
Created July 13, 2017 11:16
Contact Form 7 wordpress checkbox item limited selection with jquery
<script type="text/javascript">
jQuery(document).ready(function($){
var maxCheckboxes = 2; // I need to user check only 2 from many options.
$('input[name="checkbox-name[]"]').change(function () {
var checkedNum = $('input[name="checkbox-name[]"]:checked').length;
var allCheckoxesChecked = $('input[name="checkbox-name[]"]:checked');
var allCheckboxes = $("input[name='checkbox-name[]']");
@hemel-cse
hemel-cse / sp
Created April 5, 2017 10:04 — forked from wandernauta/sp
sp is a command-line client for Spotify's dbus interface. Play, pause, skip and search tracks from the comfort of your command line.
#!/usr/bin/env bash
#
# This is sp, the command-line Spotify controller. It talks to a running
# instance of the Spotify Linux client over dbus, providing an interface not
# unlike mpc.
#
# Put differently, it allows you to control Spotify without leaving the comfort
# of your command line, and without a custom client or Premium subscription.
#
@hemel-cse
hemel-cse / xliffparser.ipynb
Last active April 5, 2017 09:31
XLIFF parser for change target value with transation from csv files
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hemel-cse
hemel-cse / nginx.conf
Created March 14, 2017 09:26 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048