- π Iβm currently working on building Drupal distribution for Non-profit.
- π± Iβm currently learning Kubernetes.
- π¬ Ask me about anything at https://github.com/msankhala/msankhala/issues
- π« How to reach me: http://mutantmahe.sh/
- β‘ Fun fact: Self Regulate myself with Meditation.
- βοΈ Buy me a Coffe at: https://www.buymeacoffee.com/MutantMahesh
π―
Focusing
Little nerdy by nature and software developer by choice. Full stack developer. Drupal and Js lover. Consistent meditator and Yoga practitioner. Bike lover π
-
Srijan
- India
- http://msankhala.wordpress.com
- @MutantMahesh
Pinned Loading
-
Setup Multiple Environment for Larav...
Setup Multiple Environment for Laravel 5 Developers Way 1<?php
23/*
4|--------------------------------------------------------------------------
5| Follow this instructions:
-
Stop all ajax request
Stop all ajax request 1// Stop all ajax request by http://tjrus.com/blog/stop-all-active-ajax-requests
2$.xhrPool = []; // array of uncompleted requests
3$.xhrPool.abortAll = function() { // our abort function
4$(this).each(function(idx, jqXHR) {
5jqXHR.abort();
-
manage-states-in-javascript-via-prot...
manage-states-in-javascript-via-prototypal-inheritance 1// Managing States in JavaScript via Prototypal Inheritance
2// https://pusher.com/sessions/meetup/viennajs/managing-states-in-javascript-via-prototypal-inheritance
34function State(newState) {
5Object.assign(this, newState);
-
Nginx load balancing failover
Nginx load balancing failover 1http {
2upstream backend_uat {
3server <server 1 ip> max_fails=1 fail_timeout=5s;
4server <server 2 ip>;
5}
-
Nginx Configuration with multiple po...
Nginx Configuration with multiple port apps on same domain, with SSL. 12# the IP(s) on which your node server is running. I chose port 3000.
3upstream app_geoforce {
4server 127.0.0.1:3000;
5}
-
Drupal 7 - Exposing pseudo field in ...
Drupal 7 - Exposing pseudo field in view from custom table 1<?php
2// Assume you have two custom fields total_marks and marks_obtained in a custom table. Now you need to calculate the percentage of mark scored. You don't need a field in table for this. You can create a virtual field bound to marks_obtained field.
34/**
5* Implements hook_views_api().
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.