GitHub入門にオススメしたいサイトを探したり
HTMLやCSSのコーディングをする人
- GitHubが何をするところなのか
- 作品を公開するところ
\documentclass[uplatex,dvipdfmx,9pt,a5paper,papersize,fleqn]{jsarticle} | |
\usepackage{tikz,varwidth} | |
\usetikzlibrary{matrix,decorations.markings} | |
\begin{document} | |
\begin{equation} | |
\makebox[0pt][r]{\makebox[\mathindent][l]{1)}} | |
P_n(i,j) = \left(\begin{varwidth}[c]{\linewidth}% | |
\newcommand{\X}{\phantom{0}}% | |
\begin{tikzpicture}[ |
diff -crN emacs-24.5/configure.ac emacs-24.5_patched/configure.ac | |
*** emacs-24.5/configure.ac 2015-04-02 16:23:06.000000000 +0900 | |
--- emacs-24.5_patched/configure.ac 2015-04-12 00:10:11.000000000 +0900 | |
*************** | |
*** 1782,1788 **** | |
INSTALL_ARCH_INDEP_EXTRA= | |
fi | |
! NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o $macfont_file" | |
fi |
import Foundation | |
func dates(#matchingComponents: NSDateComponents, var startDate: NSDate = NSDate(), endDate: NSDate = NSDate.distantFuture() as! NSDate) -> SequenceOf<NSDate> { | |
return SequenceOf<NSDate> { _ -> GeneratorOf<NSDate> in | |
let calendar = NSCalendar(calendarIdentifier: NSCalendarIdentifierGregorian)! | |
calendar.timeZone = NSTimeZone(forSecondsFromGMT: 0) | |
return GeneratorOf<NSDate> { | |
if let nextDate = calendar.nextDateAfterDate(startDate, matchingComponents: matchingComponents, options: .MatchStrictly) | |
where nextDate.compare(endDate) != .OrderedDescending { | |
startDate = nextDate |
#!/usr/bin/env ruby | |
$LOAD_PATH.unshift(File.dirname(__FILE__)) | |
require 'hiki/app' | |
require 'rubygems' | |
require 'rack' | |
module Rack | |
class Request |
module Mylisp where | |
import Data.HashMap.Strict as HM hiding (map) | |
import Data.Maybe | |
import Data.List as L hiding (insert) | |
data Value = Func ([Value] -> Value) | | |
List [Value] | | |
Symbol String | | |
Number Int |
// | |
// HKLCMTimeUtils.swift | |
// | |
// Created by Hirohito Kato on 2015/01/07. | |
// Copyright © 2020 Kato Hirohito. Licensed under Unlicense(https://unlicense.org). Feel free to use it! | |
import CoreMedia | |
// MARK: Initialization | |
public extension CMTime { |
I'm broadcasting my iPad game playing on Twitch.tv and Ustream.tv.
// See: https://devforums.apple.com/message/1000934#1000934 | |
import Foundation | |
// Logic | |
operator prefix ¬ {} | |
@prefix func ¬ (value: Bool) -> Bool { | |
return !value | |
} |
/* | |
Mute a shutter sound. | |
In detail, see http://stackoverflow.com/questions/4401232/avfoundation-how-to-turn-off-the-shutter-sound-when-capturestillimageasynchrono | |
*/ | |
- (void)becomeSilentModeForCaptureOutput:(AVCaptureStillImageOutput *)imageOutput | |
{ | |
if (!self.invertedSound) { | |
NSString *path = [[NSBundle mainBundle] pathForResource:@"photoShutter_inverted" | |
ofType:@"wav"]; |