I hereby claim:
- I am afnanenayet on github.
- I am afnanenayet (https://keybase.io/afnanenayet) on keybase.
- I have a public key ASAQkK2dLCXxSZGcZgjBXohhb3D5-MaFg2O2vF77TQKzNwo
To claim this, I am signing this object:
| """A script to augment a CSV with FIPS data. | |
| """ | |
| import requests | |
| import requests_futures | |
| import pandas as pd | |
| from typing import cast, Dict, Any | |
| import pdb | |
| import numpy as np | |
| from loguru import logger |
| #!/bin/bash | |
| # The name of the job, can be anything, simply used when displaying the list of running jobs | |
| #$ -N pbrt-killeroos-render | |
| # Combining output/error messages into one file | |
| #$ -j y | |
| # Set memory request: | |
| #$ -l vf=1G | |
| # Set walltime request: | |
| #$ -l h_rt=02:59:59 | |
| # set num threads |
I hereby claim:
To claim this, I am signing this object:
| " deoplete.vim contains vim settings relevant to the deoplete autocompletion | |
| " plugin | |
| " for more details about my neovim setup see: | |
| " http://afnan.io/2018-04-12/my-neovim-development-setup/ | |
| " deoplete options | |
| let g:deoplete#enable_at_startup = 1 | |
| let g:deoplete#enable_smart_case = 1 | |
| " disable autocomplete by default |
| # Implements a logistic regression with mini-batch gradient descent using tensorflow | |
| # testing with the sklearn moons dataset | |
| import tensorflow as tf | |
| import numpy as np | |
| from datetime import datetime | |
| from sklearn.datasets import make_moons | |
| def get_tb_dir(prefix=None) -> str: |
| # Implements a logistic regression with mini-batch gradient descent using tensorflow | |
| # testing with the sklearn moons dataset | |
| import tensorflow as tf | |
| import numpy as np | |
| from datetime import datetime | |
| from sklearn.datasets import make_moons | |
| def get_tb_dir(prefix=None) -> str: |
| /* gdb_valgrind_example.c Afnan Enayet | |
| * | |
| * An example designed to help a user understand how to | |
| * use GDB/LLDB and Valgrind | |
| * | |
| * Functions: | |
| * - init_str: a functions that initializes a string | |
| * to "hello" | |
| * | |
| */ |
| # Iterate through arguments supplied from the command line with | |
| # a loop in Bash script | |
| for arg in "$@" | |
| do | |
| echo "$arg" | |
| done | |
| # Example usage: | |
| # ./iter_args.sh 1 2 3 4 5 |
| /* | |
| * atoi - read an integer from each argument, | |
| * and print them to stdout. catch errors. | |
| * | |
| * usage: ./atoi [integer]... | |
| * | |
| * CS50, July 2017 | |
| */ | |
| #include <stdio.h> |
| #include <iostream> | |
| using namespace std; | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif | |
| void loop(); | |
| #ifdef __cplusplus |