Skip to content

Instantly share code, notes, and snippets.

@bohnna
bohnna / gist:4477528
Last active December 10, 2015 18:49
SQL Query for Magento 1.7CE to get customer email, first name, and last name that have not ordered since a specified date.
SELECT ce.email, sfo.customer_lastname, sfo.customer_firstname, ce.updated_at
FROM customer_entity ce
INNER JOIN sales_flat_order sfo ON sfo.customer_email = ce.email
WHERE ce.updated_at BETWEEN '2007-01-07 00:00:00' AND '2012-01-07 23:59:59'
@bohnna
bohnna / gist:4531708
Last active December 11, 2015 02:38
social fixer options
{
"installed_on_5": 1348066457356,
"last_message_check": 1358176729340,
"tip_show_after": 1355415348804,
"version": 7.321,
"timeline_show_panel": false,
"chrono_switched": false,
"auto_subscribe_news_done": true,
"pagelet_toggle": true,
"filters": [],
@bohnna
bohnna / gist:6150875
Created August 4, 2013 16:22
swap info
35-50k when bought mint
swapped at 160
220k
around 110k on motor
Need to buy:
X Timing Belt (14400-P13-014): 49.82 X
/**********************************************************
ADOBE SYSTEMS INCORPORATED
Copyright 2005-2010 Adobe Systems Incorporated
All Rights Reserved
NOTICE: Adobe permits you to use, modify, and
distribute this file in accordance with the terms
of the Adobe license agreement accompanying it.
If you have received this file from a source
# This file should be placed on the directory of ~/blog/config
upstream unicorn {
server unix:/tmp/unicorn.todo.socket fail_timeout=0;
}
server {
listen 80 default;
#server_name example.com;
root /home/username/blog/public;
@bohnna
bohnna / gist:dd27ecf2a3c78c4f30e0
Last active August 29, 2015 14:08
A list of "known" digital/creative entities in Orlando
Envy Labs - Web Dev Shop, creators of CodeSchool
CodeSchool - Online learning site
Push - Creative Agency / Branding (Restaurants)
BMDM - Digital Marketing Agency (sort of print oriented)
MMGY - Advertising (International w/ Orlando Office)
Lightmaker - Digital Agency (International w/ Orlando Office)
Prismatic - Digital Marketing Agency / Branding
MUUTE - Digital and Visual "Consultancy"/Agency
Fry Hammond Barr - Advertising
Laughing Samurai - Advertising Agency
import java.util.*;
/**
* Write a description of class Board here.
*
* @author BUNZ
* @version 1.BUNZ
*/
public class Board {
char [ ] [ ] gameBoard;
@bohnna
bohnna / theme-options.php
Last active August 29, 2015 14:26 — forked from mfields/theme-options.php
Sample theme options page for WordPress Themes.
<?php
/**
* _s Theme Options
*
* @package _s
* @since _s 1.0
*/
/**
* Register the form setting for our _s_options array.
@bohnna
bohnna / gist:0edf12dd39cf8883234f
Last active April 12, 2023 18:43
(Wordpress) Remove UL from wp_nav_menu
<?php
$my_menu = array(
'menu' => 'main-menu',
'container' => '',
'items_wrap' => '%3$s'
);
wp_nav_menu( $my_menu );
@bohnna
bohnna / multiple_ssh_setting.md
Created September 26, 2015 18:44 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"