Skip to content

Instantly share code, notes, and snippets.

View TimothyBJacobs's full-sized avatar
:shipit:
Ship it

Timothy Jacobs TimothyBJacobs

:shipit:
Ship it
View GitHub Profile
@TimothyBJacobs
TimothyBJacobs / ViewController.swift
Created October 19, 2014 18:11
Swift Polymorphism Tutorial LionCubs
//
// ViewController.swift
// LionsAndTigers
//
// Created by Timothy Jacobs on 10/18/14.
// Copyright (c) 2014 Iron Bound Designs. All rights reserved.
//
import UIKit
interface A {
public function do_this();
}
trait A_Trait {
public function do_this() {
// do something
}
}
@TimothyBJacobs
TimothyBJacobs / Complex_Query.php
Last active September 21, 2015 16:08
IronBound DB
<?php
/**
* API for making complex queries.
*
* @author Iron Bound Designs
* @since 1.0
* @copyright 2015 (c) Iron Bound Designs.
* @license GPLv2
*/

Keybase proof

I hereby claim:

  • I am timothybjacobs on github.
  • I am timothybjacobs (https://keybase.io/timothybjacobs) on keybase.
  • I have a public key ASB8jv_N_jdRoVloJ7Zs421fmFRiW_sVQhkR_Oz9oeODAQo

To claim this, I am signing this object:

@TimothyBJacobs
TimothyBJacobs / .env
Created December 19, 2019 03:18
Testing WordPress Plugins with Codeception on Bitbucket Pipelines using Docker Compose
DB_PORT=9119
WP_PORT=7253
WP_TAG=latest
@TimothyBJacobs
TimothyBJacobs / WpVersion.php
Last active November 2, 2020 21:58
WP-Browser/Codeception module to install a requested WordPress version
<?php
namespace Helper;
class WpVersion extends \Codeception\Module {
use \tad\WPBrowser\Traits\WithWpCli;
public function _initialize() {
parent::_initialize();
@TimothyBJacobs
TimothyBJacobs / WpVersion.php
Created November 2, 2020 23:12
WP-Browser/Codeception module to have WordPress version dependent tests
<?php
namespace Helper;
class WpVersion extends \Codeception\Module {
use \tad\WPBrowser\Traits\WithWpCli;
private $version;
@TimothyBJacobs
TimothyBJacobs / app-passwords-client-demo.php
Created January 19, 2021 23:55
App Passwords Client Demo Plugin
<?php
declare( strict_types=1 );
/*
* Plugin Name: Demo App Passwords Client
*/
namespace TimothyBJacobs\AppPasswordsClientDemo;
const META_KEY = '_app_passwords_client_demo_creds';