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
https://www.amazon.com/gp/product/B073DLZWX7/ref=ppx_yo_dt_b_asin_title_o00__o00_s00?ie=UTF8&psc=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
Dendy Cinemas Opera Quays - Map | |
12:10pm 9:20pm | |
Showtimes at Palace Verona | |
Palace Verona - Map | |
3:20pm 9:10pm | |
Showtimes at Chauvel, Paddington | |
Chauvel, Paddington - Map | |
2:30pm 6:50pm |
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
use std::rc::Rc; | |
extern crate core; | |
use core::cell::RefCell; | |
use std::ops::Deref; | |
type RT = Rc<RefCell<Thing>>; | |
struct Thing { | |
a: Vec<String>, | |
} |
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
#!/bin/bash | |
# fileid="### file id ###" | |
fileid="1hEG-GmMrvp--hWRU41RMBLB3gL-IdXs9" | |
filename="ILSVRC2014_devkit.tar" | |
curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null | |
curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=${fileid}" -o ${filename} |
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
From <a href="https://www.facebook.com/yann.lecun/posts/10155003011462143">here</a>: | |
<h1> | |
Yann LeCun | |
</h1> | |
<i>5 January</i> | |
<p>OK, Deep Learning has outlived its usefulness as a buzz-phrase. Deep Learning est mort. Vive Differentiable Programming!</p> |
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
#------------------------------------------------------------------ | |
# STACK HELP | |
#------------------------------------------------------------------ | |
# Check if this is actually a stack project | |
function _is_stack() | |
{ | |
if ! [[ -f stack.yaml ]] | |
then | |
echo "Current directory does not appear to be a stack project..." |
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 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
7 | |
2 | |
1 | |
0 | |
4 | |
1 | |
4 | |
9 | |
5 | |
9 |
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
function json-env -d "Takes a JSON file of config values and uses them as ENV vars for a command.. | |
e.g. json-env env.json node --inspect src/index.js" | |
eval env -S (cat $argv[1] | jq 'to_entries | reduce .[] as $item (""; . + "\($item.key)=\($item.value) ")') $argv[2..-1] | |
end |
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
function docker-bash -d "Run image & start interactive BASH shell" | |
docker run -i -t $argv[1] /bin/bash | |
end |
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
function ping-ping -d "Do I have internet or fucking what?" | |
ping google.com | |
end |
NewerOlder