Skip to content

Commit 89f70ed

Browse files
committed
fix links
1 parent 9886512 commit 89f70ed

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

bookshelf.tsv

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ The Feynman's lectures on Physics http://www.feynmanlectures.caltech.edu/ textbo
237237
Proof, Logic, and Conjecture - The Mathematician's Toolbox http://www.columbia.edu/~vml2113/Teachers%20College,%20Columbia%20University/Academic%20Year%202011-2012/Spring%202012/MSTM%206051%20-%20Advanced%20Topics%20in%20Nature%20of%20Proofs/Proof,%20Logic,%20and%20Conjecture%20-%20The%20Mathematician%27s%20Toolbox.pdf textbooks mathematics
238238
Mathematical Logic for Computer Science https://sites.google.com/a/di.uniroma1.it/logicaperinformatica2016/ websites logic mathematics computer-science
239239
A Problem Course in Mathematical Logic https://ia601001.us.archive.org/34/items/flooved3492/flooved3492.pdf textbooks logic mathematics
240-
Metamath A Computer Language for Pure Mathematics http://us.metamath.org/downloads/metamath.pdf textbooks computer-programming mathematics
240+
Metamath A Computer Language for Pure Mathematics http://us.metamath.org/downloads/metamath.pdf textbooks computer-programming mathematics
241241
The Foundations of Mathematics https://www.math.wisc.edu/~miller/old/m771-10/kunen770.pdf textbooks mathematics foundations-of-mathematics
242242
The Mathematical Continuum: From Intuition to Logic https://www.di.ens.fr/users/longo/files/PhilosophyAndCognition/the-continuum.pdf papers mathematics logic
243243
Probabilistic algorithm for testing primality http://www.mat.uniroma2.it/~pasquale/dida/references/rabin1980probabilistic.pdf papers algorithms mathematics number-theory primality-testing
@@ -709,4 +709,5 @@ Emergence of Scaling in Random Networks https://arxiv.org/pdf/cond-mat/9910332.p
709709
PRIMES is in P https://www.cse.iitk.ac.in/users/manindra/algebra/primality_v6.pdf papers algorithms mathematics computer-science
710710
Computation: finite and infinite machines https://dl.acm.org/citation.cfm?id=1095587 textbooks computer-science
711711
Flow Diagrams, Turing Machines And Languages With Only Two Formation Rules papers computer-science computer-programming
712-
On the Number of Linear Regions of Deep Neural Networks papers deep-learning neural-networks
712+
On the Number of Linear Regions of Deep Neural Networks https://papers.nips.cc/paper/5422-on-the-number-of-linear-regions-of-deep-neural-networks.pdf papers deep-learning neural-networks
713+
Flow diagrams, turing machines and languages with only two formation rules http://www.cs.unibo.it/~martini/PP/bohm-jac.pdf papers computer-science computer-programming

scripts/check_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
import fileinput
44

@@ -7,5 +7,5 @@
77
l = line.strip().split("\t")
88
size = 17
99
l = l + [""]*(size - len(l))
10-
print("\t".join(l))
10+
print("\t".join(map(lambda x: x.strip(), l)))
1111

0 commit comments

Comments
 (0)