Skip to content

Instantly share code, notes, and snippets.

@Ky1e
Ky1e / High Risk Merchant Account
Last active September 3, 2023 05:51
High Risk Merchant Account
https://www.paykings.com
@Ky1e
Ky1e / google-sheets-generate-html.js
Last active January 27, 2017 21:13 — forked from Cheffheid/google-sheets-generate-html.js
Basic Google Sheets script for generating HTML based on row data
/*
* Generates a snippet of HTML code based on data in cells.
* Usage: On a sheet, select "Tools" -> "Script editor" and paste below (modify output as necessary)
* Then set the value for a blank column to =generateHTML(dateCell, titleCell, locationCell, linkCell)
* ie. =generateHTML(B2, C2, D2, E2)
*/
function generateHTML(date, time, title, location, link) {
var html = Utilities.formatString(
@Ky1e
Ky1e / android_instructions.md
Created September 4, 2016 18:57 — forked from patrickhammond/android_instructions.md
Easily setup an Android development environment on a Mac

Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.

Prerequisites (for Homebrew at a minimum, lots of other tools need these too):

  • XCode is installed (via the App Store)
  • XCode command line tools are installed (xcode-select --install will prompt up a dialog)
  • Java

Install Homebrew:

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

@Ky1e
Ky1e / lamp-stack-osx-virtualhostx.md
Last active January 25, 2016 17:20 — forked from pwenzel/lamp-stack-osx-virtualhostx.md
LAMP stack on OSX with Homebrew, built-in Apache, multiple PHP versions, VirtualhostX optional

This guide shows how to set up a PHP and MySQL development environment using OSX's built-in Apache, using Homebrew to install necessary components. With this strategy, you can use different versions of PHP for certain virtual hosts.

VirtualHostX is a convenient way to manage development sites, but not required.

Install PHP and MySQL with Homebrew

brew update
brew install homebrew/php/php56
brew install homebrew/php/php56-mcrypt
brew install mysql