weinote
2020
Dec 07
cool
def yay():
print("ok")
yay()
bla
2020
Dec 29
Python Test dzszsdsz test test
import torch
import numpy as np
a = torch.tensor([[6, 1, 1, 1, 1]])
Testing 1, 2, 3
2020
Dec 07
I think this is very cool!
greetings 🇮🇹
alert('ciao');
2020
Nov 15
could be rewrite as
2020
Oct 19
Latex notation in place
2020
Jul 19
Future plans
2020
Jul 18
name | age |
---|---|
LearnShare | 12 |
Mike | 32 |
Default aligned | Left aligned | Center aligned | Right aligned |
---|---|---|---|
First body part | Second cell | Third cell | fourth cell |
Second line | foo | strong | baz |
Third line | quux | baz | bar |
Second body | |||
2nd line | |||
Third body | Foo |
Almond Milk vs. Cow’s Milk vs. Soy Milk vs. Rice Milk
Calories | Carbohydrates (total) | Sugars | Fat (total) | Protein | |
---|---|---|---|---|---|
Cow’s milk (whole) | 150 | 12 g (lactose!) | 12 g | 8 g | 8 g |
Almond milk (unsweetened) | 40 | 1 g | 0 g | 3 g | 2 g |
Soy milk (unsweetened) | 80 | 4 g | 1 g | 4 g | 7 g |
Coconut milk beverage (unsweetened) | 50 | 2 g | 0 g | 5 g | 0 g |
2020
Jul 13
Group equation with $$
Group equation with /$
Inline test /$ \Psi/$ is a wavefunction, /$ y=ax+b/$
2020
Apr 25
test for weinote
2020
Feb 03
example
>>> a = [1, 2, [3]]
>>> b = copy.copy(a)
>>> c = copy.deepcopy(a)
>>> a[-1][0] = 4
results
>>> a
[1, 2, [4]]
>>> b
[1, 2, [4]]
>>> c
[1, 2, [3]]