Skip to content

Instantly share code, notes, and snippets.

@rickfillion
rickfillion / AwningWindow.m
Created March 24, 2021 14:10
Bodega Awning Window
//
// AwningWindow.m
// Bodega
//
// Created by Rick Fillion on 14/04/09.
// Copyright 2009 Centrix.ca. All rights reserved.
//
#import "AwningWindow.h"
#import "NSNotificationCenter+Bodega.h"

Keybase proof

I hereby claim:

  • I am rickfillion on github.
  • I am rickfillion (https://keybase.io/rickfillion) on keybase.
  • I have a public key whose fingerprint is C6AE BA16 DDB7 05A2 FD68 4B66 8E25 E94D 99E4 6418

To claim this, I am signing this object:

@rickfillion
rickfillion / pre-commit-xcode5xib-check
Created October 25, 2013 17:33
git pre-commit hook for stopping you from commiting xibs that are in the new Xcode5 format that won't load in Xcode4. Surely there's a better way to find xibs that are in the new format than this, but it seems to work so far. To use: Save as .git/hooks/pre-commit.
#!/bin/sh
#
# Pre-Commit Hook that checks for Xcode5 format XIB files as they won't be
# openable in Xcode4
# Redirect output to stderr.
exec 1>&2
xcode5xibs=`find . -name *.xib -exec grep "<document.*type=\"com.apple.InterfaceBuilder3.Cocoa.XIB\"" {} + | sed -e 's/:.*//'`
<?php
$host="https://bodega.fogbugz.com/api.asp";
$user="rick@madefresh.ca";
$password = "********";
$query = 'project:"Bodega Application" milestone:"1.4.0" status:"Active"';
$cols = "ixBug";
$tokenCommand = "curl \"$host?cmd=logon&email=$user&password=$password\" | perl -ne 'print if s/.*\\[CDATA\[(.*)\\]\\].*/\\1/'";