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
# All credit to Daniel Liu (https://github.com/Daniel-Liu-c0deb0t/uwu) for the uwuification algorithm | |
import random | |
import requests | |
import tweepy | |
from bs4 import BeautifulSoup | |
from string import ascii_lowercase | |
from subprocess import Popen, PIPE | |
r = requests.get('https://ncatlab.org/nlab/all_pages') |
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
# K is the exponent in our field GL(2^K) | |
K = 8 | |
# MOD is the coefficients of the polynomial modulus we choose for GL(2^K), | |
# which here is x^8 + x^4 + x^3 + x + 1 | |
MOD = [1, 0, 0, 0, 1, 1, 0, 1, 1] | |
# trim leading zeros from a polynomial (list of coefficents, starting with | |
# the largest-degree monomial) | |
def _trim(poly): |
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
import numpy as np | |
from scipy import optimize | |
from tqdm import tqdm | |
from matplotlib import pyplot as plt | |
NUM_POINTS = 1000 | |
STEP = 0.001 | |
BIN_SIZE = 0.05 | |
grid = np.reshape(np.arange(-1, 1 + STEP, STEP), (-1, 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
import numpy as np | |
from scipy import optimize | |
from tqdm import tqdm | |
from matplotlib import pyplot as plt | |
NUM_POINTS = 1000 | |
STEP = 0.001 | |
BIN_SIZE = 0.05 | |
grid = np.reshape(np.arange(-1, 1 + STEP, STEP), (-1, 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
/*! code by chromako.de. */ ! function(e) { | |
var t = {}; | |
function n(r) { | |
if (t[r]) return t[r].exports; | |
var i = t[r] = { | |
i: r, | |
l: !1, | |
exports: {} | |
}; |
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
Slide 3: | |
Claim that each differential operator is equal to corresponding integral? | |
Purpose of lambda in generalized Laplace operator? | |
Slide 4: | |
What exact value is A? | |
Slide 6: | |
Motivation for choosing B_1 = -tau L? | |
Skew-adjoint operators yield L = DG? |
This file has been truncated, but you can view the full file.
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
3.0 | |
0.0 | |
--- | |
Multiply | |
0.0 | |
--- | |
0.0 | |
--------- | |
1.0 | |
0.0 |
This file has been truncated, but you can view the full file.
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
3 | |
0 | |
--- | |
Multiply | |
0 | |
--- | |
0 | |
--------- | |
1 | |
0 |
This file has been truncated, but you can view the full file.
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
3 | |
0 | |
--- | |
Multiply | |
0 | |
--- | |
0 | |
--------- | |
1 | |
0 |
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
build: | |
[echo] Compiling main classes | |
[javac] Compiling 25 source files to /Users/watsonc/openrockoon/swing/build/classes | |
[javac] warning: [options] bootstrap class path not set in conjunction with -source 1.7 | |
[javac] /Users/watsonc/openrockoon/swing/src/net/sf/openrocket/startup/HeadlessRockoonDataGen.java:114: error: method runSimulation in class HeadlessRockoon cannot be applied to given types; | |
[javac] new HeadlessRockoon().runSimulation(document, sim); | |
[javac] ^ | |
[javac] required: OpenRocketDocument,Simulation,double,double,double,double | |
[javac] found: OpenRocketDocument,Simulation | |
[javac] reason: actual and formal argument lists differ in length |
NewerOlder