algolia places + leaflet + mapbox
A Pen by Dody Rachmat Wicaksono on CodePen.
A Pen by Dody Rachmat Wicaksono on CodePen.
osascript -e 'tell application "iOS Simulator" to quit' | |
osascript -e 'tell application "Simulator" to quit' | |
xcrun simctl erase all |
#SwitchResX Settings for LG 21:9 UltraWide
SwitchResX is a utility that allows users to override the default resolution settings in OSX. For more information, including download links, vist http://www.madrau.com/ .
##Disabling System Integrity Protection (SIP)
If you are running OSX 10.11 or higher, SIP must be disabled. To disable SIP do the following:
#!/bin/bash | |
# Installing the Xcode command line tools on 10.7.x or higher | |
osx_vers=$(sw_vers -productVersion | awk -F "." '{print $2}') | |
cmd_line_tools_temp_file="/tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress" | |
# Installing the latest Xcode command line tools on 10.9.x or higher | |
if [[ "$osx_vers" -ge 9 ]]; then |
# install openjdk | |
sudo apt-get install openjdk-7-jdk | |
# download android sdk | |
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
tar -xvf android-sdk_r24.2-linux.tgz | |
cd android-sdk-linux/tools | |
# install all sdk packages |
# source: https://trac.ffmpeg.org/wiki/CentosCompilationGuide | |
yum install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel | |
mkdir ~/ffmpeg_sources | |
cd ~/ffmpeg_sources | |
curl -O http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz | |
tar xzvf yasm-1.2.0.tar.gz | |
cd yasm-1.2.0 |
img { | |
max-width: 100%; | |
height: auto; | |
} |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | |
<script src="https://cdn.rawgit.com/skipser/youtube-autoresize/master/youtube-autoresizer.js"></script> | |
<script> | |
$(document).ready(function() { | |
if(typeof YOUTUBE_VIDEO_MARGIN == 'undefined') { | |
YOUTUBE_VIDEO_MARGIN=5; | |
} | |
$('iframe').each(function(index,item) { | |
if($(item).attr('src').match(/(https?:)?\/\/www\.youtube\.com/)) { | |
var w=$(item).attr('width'); |
package com.dwidasa.mpos; | |
import android.content.Context; | |
import android.util.Log; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.BaseAdapter; | |
import android.widget.TextView; |
<?php | |
/* | |
* Plugin Name: My Name Email | |
* Description: Use custom email From Name | |
* Plugin URI: http://toscho.de/?p=2201 | |
* Version: 2015.01.28 | |
* Author: Dody Rachmat Wicaksono | |
* Author URI: http://www.dodyrw.com | |
* License: GPL | |
*/ |