duplicates = multiple editions
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
wifi.setmode(wifi.STATION) | |
wifi.sta.config("creationix","noderocks") | |
wifi.sta.connect() | |
tmr.alarm(0, 1000, 1, function () | |
local ip = wifi.sta.getip() | |
if ip then | |
tmr.stop(0) | |
print(ip) | |
dofile("websocket.lc") | |
dofile("main.lc") |
mjolnir.application = require "mjolnir.application" | |
mjolnir.window = require "mjolnir.window" | |
mjolnir.hotkey = require "mjolnir.hotkey" | |
mjolnir.fnutils = require "mjolnir.fnutils" | |
mjolnir.geometry = require "mjolnir.geometry" | |
mjolnir.screen = require "mjolnir.screen" | |
-- find the main window belonging to the application with title 'title' | |
function winfromtitle(title) |
# ------------------------------------------------------------------------------ | |
# FILE: ember.plugin.zsh | |
# DESCRIPTION: oh-my-zsh ember plugin file. | |
# AUTHOR: Will Meldon ([email protected]) | |
# VERSION: 0.0.1 | |
# ------------------------------------------------------------------------------ | |
# Based (heavily) on composer.plugin.zsh | |
# | |
# Ember basic command completion | |
_ember_get_command_list () { |
#!/bin/sh | |
echo Install all AppStore Apps at first! | |
# no solution to automate AppStore installs | |
read -p "Press any key to continue... " -n1 -s | |
echo '\n' | |
# install wallpaper cli | |
gem install desktop | |
echo Install Homebrew, Postgres, wget and cask | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
DEBUG: ------------------------------- ember.js:394 | |
DEBUG: Ember.VERSION : 1.0.0 ember.js:394 | |
DEBUG: Handlebars.VERSION : 1.0.0 ember.js:394 | |
DEBUG: jQuery.VERSION : 1.10.2 ember.js:394 | |
DEBUG: ------------------------------- ember.js:394 | |
Uncaught TypeError: Object function () { | |
if (!wasApplied) { | |
Class.proto(); // prepare prototype... | |
} | |
o_defineProperty(this, GUID_KEY, undefinedDescriptor); |
require 'formula' | |
class Subversion < Formula | |
homepage 'http://subversion.apache.org/' | |
url 'http://apache.spinellicreations.com/subversion/subversion-1.7.11.tar.bz2' | |
sha1 'd82e187803043b74c072cd5a861ac02e4a027684' | |
option :universal | |
option 'java', 'Build Java bindings' | |
option 'perl', 'Build Perl bindings' |
#!/bin/sh | |
# | |
# Configure Mobile Safari on the Simulator allow remote debugging of web pages | |
# and open safari to view the inspector. | |
# | |
# If you want to open the Simulator from the command line you might like the | |
# following alias: | |
# alias iphone-simulator="open /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app" | |
# |