create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| // Make sure MediaPlayer.framework has been added and the MPAudioVideoRoutingPopoverController interface has been declared. | |
| @interface MyViewController () | |
| @property (strong, nonatomic) MPAudioVideoRoutingPopoverController *airplayPopoverController; | |
| @end | |
| - (void)someButtonTapped:(id)sender { | |
| self.airplayPopoverController = [[MPAudioVideoRoutingPopoverController alloc] initWithType:0 includeMirroring:YES]; | |
| self.airplayPopoverController.delegate = self; | |
| [self.airplayPopoverController presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES]; |
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers| // | |
| // ARSearchBar.h | |
| // Artsy Folio | |
| // | |
| // Created by orta therox on 18/04/2012. | |
| // Released under The MIT License | |
| // http://www.opensource.org/licenses/mit-license.php | |
| // | |
| // Copyright (c) 2012 http://art.sy. All rights reserved. | |
| // |
| #import <Foundation/Foundation.h> | |
| // clang -g -Wall -fobjc-arc -framework Foundation -o serial serial.m | |
| static id makePlistObjects (void) { | |
| NSMutableDictionary *top = [NSMutableDictionary dictionary]; | |
| [top setObject: @"Hi I'm a string" forKey: @"string"]; | |
| [top setObject: [NSNumber numberWithInt: 23] forKey: @"number"]; |
| # Tell system when Xcode utilities live: | |
| sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer | |
| # Set "opendiff" as the default mergetool globally: | |
| git config --global merge.tool opendiff |
| <!-- Include the following CSS and Javascript in your page --> | |
| <link href="https://coderbits.com/content/widget/coderbits.css" media="all" rel="stylesheet" type="text/css"> | |
| <script src="https://coderbits.com/content/widget/coderbits.js"></script> | |
| <!-- Place the following in the page where you want the widget to render and set your username --> | |
| <section id="coderbits" data-coderbits-username="<your username>"></section> |
| # (File moved to https://github.com/ole/Storyboard-Strings-Extraction) |
| sudo sysctl -w kern.timer.coalescing_enabled=0 |