Skip to content

Instantly share code, notes, and snippets.

View kattrali's full-sized avatar

Delisa kattrali

View GitHub Profile
@kattrali
kattrali / Use Guzzle.md
Last active June 20, 2016 16:18
PHP modernization proposals

Use Guzzle for HTTP connections

Risks

  • Increases minimum PHP version to 5.5. Some people might be stuck on older versions, though its worth noting that older versions are EOL
@kattrali
kattrali / github-userstyles.css
Created May 2, 2016 22:19
Improve activity feed on GitHub.com by removing the non-actionable items like starring and forking so discussions and changesets are easier to see.
/* Hide forking and starring from activity feed */
div.alert.fork, div.alert.watch_started {
display: none;
}
@kattrali
kattrali / steps.md
Last active October 22, 2017 15:33
Configuring profanity.im for Hipchat on OS X

Configuring profanity.im for Hipchat on OS X

Installation

Easy

brew install profanity

  • The latest build available today via homebrew is 0.4.4 (which means no support for /occupants pane in rooms), and it does not support desktop notifications.
@kattrali
kattrali / DMMMainStoryboard.h
Last active August 29, 2015 14:04
Sample files generated using Ovaltine! https://github.com/kattrali/ovaltine
//
// DMMMainStoryboard.h
// Copyright (c) 2014 Delisa Mason. All rights reserved.
// Generated by Ovaltine (http://github.com/kattrali/ovaltine)
#import <Foundation/Foundation.h>
@interface DMMMainStoryboard : NSObject
+(UIStoryboard *)storyboard;

Keybase proof

I hereby claim:

  • I am kattrali on github.
  • I am kattrali (https://keybase.io/kattrali) on keybase.
  • I have a public key whose fingerprint is 1CA4 C136 28EA 52B9 FEE1 86F7 5112 DFE7 F462 E676

To claim this, I am signing this object:

- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller
{
shouldReloadCollectionView = NO;
blockOperation = [NSBlockOperation new];
}
- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id<NSFetchedResultsSectionInfo>)sectionInfo
atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type
{
__weak UICollectionView *collectionView = self.collectionView;
@kattrali
kattrali / ruby_cfstringtransform.rb
Created September 18, 2012 09:14
Fun with RubyMotion! An extension of the Ruby String class to support transliteration using CFStringTransform()
# encoding: UTF-8
class String
# Extend string to include transliterations to different orthographies
# from Latin character set or the reverse (`to_latin`)
#
# Supported Orthographies:
# Arabic, Cyrillic, Greek, Hangul, Hiragana, Katakana, Latin, Thai
#
###
# Scheme code is translated to YARV byte code, then evaluated in the
# Ruby Virtual Machine
require 'rbconfig'
require 'dl'
require 'fiddle'
require 'strscan'
class RubyVM
@kattrali
kattrali / zsh_completion_generator.rb
Created July 23, 2012 16:21
How to enable zsh completion for Cocoa classes, methods, and property names for use with the `cocoadex` gem
# A script to generate a zsh compdef file from Cocoadex keyword names
# Change the `TARGET` if you store zsh completion files somewhere other
# than `~/.zsh/completion`
#
# Reference:
# - Writing own completion functions : http://askql.wordpress.com/2011/01/11/zsh-writing-own-completion/
require 'rubygems'
require 'cocoadex'
@kattrali
kattrali / cocoadex_completion.sh
Created July 20, 2012 03:04
How to enable bash completion for Cocoa classes, methods, and property names for use with the `cocoadex` gem
#!/usr/bin/env sh
#
# cocoadex_completion.sh
#
# Bash completion for Cocoa classes
# Install by saving this file and adding the following to your .bash_profile:
#
# complete -C /path/to/cocoadex_completion.sh -o default cocoadex
/usr/bin/env ruby <<-EORUBY