% Title % Name % Date
List
/* | |
* I add this to html files generated with pandoc. | |
*/ | |
html { | |
font-size: 100%; | |
overflow-y: scroll; | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
} |
ssh
: Access a remote computer.
Examples:
$ ssh [email protected]
$ ssh [email protected]
[global] | |
device = cuda | |
floatX = float32 | |
compute_test_value = off | |
[cuda] | |
root = /usr/local/cuda |
// This will open up a prompt for text to send to a console session on digital ocean | |
// Useful for long passwords | |
(function () { | |
var t = prompt("Enter text to be sent to console, (This wont send the enter keystroke)").split(""); | |
function f() { | |
var character = t.shift(); | |
var i=[]; | |
var code = character.charCodeAt(); | |
var needs_shift = "!@#$%^&*()_+{}:\"<>?~|".indexOf(character) !== -1 |
In [1]: import cupy as cp | |
In [2]: a = cp.array([1, 2, 3]) | |
In [3]: cp.shape(a) | |
--------------------------------------------------------------------------- | |
AttributeError Traceback (most recent call last) | |
<ipython-input-3-e2f1392629a9> in <module>() | |
----> 1 cp.shape(a) |
# This script is intended for downloading all four videos on causality by | |
# Jonas Peters (University of Copenhagen) from YouTube. | |
# | |
# Copyright belongs to their appropriate copyright holders. I am only | |
# providing this script for convenience. | |
# | |
# To run this script, first ensure that you have the Python package | |
# `youtube-dl` installed. Assuming you are able to install it into your | |
# favourite computing environment, it should be a single command: | |
# |
%load_ext autoreload
%autoreload 2
%matplotlib inline
%config InlineBackend.figure_format = 'retina'