Skip to content

Instantly share code, notes, and snippets.

View ashecret's full-sized avatar

Ashraful Alam ashecret

View GitHub Profile
@ashecret
ashecret / pickRandomComment.js
Created May 24, 2017 22:53 — forked from learncodeacademy/pickRandomComment.js
YouTube Random Comment Selector
const axios = require("axios");
const key = "AIzaSyB9e-dHIvdxxrbmorjYHWipwBKq7LJBhNk"
function getComments(pageToken, allItems = {}) {
const params = {
key,
videoId: "a4haLJdDRmc",
part: "snippet",
maxResults: 100,
pageToken,
@ashecret
ashecret / gist:1250381d27fdc94466db971cf7bb903a
Created November 3, 2016 14:55 — forked from hatch2/gist:3681758
use json_encode & json_decode at old php
<?php
//JSON.php -> http://pear.php.net/package/Services_JSON/
require_once 'JSON.php';
if ( !function_exists('json_decode') ){
function json_decode($content, $assoc=false){
if ( $assoc ){
$json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);