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
| Našel jsem pravděpodobnou příčinu, a je nečekaně prozaická: **15 in-lb je málo.** Mountain Tactical na svém webu výslovně uvádí: šrouby snesou 60 in/lb, ale utahovat se mají POUZE na 25 in/lb — a 25 in-lb s kapkou modrého Loctitu je spec, který Mountain Tactical doporučuje. Ty jsi na 60 % předepsaného předpětí. Spoj rail–receiver přenáší recoil primárně třením, a tření je přímo úměrné přítlaku šroubů. Poddotažený spoj + ~1,2 kg ATACRu s kroužky + .308 = mikroprokluz s každou ranou. Přesně ten kumulativní posun, co jsi naměřil. | |
| A pravděpodobně se to sčítá s druhým efektem: v závitech receiveru zůstaly po seškrábaném epoxidu a starém Loctitu zbytky. Tření v zaneseném závitu ti "sežere" část utahovacího momentu — klíč klikne na 15, ale skutečné předpětí je ještě nižší. Tohle je u Tikky známá věc i z výroby (černý loctite od plastových záslepek v závitech). | |
| Postup: | |
| 1. **Sundej rail a podívej se na jeho spodek a na temeno receiveru.** Hledej fretting — lesklé vydřené plošky, šedý hliníkový prach, obroušený elox |
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
| NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location]; |
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
| [previewingContext setSourceRect:[self.tableView rectForRowAtIndexPath:indexPath]]; |
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
| - (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext | |
| commitViewController:(UIViewController *)viewControllerToCommit | |
| { | |
| // get the peek controller (on screen currently) | |
| HNTMemberPeekViewController *peekController = (HNTMemberPeekViewController *)viewControllerToCommit; | |
| // get its data object | |
| HNMemberLite *memberLite = peekController.memberLite; | |
| // handle it as you'd handle normal cell tap action | |
| [self memberAction:memberLite]; |
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
| - (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext | |
| viewControllerForLocation:(CGPoint)location | |
| { | |
| // query the collectionView for index corresponting to the touch location | |
| NSIndexPath *indexPath = [self.collectionView indexPathForItemAtPoint:location]; | |
| // just in case | |
| if (!indexPath) { return nil; } | |
| // get the data object corresponding to the pressed cell |
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
| if (iOS_9) { | |
| [self registerForPreviewingWithDelegate:self | |
| sourceView:self.collectionView]; | |
| } |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| Code Sign warning: Specified PROVISIONING_PROFILE (98E447F7-E39B-4F0D-842B-6B588BC2D619) not found and no CODE_SIGN_IDENTITY specified. Ignoring PROVISIONING_PROFILE for now. This will become an error in the future. |
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
| xcodebuild | |
| =========================================== | |
| xcodebuild | |
| xcodebuild -workspace Pexeso.xcworkspace | |
| xcodebuild -workspace Pexeso.xcworkspace -scheme Pexeso | |
| xcodebuild -workspace Pexeso.xcworkspace -scheme Pexeso -configuration Release |
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
| #!/usr/bin/env ruby | |
| if not ARGV[0] | |
| puts "usage: ./script <icon.png>" | |
| return | |
| end | |
| $icon = ARGV[0] | |
| iPhone_dimensions = [ 29, 40, 57, 60 ] |