This file contains hidden or 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
| { | |
| "schedule": { | |
| "macOS kexts v1": { | |
| "query": "SELECT k.path, name, version, authority, team_identifier, identifier FROM kernel_extensions k JOIN signature s ON k.path=s.path WHERE team_identifier != '';", | |
| "interval": 60 | |
| }, | |
| "macOS kexts v2": { | |
| "query": "SELECT k.path, name, version, authority, team_identifier, identifier FROM kernel_extensions k JOIN signature s ON k.path=s.path WHERE team_identifier != '' AND name NOT LIKE 'com.apple_%';", | |
| "interval": 60 | |
| } |
This file contains hidden or 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
| SELECT k.path, name, version, authority, team_identifier, identifier | |
| FROM kernel_extensions k JOIN signature s ON k.path=s.path | |
| WHERE team_identifier != '' AND name NOT LIKE 'com.apple_%'; |
This file contains hidden or 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
| SELECT k.path, name, version, authority, team_identifier, identifier | |
| FROM kernel_extensions k JOIN signature s ON k.path=s.path | |
| WHERE team_identifier != ''; |
This file contains hidden or 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
| def setup | |
| @input = File.read('./input.txt') | |
| @input.gsub("\n", " \n") | |
| @split_input = @input.split(/ /) | |
| @word_list = @split_input.uniq | |
| @lookup_hash = Hash.new{ |k,v| k[v] = Hash.new{ |k,v| k[v] = 0 } } | |
| @lookback_length = 2 | |
| @out = [] | |
| first_preceding_words = @split_input[0..@lookback_length-1] |
This file contains hidden or 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
| //--------------------------------------------------------// | |
| //MyTableViewHolder.h ==> add a property for a UITableView and a UILabel | |
| @interface MyTableViewHolder : UIViewController <UITableViewDataSource, UITableViewDelegate> | |
| @property (nonatomic, retain) UITableView *myTableView; | |
| @property (nonatomic, retain) UILabel *scrollLabel; | |
| //--------------------------------------------------------// |