This file contains 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
#! /bin/sh | |
xxd -revert -plain $1 > /tmp/hexmltemp.xml | |
xmllint --format /tmp/hexmltemp.xml > $1 |
This file contains 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
#define _GNU_SOURCE | |
#include <dirent.h> | |
#include <fcntl.h> | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <stdlib.h> | |
#include <sys/stat.h> | |
#include <sys/syscall.h> | |
#define handle_error(msg) \ |
This file contains 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
=IF(B2<=14000,SUM(B2*10.5%),IF(B2<=48000,SUM(B2-14000)*17.5%+1470,IF(B2<=70000,SUM(B2-48000)*30%+7420,IF(B2>=70001,SUM(B2-70000)*33%+14020)))) |
This file contains 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
git --no-pager diff --stat HEAD b5f7df2 > diffstat.txt |
This file contains 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
The certificate specified is not associated with any Backup Vaults.Try a different certificate. | |
Verify that the public key of the certificate you want to use has been uploaded to the Windows Azure Backup Vault. | |
ID: 34508 |
This file contains 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
Could not find artifact net.sf.josql:josql:jar:1.5 in central (http://repo1.maven.org/maven2/) | |
Could not find artifact net.sf.josql:josql:jar:1.5 in clojars (https://clojars.org/repo/) | |
Could not find artifact net.sf.josql:josql:jar:1.5 in restlet.org (http://maven.restlet.org) | |
Could not find artifact net.sf.josql:josql:jar:1.5 in fusesource.m2 (http://repo.fusesource.com/maven2) | |
Could not find artifact net.sf.josql:gentlyweb-utils:jar:1.5 in central (http://repo1.maven.org/maven2/) | |
Could not find artifact net.sf.josql:gentlyweb-utils:jar:1.5 in clojars (https://clojars.org/repo/) | |
Could not find artifact net.sf.josql:gentlyweb-utils:jar:1.5 in restlet.org (http://maven.restlet.org) | |
Could not find artifact net.sf.josql:gentlyweb-utils:jar:1.5 in fusesource.m2 (http://repo.fusesource.com/maven2) |
This file contains 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
(master *)$lein test | |
Compiling 1 source files to /Users/Daniel/Developer/clojure/skuld/target/classes | |
lein test skuld.claim-test | |
2013-11-27 07:43:47,282 INFO org.apache.zookeeper.server.ZooKeeperServerMain: Starting server | |
2013-11-27 07:43:47,301 INFO org.apache.zookeeper.server.ZooKeeperServer: Server environment:zookeeper.version=3.4.5-1392090, built on 09/30/2012 17:52 GMT | |
2013-11-27 07:43:47,301 INFO org.apache.zookeeper.server.ZooKeeperServer: Server environment:host.name=daniels-13-mbp | |
2013-11-27 07:43:47,301 INFO org.apache.zookeeper.server.ZooKeeperServer: Server environment:java.version=1.6.0_45 | |
2013-11-27 07:43:47,301 INFO org.apache.zookeeper.server.ZooKeeperServer: Server environment:java.vendor=Apple Inc. | |
2013-11-27 07:43:47,301 INFO org.apache.zookeeper.server.ZooKeeperServer: Server environment:java.home=/Library/Java/JavaVirtualMachines/1.6.0_45-b06-451.jdk/Contents/Home |
This file contains 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
(pprint (unfold deps 'count-queue)) | |
{count-queue | |
{clojure.core/update-in | |
{clojure.core/apply | |
{clojure.core/cons {}, | |
clojure.core/list* | |
{clojure.core/cons {}, | |
clojure.core/spread | |
{clojure.core/cons {}, | |
clojure.core/first {}, |
This file contains 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
- [ ] Math | |
- [ ] Linear Algebra | |
- [ ] Lay - Linear Algebra | |
- [ ] 18.06 Linear Algebra | |
http://www.scotthyoung.com/blog/mit-challenge/#more-link1806 | |
- [ ] Burke Lecture Notes | |
http://www.math.washington.edu/~burke/crs/407/lectures/ | |
- [ ] Coding The Matrix | |
http://www.amazon.com/dp/0615880991/?tag=coursera-course198-20 | |
- [ ] Quantifying Uncertainty |
This file contains 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
(ns gol.core | |
(:refer-clojure :exclude [* - + == /]) | |
(:require [clojure.core.matrix :refer :all] | |
[clojure.core.matrix.operators :refer :all])) | |
(def start [[0 0 0 0 0] | |
[0 0 0 0 0] | |
[0 0 1 0 0] | |
[0 0 0 0 0] | |
[0 0 0 0 0]] |
OlderNewer