Skip to content

Instantly share code, notes, and snippets.

libamd.dylib:
Load command 0
cmd LC_SEGMENT_64
cmdsize 632
segname __TEXT
vmaddr 0x0000000000000000
vmsize 0x0000000000007000
fileoff 0
filesize 28672
maxprot 0x00000007
==> Downloading http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-4.2.1.tar.gz
Already downloaded: /Library/Caches/Homebrew/suite-sparse64-julia-4.2.1.tar.gz
==> Verifying suite-sparse64-julia-4.2.1.tar.gz checksum
tar xf /Library/Caches/Homebrew/suite-sparse64-julia-4.2.1.tar.gz
==> make library UMFPACK_CONFIG=-DLONGBLAS="'long long'" CHOLMOD_CONFIG="-DLONGBLAS='long long' -DNCAMD -DNPARTITION"
( cd SuiteSparse_config/xerbla && /Library/Developer/CommandLineTools/usr/bin/make )
clang -O3 -fexceptions -fPIC -c xerbla.c
ar rv libcerbla.a xerbla.o
ar: creating archive libcerbla.a
a - xerbla.o
œ˙Ì˛�������� ���X��Ö���������x��__TEXT�������������������p���������������p�������������������__text����������__TEXT����������`������J������`���������������Ä������������__stubs���������__TEXT����������b_�������������b_��������������Ä�����������__stub_helper���__TEXT����������Ä_������B�������Ä_���������������Ä������������__const���������__TEXT����������–_������ ������–_�����������������������������__cstring�������__TEXT����������`������z������`�����������������������������__unwind_info���__TEXT����������jh������®�������jh������������������������������__eh_frame������__TEXT����������i������‡������i��������������������������������8��__DATA�����������p��������������p��������������������������__nl_symbol_ptr�__DATA�����������p��������������p���������������������������__la_symbol_ptr�__DATA����������p������(�������p���������������������������__data����������__DATA����������8p������(�������8p��������������������������������H���__LINKEDIT�������Ä��������������Ä������
==> Installing julia dependency: suite-sparse64-julia
==> Downloading http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-4.2.1.tar.gz
Already downloaded: /Library/Caches/Homebrew/suite-sparse64-julia-4.2.1.tar.gz
==> Verifying suite-sparse64-julia-4.2.1.tar.gz checksum
tar xf /Library/Caches/Homebrew/suite-sparse64-julia-4.2.1.tar.gz
==> make library UMFPACK_CONFIG=-DLONGBLAS="'long long'" CHOLMOD_CONFIG="-DLONGBLAS='long long' -DNCAMD -DNPARTITION"
( cd SuiteSparse_config/xerbla && /Applications/Xcode.app/Contents/Developer/usr/bin/make )
clang -O3 -fexceptions -fPIC -c xerbla.c
ar rv libcerbla.a xerbla.o
ar: creating archive libcerbla.a
==> Using Homebrew-provided fortran compiler.
This may be changed by setting the FC environment variable.
==> Cloning https://github.com/JuliaLang/julia.git
git --git-dir /Library/Caches/Homebrew/julia--git/.git status -s
Updating /Library/Caches/Homebrew/julia--git
git config remote.origin.url https://github.com/JuliaLang/julia.git
git config remote.origin.fetch +refs/tags/v0.2.0:refs/tags/v0.2.0
git --git-dir /Library/Caches/Homebrew/julia--git/.git rev-parse -q --verify v0.2.0
git checkout -f v0.2.0
git reset --hard v0.2.0
@koshov
koshov / 0_reuse_code.js
Created November 6, 2013 22:19
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@koshov
koshov / server.py
Last active December 19, 2015 21:48
# Echo server program
import socket
import sys
HOST = socket.gethostname()
PORT = 50007
RUN = True
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((HOST, PORT))
@koshov
koshov / client.py
Last active December 19, 2015 21:48
# Echo client program
import socket
import sys
# Set up connection
HOST = 'WR8DV9C2' # your host name here
PORT = 50007
RUN = True
conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
@koshov
koshov / DBS.md
Created April 23, 2013 10:10
DBS - University of Edinburgh revision notes

SPJU - Select, Project, Join, Union queries
ID - Inclusion dependency
FD - Functional dependency
MVD - Multivalued Dependency

Overview

Typical DBMS functionality

  • Define a particular database in terms of its data types, structures and constraints
  • Construct or Load the initial database contents on a secondary storage device
  • Manipulating the database
@koshov
koshov / COMN.md
Last active March 23, 2019 17:17
COMN - University of Edinburgh revision notes

MSS - Maximum Segment Size
RTT - Round-Trip Time
ICMP - Internet Control Message Protocol

Key concepts:

[ ] Protocol

Layering

Application