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 Seaborn's official documentation: | |
# | |
# https://seaborn.pydata.org/generated/seaborn.FacetGrid.html | |
# | |
>>> import pandas as pd | |
>>> df = pd.DataFrame( | |
... data=np.random.randn(90, 4), | |
... columns=pd.Series(list("ABCD"), name="walk"), | |
... index=pd.date_range("2015-01-01", "2015-03-31", |
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
# | |
# Original solution via StackOverflow: | |
# http://stackoverflow.com/questions/35802939/install-only-available-packages-using-conda-install-yes-file-requirements-t | |
# | |
# | |
# Install via `conda` directly. | |
# This will fail to install all | |
# dependencies. If one fails, | |
# all dependencies will fail to install. |
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
# | |
# The following statement closes | |
# all PostgreSQL connections except | |
# for the one currently open (i.e. | |
# the one sending the query). | |
# | |
# Original solution by: http://goo.gl/znBpH | |
# | |
SELECT pg_terminate_backend(pg_stat_activity.pid) | |
FROM pg_stat_activity |
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
# | |
# This file contains a shell script | |
# that will add a header to a TXT file | |
# without a header. Headers make it easier | |
# to navigate files. We like them. | |
# | |
# Original solution by: http://stackoverflow.com/questions/13402809/insert-a-line-in-csv-file | |
# | |
FILE=file_without_header.txt | |
sed -i.bak 1i"HEADER1,HEADER2,HEADER3" \ |
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
Host intermediary | |
User foobar | |
Hostname 100.100.121.33 | |
Port 14500 | |
ServerAliveInterval 60 | |
ServerAliveCountMax 30 | |
Host target | |
User foobar | |
Hostname 100.100.232.44 |
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 | |
# | |
# Assuming files contain the same headers | |
# and that they are organized in the same | |
# way, this script merges all files from | |
# a given directory into a single file. | |
# | |
cat *.csv | grep -v ^Pool > merged.csv |
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 | |
# | |
# The following script finds the | |
# latest (edited or created) 10 files | |
# on a Linux system. It runs quite | |
# quickly. | |
# | |
find . -type f -printf "%C@ %p\n" | sort -rn | head -n 10 | |
# |
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
### Keybase proof | |
I hereby claim: | |
* I am luiscape on github. | |
* I am luiscape (https://keybase.io/luiscape) on keybase. | |
* I have a public key whose fingerprint is 9EA2 6BE7 45D5 E250 E1B7 F274 CAC3 B9C0 7E2B 4271 | |
To claim this, I am signing this object: |
NewerOlder