Skip to content
View mkhuramj's full-sized avatar
Block or Report

Block or report mkhuramj

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Add and Remove Options in Select usi... Add and Remove Options in Select using jQuery
    1
    $("#selectBox").append('<option value="option6">option6</option>');
  2. Using Subject & Observable in Angula... Using Subject & Observable in Angular Service and Component
    1
    import {Component, Input, ViewChild} from '@angular/core';
    2
    import {Http} from "@angular/http";
    3
    import {ToastsManager} from "ng2-toastr";
    4
    import {Fetch, FetchedArrayResult} from "../shared/Fetch";
    5
    import {Payroll} from "./Payroll";
  3. AuthController.php AuthController.php
    1
    <?php declare(strict_types = 1);
    2
    
                  
    3
    use App\Http\Controllers\Controller;
    4
    
                  
    5
    class AuthController extends Controller
  4. PHP5.6 and NGINX: Install PHP56-FPM,... PHP5.6 and NGINX: Install PHP56-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI
    1
    # Install linux update, followed by GCC and Make
    2
    sudo yum -y update
    3
    sudo yum install -y gcc make
    4
    
                  
    5
    # Install Nginx and php56-FPM
  5. Head-First-Design-Patterns Head-First-Design-Patterns Public

    Forked from bethrobson/Head-First-Design-Patterns

    Code for Head First Design Patterns book (2014)

    Java

  6. laravel-rest-framework laravel-rest-framework Public

    A Django Rest Framework based Laravel App/Package to Provide Permissions, Filters, Queryset and much more.

    PHP