Skip to content

Instantly share code, notes, and snippets.

View k9t9's full-sized avatar

k9t9 k9t9

  • Shenzen // Berlin // Milano // Hong Kong
View GitHub Profile
@k9t9
k9t9 / init.js
Created December 14, 2016 23:18
Create Numbers array JS
var foo = new Array(10);//create an empty array with length 45
var a = [];
for(var i=0;i<foo.length;i++){
// document.write('Item: ' + (i+1) + ' of ' + foo.length + '<br/>');
var file = 'string' + i +'.jpg';
foo.push(file);
}
function Array() {
@k9t9
k9t9 / wp-customize-uinstall.php
Created January 4, 2017 04:11
wp customized install
<?php
!defined( 'ABSPATH' ) AND exit;
/*
Plugin Name: Custom Installation Script
Plugin URI: http://wordpress.stackexchange.com/q/75420/12615
Description: Create our own content on WP install
License: GPL
@k9t9
k9t9 / send-print_r-to-firebug-console.php
Created August 5, 2017 04:23 — forked from technoknol/send-print_r-to-firebug-console.php
Send print_r to Firebug Console.log
<?php
function debug ($data) {
echo "<script>\r\n//<![CDATA[\r\nif(!console){var console={log:function(){}}}";
$output = explode("\n", print_r($data, true));
foreach ($output as $line) {
if (trim($line)) {
$line = addslashes($line);
echo "console.log(\"{$line}\");";
}