POST
Authorization: Bearer {TOKEN}
| { | |
| "name": "XAMPP", | |
| "homeURL": "", | |
| "supportURL": "", | |
| "version": "7.3.25-0", | |
| "vendor": "", | |
| "id": "", | |
| "uuid": "A014CBAD-77C5-4FA4-8D64-96DC97FB8880", | |
| "description": "XAMPP", | |
| "storagePath": "/Users/username/.bitnami/stackman/machines/xampp", |
I hereby claim:
To claim this, I am signing this object:
| const fs = require('fs') | |
| const path = require('path') | |
| const files = fs.readdirSync('.') | |
| for (let file of files) { | |
| // fs.renameSync(file,) | |
| // console.log(file) | |
| let ext = path.extname(file) | |
| if (ext === '.JPG' || ext === '.JPEG') { |
| <?php | |
| // http://stackoverflow.com/questions/804045/preferred-method-to-store-php-arrays-json-encode-vs-serialize | |
| ini_set('display_errors', 1); | |
| error_reporting(E_ALL); | |
| // Make a big, honkin test array | |
| // You may need to adjust this depth to avoid memory limit errors | |
| $testArray = fillArray(0, 5); | |
| // Time json encoding |
| <video id="Video1" width="1134" height="906" controls> | |
| <source src="test_1.mp4" type="video/mp4"> | |
| Your browser does not support the video tag. | |
| </video> | |
| <script> | |
| document.addEventListener("keypress", function(e) { | |
| e = e || window.event; | |
| if(e.keyCode == 13) { |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <div id="log"></div> | |
| <script> |
| <?php | |
| set_error_handler(function($errno, $errstr, $errfile, $errline, array $errcontext) { | |
| // error was suppressed with the @-operator | |
| if (0 === error_reporting()) { | |
| return false; | |
| } | |
| throw new ErrorException($errstr, 0, $errno, $errfile, $errline); |
| var BatchStream = require('batch-stream2') | |
| var gulp = require('gulp') | |
| var coffee = require('gulp-coffee') | |
| var uglify = require('gulp-uglify') | |
| var cssmin = require('gulp-minify-css') | |
| var bower = require('gulp-bower-files') | |
| var stylus = require('gulp-stylus') | |
| var livereload = require('gulp-livereload') | |
| var include = require('gulp-include') | |
| var concat = require('gulp-concat') |