This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Inspired by https://github.com/mindrunner/lastpass-attachment-exporter | |
filename="lastpass-fields-export.txt" | |
# Clear the file first | |
echo "" > $filename | |
echo -n "Checking accounts" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# class 1 | |
class Filter < ActiveRecord::Base | |
has_many :filter_texts, class_name: "Filter::Text" | |
def initialize | |
self.filter_texts | |
end | |
end | |
# class 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.m | |
// Test | |
// | |
// Created by Brendan Mulholland on 2012-10-23. | |
// Copyright (c) 2012 Brendan Mulholland. All rights reserved. | |
// | |
#import "ViewController.h" | |
#import "AppDelegate.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.m | |
// Test | |
// | |
// Created by Brendan Mulholland on 2012-10-23. | |
// Copyright (c) 2012 Brendan Mulholland. All rights reserved. | |
// | |
#import "ViewController.h" | |
#import "AppDelegate.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.m | |
// Test | |
// | |
// Created by Brendan Mulholland on 2012-10-23. | |
// Copyright (c) 2012 Brendan Mulholland. All rights reserved. | |
// | |
#import "ViewController.h" | |
#import "AppDelegate.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.m | |
// Test | |
// | |
// Created by Brendan Mulholland on 2012-10-23. | |
// Copyright (c) 2012 Brendan Mulholland. All rights reserved. | |
// | |
#import "ViewController.h" | |
#import "AppDelegate.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// AppDelegate.m | |
// Test | |
// | |
// Created by Brendan Mulholland on 2012-10-23. | |
// Copyright (c) 2012 Brendan Mulholland. All rights reserved. | |
// | |
#import "AppDelegate.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.m | |
// Test | |
// | |
// Created by Brendan Mulholland on 2012-10-23. | |
// Copyright (c) 2012 Brendan Mulholland. All rights reserved. | |
// | |
#import "ViewController.h" | |
#import "AppDelegate.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// AppDelegate.m | |
// | |
// AppDelegate.m | |
// Test | |
// | |
// Created by Brendan Mulholland on 2012-10-23. | |
// Copyright (c) 2012 Brendan Mulholland. All rights reserved. | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NOTE: This is all inherited code and I'd like to change as little as possible right now | |
// Parent class info | |
@interface OptionViewController : UITableViewController | |
// This is called when the right bar button is touched | |
- (void)nextStep | |
{ | |
OptionPage* nextStep = [self nextOptionPage]; | |
AppDelegate* appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate]; |
NewerOlder