View wordpress-download-media.rb
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
# Downloads Wordpress images and media files from exported posts | |
# usage: | |
# ruby ./wordpress-download-media.rb | |
# ruby ./wordpress-download-media.rb "_posts" "assets/media" "svg,pdf" | |
require "open-uri" | |
require "fileutils" | |
# default config |
View wordpress-html-to-md.rb
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
# Converts Wordpress .html to Markdown .md file | |
# usage: | |
# ruby ./wordpress-html-to-md.rb "_posts/post.html" | |
# ruby ./wordpress-html-to-md.rb "_posts" | |
# requires: | |
# gem install reverse_markdown | |
require 'fileutils' |
View ibex-dashboard-unity-ui-application-insights
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
/// <reference path="../../../client/@types/types.d.ts"/> | |
import * as _ from 'lodash'; | |
export const config: IDashboardConfig = /*return*/ { | |
id: "unity_ui", | |
name: "Unity dashboard", | |
icon: "dashboard", | |
url: "unity_ui", | |
description: "Unity UI Analytics dashboard sample", | |
preview: "/images/sample.png", |
View ibex-dashboard-mixed-reality-template-sample.ts
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
/// <reference path="../../../client/@types/types.d.ts"/> | |
import * as _ from 'lodash'; | |
export const config: IDashboardConfig = /*return*/ { | |
id: "unity_mr", | |
name: "Mixed Reality dashboard", | |
icon: "dashboard", | |
url: "unity_mr", | |
description: "Unity Mixed Reality Analytics dashboard sample", | |
preview: "/images/sample.png", |
View UnityLUISApp.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
{ | |
"luis_schema_version": "2.2.0", | |
"versionId": "0.1", | |
"name": "UnityLUISApp", | |
"desc": "LUIS app for Unity to change color, size and position of gameobjects.", | |
"culture": "en-us", | |
"intents": [ | |
{ | |
"name": "Change Color" | |
}, |
View PostTester
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
using System.Collections; | |
using System.Collections.Generic; | |
using System.Text; | |
using UnityEngine; | |
using UnityEngine.Networking; | |
[RequireComponent(typeof(TextMesh))] | |
public class PostTester : MonoBehaviour { | |
private TextMesh textmesh; |
View cordova.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
{ | |
"package": "Cordova", | |
"package-version": "5.1.1", | |
"revision": 1, | |
"output": [ | |
{ | |
"category": "iOS", | |
"description": "iOS icons", | |
"alpha": false, | |
"path": "Resources/icons", |
View fileswap.rb
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
#!/usr/bin/ruby | |
# fileswap.rb v1.0 written by @deadlyfingers | |
# Helper script to copy a bunch of images from one source folder | |
# to replace/update images within Camatasia project sub-directories. | |
# Usage: | |
# ruby fileswap.rb "images-dir" "target-dir" | |
# Example: | |
# ruby fileswap.rb "/Users/david/Pictures/CamtasiaStills" "/Users/david/Movies/Camtasia 2/MyProject.cmproj" | |
# Disclaimer: |