- Keep target/current branch changes:
git checkout --ours my/file.ext
- Keep contributing branch changes:
git checkout --theirs my/file.ext
- Preview:
https://docs.google.com/spreadsheets/d/<document_id>/preview
- HTML embed:
https://docs.google.com/spreadsheets/d/<document_id>/htmlembed
- Export CS 1:
https://docs.google.com/u/0/uc?id=<document_id>&export=cs
- Export CS 2:
https://drive.google.com/uc?id=<document_id>&export=cs
More tricks
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 subprocess import run | |
import logging | |
import sys | |
if __name__ == "__main__": | |
cmd_line = sys.argv[1:] | |
return_code = -1 | |
while return_code!=0: | |
logging.warn('Executing command line "{}"'.format(' '.join(cmd_line))) |
!apt-get install openjdk-8-jdk-headless -qq > /dev/null
!wget -q https://www-us.apache.org/dist/spark/spark-2.4.7/spark-2.4.7-bin-hadoop2.7.tgz
!tar xf spark-2.4.7-bin-hadoop2.7.tgz
!pip install -q findspark
import os
os.environ["JAVA_HOME"] = "/usr/lib/jvm/java-8-openjdk-amd64"
os.environ["SPARK_HOME"] = "/content/spark-2.4.7-bin-hadoop2.7"
import findspark
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
To install these bookmarklets, drag and drop the links to your bookmarks bar: | |
<ul> | |
<li><a href="javascript:!function(){var n,e,r,i;n=window,e=document.body,r=JSON.parse,i=JSON.stringify,n.isf||(e.innerHTML="<pre>"+i(r(e.innerText),null,4).replace(/\"(.*)[^\:]\:/g,'<span style="color:#9C3636">$1:</span>')+"</pre>",n.isf=!0)}();">JSON!!</a></li> | |
<li><a href="javascript:void%20function(){(function(){function%20a(a,b){return{apply:function(d,e,f){if(!e[a].__grid_ran){const%20d=new%20Proxy(e[a],c(e,b));d.__grid_ran=!0,e[a]=d}return%20d.apply(e,f)}}}function%20b(a,b){return{apply:function(d,e,f){if(!f[0][a].__grid_ran){const%20d=new%20Proxy(f[0][a],c(f[0],b));d.__grid_ran=!0,f[0][a]=d}return%20d.apply(e,f)}}}function%20c(a,b){return{get:function(c,d){let%20g=Reflect.get(c,d);return%22function%22==typeof%20g%26%26(g=g.bind(c)),l%26%26%22get%22==d%3Fc=%3E({[b]:(d,h)=%3E{try{return%20f.call(a,d,h)}catch(a){return%20console.error(a),g(c)[b](d,h)}}}):g}}}function%20d(a){return{apply:function(b,c,d){if(!c.isDispose |
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 | |
def groupby(keys, values, func=np.sum, axis=0, stable=True): | |
if axis != 0: | |
raise NotImplementedError | |
stable = True | |
sorter = np.argsort(keys, kind='mergesort' if stable else 'quicksort') |
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
#!/usr/bin/env bash | |
# CLI for Google Cloud shell. | |
# | |
# Requirements: | |
# - gcloud | |
# - grep with Perl regexp support | |
# - curl | |
get_json_key () { | |
echo $2 | grep -Po '"'$1'": *"?\K.*?(?=[ ",}])' |
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
<meta charset="utf-8"> | |
**LaTeX-style Starter Document** | |
Welcome to Markdeep. It's the simple way to write plain text with | |
_style_. From [Causal Effects](https://casual-effects.com/markdeep). | |
Section | |
=============================================================================== |
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
#!/usr/bin/env bash | |
# DNS lookup in Bash without "host", "dig" or "nslookup" | |
[[ $# -ne 1 ]] && echo "Please provide host name" && return 1 | |
HOST="$1" | |
getent hosts $HOST |
NewerOlder