create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
// | |
// OutlineTextView.m | |
// Outline | |
// | |
// Created by Johnnie Walker on 10/06/2013. | |
// | |
#import "OutlineTextView.h" | |
#import <CoreText/CoreText.h> |
// | |
// GPUImageTextureInput+CIImage.h | |
// GPUImage | |
// | |
// Created by Sam Soffes on 3/4/14. | |
// Copyright (c) 2014 Sam Soffes. All rights reserved. | |
// | |
#import "GPUImageTextureInput.h" |
git config --global https.proxy http://127.0.0.1:1080 | |
git config --global https.proxy https://127.0.0.1:1080 | |
git config --global --unset http.proxy | |
git config --global --unset https.proxy | |
npm config delete proxy |
set -e | |
title='千尋影視' # dmg 文件 mount 了之后在文件系统中显示的名称 | |
background_picture_name='mac-dmg-bg.png' # dmg 文件在 mount 了之后界面中显示的背景图片路径 | |
application_name='千尋影視.app' # 应用程序的名称 | |
# Developer ID 证书的名称(名字的一部分即可,但是需要能在 Keychain Access 中唯一定位到该证书) | |
developer_id='Developer ID Application: Shanghai Truecolor Multimedia' | |
# dmg 窗口相关的一些设置,需要根据实际情况做变更 | |
window_left=200 # 窗口位置的 x 坐标 |
// | |
// FWKCIImageView.h | |
// LineEngraver | |
// | |
// Created by Viktor Goltvyanytsya on 8/8/16. | |
// | |
// | |
###Note Apple will reject apps that are using private url schemes (Ugh, Apple....) if they are pretty much obvius. Some apps are rejected and others are not, so, be aware of this issue before implementing any of those URL's in your app as a feature.
###[UPDATE : Not yet tested in iOS 10. It will fail because of policies changes in URL scheme handling.]
###[UPDATE 2:The openURL() method of UIApplication is now deprecated. You should use application(_:open:options:) instead]
Sometimes we need to open Setting's Preferences not of our app, but of the iPhone itself. What should we do to acomplish this?
apple-app-site-association
text file without .json
file extensionapplication/json
MIME type for the text file {
"applinks": {
"apps": [],
// Fragment Shader Modifier | |
// Implicit struct to use: | |
/* | |
struct SCNShaderOutput { | |
vec4 color; | |
} _output; | |
*/ | |
varying vec3 varyingNormal; |