View testAPI.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"id":"7976","employee_name":"o3a4j6bnx","employee_salary":"123","employee_age":"23","profile_image":""},{"id":"7985","employee_name":"vv1jsjq29","employee_salary":"123","employee_age":"23","profile_image":""},{"id":"7988","employee_name":"sbtfghqff","employee_salary":"123","employee_age":"23","profile_image":""},{"id":"7989","employee_name":"utoauabzk","employee_salary":"123","employee_age":"23","profile_image":""},{"id":"7990","employee_name":"yghfbauiq","employee_salary":"123","employee_age":"23","profile_image":""},{"id":"7991","employee_name":"r2ruauxv4","employee_salary":"123","employee_age":"23","profile_image":""},{"id":"7993","employee_name":"samay 127ae088-2a79-441f-aa82-f62b3971e41b ","employee_salary":"123","employee_age":"33","profile_image":""},{"id":"8028","employee_name":"ebow2q9vo","employee_salary":"123","employee_age":"23","profile_image":""},{"id":"8029","employee_name":"hgqz02kkp","employee_salary":"123","employee_age":"23","profile_image":""},{"id":"8030","employee_name":"de3460jsm","em |
View Route
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var models = require('../models'), | |
express = require('express'), | |
winston = require('winston'), | |
router = express.Router(), | |
Middleware = require("../lib/Middleware"), | |
fs = require('fs'), | |
pluralize = require('pluralize'); |
View ubuntu16.04-command-line-install-android-sdk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository ppa:openjdk-r/ppa | |
sudo apt-get update | |
sudo apt-get install openjdk-7-jre | |
# install openjdk | |
sudo apt-get install openjdk-7-jdk | |
# download android sdk | |
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz |
View gist:5e8d935fcdbb76d6c3b6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add_index() { | |
$_SESSION["box"] = $_POST['value']; | |
die; | |
} | |
if(isset($_SESSION["box"])){ | |
switch ($output) { | |
case 1: | |
$boxcolor = "silver"; | |
break; |
View gist:701ef64d7061c4b88379
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add_index() { | |
$_SESSION["box"] = $_POST['value']; | |
} | |
if(isset($_SESSION["box"])){ | |
switch ($output) { | |
case 1: | |
$boxcolor = "silver"; | |
break; | |
case 2: |
View gist:fe1e9c631fb18f3d6d58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hdfghfh |
View gist:4b1a106315472ff319e8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if( !isset( $_COOKIE['landing'] ) ){ | |
setcookie("HTTP_REFERER", $_SERVER['HTTP_REFERER'], time() + (86400 * 30), "/"); | |
setcookie("landing", "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]", time() + (86400 * 30), "/"); | |
} | |
function donation_btn_func( $atts ) { | |
$a = shortcode_atts( array( | |
'color' => 'pink', | |
'proj' => '', |