Skip to content

Instantly share code, notes, and snippets.

@kwbock
kwbock / intercom_account_backfill.rb
Created December 7, 2016 15:46
Backfill intercom account stuff
# Manually backfill teams in Intercom if needed
Team.find_each do |t|
account = t.accounts.first
next unless account
BackgroundIntercomAccountCreator.perform_async(account.id)
end
@kwbock
kwbock / retro.md
Last active January 15, 2016 15:14

Start

  • Being on time for standup every day
  • If you needs heads down, make sure you send the email so we know

Continue

  • Setting Daily goals
  • Good and frequent communication
  • Speaking up early when stuck
  • Being really awesome, this is from Carmen
  • Being mindful of when we can hand a story off to someone else to see it over the finish line. This helped people move on and make progress.
#import "AppDelegate.h"
#import "RCTRootView.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//other code

I am looking for a freelancer/ freelance company with EXTENSIVE KNOWLEDGE of iOS Mobile App Development. I need an app created at a fixed price and once completed all rights will be handed over to me. This app will use 3D Augmented Reality (using the Camera, Compass, and GPS at the same time).

App will be used to let friends track each other for STRICT TIME LIMITS at a venue and upon signing into a group and allowing permissions on iphone. Augmented reality will be used to see where your friends are and their estimated distance (algorithm needed) all through your camera. Also the camera will be able to pick up certain destinations/ points of interest at the venue including vendors, bathrooms, water stations and performances. Each of these categories should be able to be filtered.

2D mapping will also be used to locate friends via maps on iOS and estimated distance.

Each user will have an individual "profile" that they can post media on with their location such as pictures, video, and text on for everyone i

slate.bindAll({
'esc:ctrl': slate.operation('grid')
});
var foo = {
_payload: function() {
var those, that, theOther;
those = "foo";
that = "that";
theOther = "not today";
...
}
}
var test = function() {
var a = 7;
var b = 8;
return function() {
return a+=1
}
};
test() // returns 8
var ResourcesView = App.Views.ResourcesView = Backbone.Marionette.CompositeView.extend({
template: 'users_resources_collection',
tagName: 'div',
itemView: App.Views.ResourceItemView,
initialize: function (options) {
console.log(this);
this.extraContext = options.extraContext || {};
console.log(this);
},
appendHtml: function (collectionView, itemView) {
$(function($) {
var MainController = App.Controllers.MainController = {
index: function() {
console.log("in MainController#index");
},
show: function(id) {
console.log("in MainController#show", id);
}
}
});
# general
set-option -g default-path ~/
# mouse on with ^B m
bind m \
set -g mode-mouse on \;\
set -g mouse-resize-pane on \;\
set -g mouse-select-pane on \;\
set -g mouse-select-window on \;\
display 'Mouse: ON'