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
(defn supports-extended-attributes? | |
"Not all filesystems suport Java's UserDefinedFileAttributes (a.k.a. extended attributes), | |
notably HFS+ and APFS on macOS. | |
Waiting for https://bugs.openjdk.java.net/browse/JDK-8030048 to add macOS support." | |
[^Path path] | |
(.supportsFileAttributeView | |
(Files/getFileStore path) | |
^Class UserDefinedFileAttributeView)) |
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
Subscription | |
Trial | |
billing_success -> Active | |
billing_failed -> Past Due | |
cancel -> Cancelled | |
Active | |
billing_success -> Active | |
billing_failed -> Past Due | |
cancel -> Cancelled | |
Past Due |
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
$ lein test | |
Exception in thread "main" java.lang.ExceptionInInitializerError | |
at clojure.main.<clinit>(main.java:20) | |
Tests failed. |
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
Process: System Preferences [767] | |
Path: /Applications/System Preferences.app/Contents/MacOS/System Preferences | |
Identifier: com.apple.systempreferences | |
Version: 14.0 (14.0) | |
Build Info: SystemPrefsApp-360000000000000~1 | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: System Preferences [767] | |
User ID: 503 |
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
module "deps_dns_app_v6" { | |
source = "../modules/dns_record" | |
name = "app" | |
type = "AAAA" | |
value = "${google_compute_global_address.deps-ipv6.address}" | |
} | |
module "deps_return_path" { | |
source = "../modules/dns_record" | |
name = "return-path" |
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
license: mit | |
border: yes | |
scrolling: no |
NewerOlder