duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
* { | |
font-family: -apple-system, Helvetica, Arial, sans-serif !important; | |
} | |
body { | |
background-color:#ffffff !important; | |
font-size: 13px; | |
} | |
#aside { | |
display:none !important; | |
} |
protocol TimedTapGestureRecognizerDelegate: class { | |
func delayInSecondsForTimedTapGestureRecognizer(recognizer: TimedTapGestureRecognizer) -> Double | |
} | |
final class TimedTapGestureRecognizer: UITapGestureRecognizer { | |
weak var timedTapGestureRecognizerDelegate: TimedTapGestureRecognizerDelegate? | |
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent) { | |
super.touchesBegan(touches, withEvent: event) |
xattr -d com.apple.quarantine Xcode.app |
class CancelableTimer: NSObject { | |
private var queue = dispatch_queue_create("timer", nil) | |
private var timer: dispatch_source_t! | |
private var firstTime = true | |
private var once: Bool | |
private var handler: () -> () | |
init(once: Bool, handler: () -> ()) { | |
self.once = once | |
self.handler = handler |
brew install sbcl | |
curl -O https://beta.quicklisp.org/quicklisp.lisp | |
sbcl --load quicklisp.lisp | |
* (quicklisp-quickstart:install) | |
* (ql:add-to-init-file) | |
* (ql:quickload "quicklisp-slime-helper") | |
.emacs file | |
(load (expand-file-name "~/quicklisp/slime-helper.el")) |
protocol Placeable {} | |
enum LayoutElement { | |
case ContainerElement(Container) | |
case Item(Placeable) | |
} | |
struct Container { | |
let items: [LayoutElement] | |
} |
import React from 'react'; | |
import classNames from 'classnames'; | |
export default class ListField extends React.Component { | |
render() { | |
const classes = classNames({ | |
'list-field': true | |
}); | |
return ( | |
<div className={classes}> |
// | |
// SegueHandlerType.swift | |
// | |
import UIKit | |
protocol SegueHandlerType { | |
typealias SegueIdentifier: RawRepresentable | |
} |
defaults write com.apple.PowerChime ChimeOnAllHardware -bool true; open /System/Library/CoreServices/PowerChime.app & |