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
/*\ | |
title: $:/boot/boot.js | |
type: application/javascript | |
The main boot kernel for TiddlyWiki. This single file creates a barebones TW environment that is just sufficient to bootstrap the modules containing the main logic of the application. | |
On the server this file is executed directly to boot TiddlyWiki. In the browser, this file is packed into a single HTML file along with other elements: | |
# bootprefix.js | |
# <module definitions> |
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
require 'rubygems' | |
require 'css_parser' | |
include CssParser | |
parser = CssParser::Parser.new | |
parser.load_file!('bootstrap-theme.css', 'bootstrap/dist/css/') | |
parser.load_file!('bootstrap.css', 'bootstrap/dist/css/') | |
arr = [] | |
parser.each_selector() do |selector, declarations, specificity| |
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
let s:save_cpo = &cpo | |
set cpo&vim | |
" customization {{{ | |
function! s:getg(name, default) | |
return get(g:, 'operator#surround#'.a:name, a:default) | |
endfunction | |
let g:operator#surround#blocks = s:getg('blocks', {}) |
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
@echo off | |
mkdir %DATE:/=%%TIME::=% |
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
Gem::Specification.new do |spec| | |
spec.name = "ruboty-helloworld" | |
spec.version = "0.0.2" | |
spec.authors = ["zeero"] | |
spec.email = ["[email protected]"] | |
spec.summary = "Hello world!" | |
spec.files = ["ruboty-helloworld.rb"] | |
spec.require_path = "." | |
end |
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
protocol EnumTable { | |
associatedtype TableSectionImpl: TableSection | |
} | |
extension EnumTable where Self: UITableViewController { | |
func tableRow(indexPath: IndexPath) -> TableRow? { | |
let section = TableSectionImpl(rawValue: indexPath.section) | |
return section?.tableRow(index: indexPath.row) | |
} | |
} |
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
App Review | |
OverviewApp Review Guidelines | |
App Review Guidelines | |
Apps are changing the world, enriching people’s lives, and enabling developers like you to innovate like never before. As a result, the App Store has grown into an exciting and vibrant ecosystem for millions of developers and more than a billion users. Whether you are a first-time developer or a large team of experienced programmers, we are excited that you are creating apps for our platforms, and want to help you understand our guidelines so you can be confident your app will get through the review process quickly. | |
Introduction | |
Before You Submit | |
1. Safety | |
2. Performance |
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
App Store | |
概要デベロッパインサイトプランニングローンチポストローンチリソース | |
App Store Reviewガイドライン | |
Appは世界を変え、人々の生活を豊かにし、皆さまのようなデベロッパが今までにない方法で変革をもたらすことを可能にしています。結果としてApp Storeは、数百万というデベロッパと10億人以上のユーザーが集まる、興奮と活気にあふれた場所に成長してきました。今では、初心者のデベロッパも経験豊富なプログラマで構成された大規模なチームもApp Store向けにAppを開発しています。Appleでは、Appの審査プロセスをスムーズに通過していただくために、皆さまがガイドラインを理解できるようサポートしたいと考えています。 | |
はじめに | |
提出前 | |
1.安全性 | |
2.パフォーマンス |
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
import UIKit | |
import PlaygroundSupport | |
class ViewController: UIViewController { | |
var redView:UIView! | |
var movedRight:Bool = false | |
var verticalConstraint:NSLayoutConstraint! | |
var horizontalConstraint:NSLayoutConstraint! | |
var widthConstraint:NSLayoutConstraint! | |
var heightConstraint:NSLayoutConstraint! |
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
class_diagram.md |
OlderNewer