Skip to content

Instantly share code, notes, and snippets.

View ttamna's full-sized avatar
🎯
Focusing

ttamna lee ttamna

🎯
Focusing
View GitHub Profile
@ttamna
ttamna / INSTALL.md
Created March 12, 2018 08:23 — forked from arya-oss/INSTALL.md
Ubuntu 16.04 Developer Tools installation

Ubuntu 16.04 Developer Tools Installation

First things first !

sudo apt update
sudo apt upgrade

Standard Developer Tools

sudo apt-get install build-essential git
@ttamna
ttamna / v8.md
Created September 27, 2017 11:50 — forked from kevincennis/v8.md
V8 Installation and d8 shell usage

Installing V8 on a Mac

Prerequisites

  • Install Xcode (Avaliable on the Mac App Store)
  • Install Xcode Command Line Tools (Preferences > Downloads)
  • Install depot_tools
    • git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
    • sudo nano ~/.bash_profile
    • Add export PATH=/path/to/depot_tools:"$PATH" (it's important that depot_tools comes first here)
<?php
$content = file_get_contents("http://wiki.akosma.com/IPhone_URL_Schemes");
preg_match_all('/(\w+):\/\//', $content, $matches, PREG_SET_ORDER);
$tmpSchemes = [];
foreach ($matches as $match) {
$tmpSchemes[$match[1]] = true;
}
$schemes = [];