Skip to content

Instantly share code, notes, and snippets.

View sohelaman's full-sized avatar

Sohel Aman sohelaman

  • Dhaka, Bangladesh.
View GitHub Profile
@sohelaman
sohelaman / filesystem.node.js
Created July 2, 2019 03:50
[NodeJS] NodeJS snippets #node #nodejs
#!/usr/bin/env node
const fs = require('fs');
const chokidar = require('chokidar');
chokidar
.watch('.', {
ignoreInitial: true,
ignored: /(^|[\/\\])\../
})
@sohelaman
sohelaman / mysql.functions.sql
Last active August 4, 2020 18:28
[MySQL] MySQL snippets #mysql #sql
DELIMITER //
CREATE FUNCTION REWARDS(purchase_amount INT, customer_age INT)
RETURNS INT(1)
BEGIN
DECLARE points INT(1);
IF customer_age IS NULL OR purchase_amount < 1 THEN SET points = 2;
ELSEIF purchase_amount < 100 THEN SET points = 5;
ELSEIF purchase_amount >= 1000 AND customer_age < 5 THEN SET points = 20;
ELSEIF purchase_amount >= 1000 AND customer_age >= 5 THEN SET points = 25;
@sohelaman
sohelaman / drupal7.batch.php
Last active June 23, 2019 06:15
[Drupal 7] Drupal 7 snippets #drupal #d7 #php
<?php
/**
* hook_menu()
*/
function hello_menu() {
$items['hello'] = array(
'title' => 'Hello Page',
'page callback' => 'hello_page',
'access arguments' => array('access content'),
@sohelaman
sohelaman / js.misc.js
Last active April 22, 2021 13:34
[JavaScript] JavaScript misc snippets #js
/**
* Scroll to an element
*/
(function() {
var element = document.getElementById("myAwesomeDiv");
var elementTop = element.getBoundingClientRect().top;
if (elementTop < 0) {
// check if the top of the element is outside the top of the viewport.
var y = elementTop + window.scrollY - 5;
window.scroll({
@sohelaman
sohelaman / magento1.api.soap.orders.php
Last active June 23, 2019 06:15
[Magento 1] Magento 1.x #magento #php
<?php
$client = new SoapClient('https://api.example.com/api/v2_soap?wsdl=1');
$session = $client->login('username', 'password');
$orders = ['100193253', '100193224', '100193291', '100193320'];
$increment_id = '100193224';
/*$params = [
# IMPORTANT
# {$path} is used to specify AMPPS installation path
# MySQL config file for medium systems.
#
# This is for a system with little memory (32M - 64M) where MySQL plays
# an important part, or systems up to 128M where MySQL is used together with
# other programs (such as a web server)
#
# You can copy this file to