Skip to content

Instantly share code, notes, and snippets.

View jconroy's full-sized avatar

Jason Conroy jconroy

  • Automattic
  • Australia
View GitHub Profile

Let's say you have an iOS project, and you want to use some external library, like AFNetworking. How do you integrate it?

With submodules

Add the project to your repo:

git submodule add git@github.com:AFNetworking/AFNetworking.git Vendor/AFNetworking

or something to that effect.

#!/usr/bin/ruby
# Create display override file to force Mac OS X to use RGB mode for Display
# see http://embdev.net/topic/284710
require 'base64'
data=`ioreg -l -d0 -w 0 -r -c AppleDisplay`
edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten
vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten
@jconroy
jconroy / functions.php
Created April 1, 2012 05:44 — forked from johnmegahan/functions.php
Extended Walker class for use with the Twitter Bootstrap toolkit Dropdown menus in Wordpress.
<?php
add_action( 'after_setup_theme', 'bootstrap_setup' );
if ( ! function_exists( 'bootstrap_setup' ) ):
function bootstrap_setup(){
add_action( 'init', 'register_menu' );
@jconroy
jconroy / gist:3433109
Created August 23, 2012 05:44 — forked from jonathanmoore/gist:2640302
Get the share counts from various APIs

Share Counts

I have always struggled with getting all the various share buttons from Facebook, Twitter, Google Plus, Pinterest, etc to align correctly and to not look like a tacky explosion of buttons. Seeing a number of sites rolling their own share buttons with counts, for example The Next Web I decided to look into the various APIs on how to simply return the share count.

If you want to roll up all of these into a single jQuery plugin check out Sharrre

Many of these API calls and methods are undocumented, so anticipate that they will change in the future. Also, if you are planning on rolling these out across a site I would recommend creating a simple endpoint that periodically caches results from all of the APIs so that you are not overloading the services will requests.

Twitter

@jconroy
jconroy / gist:6086978
Created July 26, 2013 07:35
WordCamp SanFran 2013 - AEST Times

Day 1 - Saturday Morning AEST

2:00am

  • Opening Remark

2:15am

  • Beyond the Default: Explorations and Experiments in BuddyPress - Tammie Lister
  • WordPress and the Ten Year Itch - Siobhan McKeown
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<div id="container" style="width:100%;">
<div class="fb-like-box" data-href="https://www.facebook.com/adobegocreate" data-width="292" data-show-faces="true" data-stream="true" data-header="true"></div>
</div>
@jconroy
jconroy / dl-file.php
Created February 25, 2017 01:53 — forked from hakre/dl-file.php
Wordpress login to download uploaded files
<?php
/*
* dl-file.php
*
* Protect uploaded files with login.
*
* @link http://wordpress.stackexchange.com/questions/37144/protect-wordpress-uploads-if-user-is-not-logged-in
*
* @author hakre <http://hakre.wordpress.com/>
* @license GPL-3.0+
@jconroy
jconroy / php-openssl.md
Created September 2, 2017 10:00 — forked from ryanscherler/php-openssl.md
Use Homebrew PHP with OpenSSL instead of SecureTransport
@jconroy
jconroy / php-webdriver-example.php
Created December 6, 2017 03:56
Example php-webdriver host config
$host = 'http://localhost:4444/wd/hub';
// For Chrome
$capabilities = DesiredCapabilities::chrome();
$capabilities->setCapability( 'acceptSslCerts', true );
// For Firefox
//$capabilities = DesiredCapabilities::firefox();
//$capabilities->setCapability( 'acceptInsecureCerts', true );
@jconroy
jconroy / codeception-example.yml
Created December 6, 2017 03:59
Example codecption webdriver config
modules:
enabled:
- WebDriver:
url: http://site-to-test.com
host: 'http://localhost:4444/wd/hub'
port: 4444
browser: chrome ( 'firefox' or 'phantomjs' etc. )