id | Name | 2-D Size | 1-D Size |
---|---|---|---|
0 | binaryText.jpg | (483, 604) | 291732 |
1 | couch.jpg | (500, 375) | 187500 |
2 | homework.jpg | (800, 600) | 480000 |
3 | house.jpg | (384, 512) | 196608 |
This file contains hidden or 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
<button type="button">I look amazing</button> |
This file contains hidden or 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
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
</div> | |
</div> |
This file contains hidden or 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
from collections import OrderedDict | |
"""Q: How do we define a data structure that makes it easy | |
to determine which keys should be passed to children | |
and which should be passed to report summaries. | |
And which keys should be promoted? | |
## Thoughts: | |
- CAPS_AND_UNDERSCORE signify importance | |
- Optional updates | |
- All keys should be passed to children by default |
This file contains hidden or 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
var piazza_hotkeys = function() { | |
/* | |
Provides hotkey support for navigating many posts on piazza. | |
1) a + alt: archives the current post and navigates to the previous post | |
2) i + alt: marks the current post as unread and navigates to the previous post | |
3) up + alt: navigates to the more recent post from current | |
4) down + alt: navigates to the older post | |
*/ | |
// keycodes: https://css-tricks.com/snippets/javascript/javascript-keycodes/ | |
const A = 65; |
This file contains hidden or 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
from __future__ import print_function | |
import time | |
import math | |
import numpy as np | |
import argparse | |
FFT = np.fft.fft | |
IFFT = np.fft.ifft | |
zprint = globals()['__builtins__'].print |
This file contains hidden or 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
from __future__ import print_function | |
import time | |
import numpy as np | |
from scipy.spatial.distance import cdist | |
# from scipy.spatial.distance import euclidean | |
from bisect import bisect_left | |
import argparse | |
zprint = globals()['__builtins__'].print |
This file contains hidden or 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 os, sys | |
import subprocess | |
# Internal Python Modules | |
from get_urls import URLS | |
DEST = "repos" | |
class FileManager(object): | |
dest = DEST |
OlderNewer