Using the Google Cloud Storage API with R
[Read More]
Getting the Last Modified File from a Folder (R/Python)
Getting the Last Modified File from a Folder
[Read More]
Parsing Arguments from command line to Python Scripts.
If you want to pass arguments to a python script at runtime through the command line, instead of pre-defining them inside the script, we can do this using the library argparse, which parses the commands input from the command line and passes them on to functions in your script.
[Read More]
Create Anaconda Environment
When juggling with multiple projects and workstreams each of which has a disparate set of dependencies, it is a good idea to isolate your work environments. This not only keeps everything clean and organized, it also makes switching between different projects easier and in general is a good programming practice....
[Read More]
Using a custom Font in HTML/CSS
To use a custom font in your HTML page, download the font, most preferably in “.woff” and “.woff2” formats as these render on almost all the common web browser available today. If you don’t have it in this format, you can upload your font here and download a webkit. https://www.fontsquirrel.com/tools/webfont-generator...
[Read More]