Skip to content

Instantly share code, notes, and snippets.

View jxramos's full-sized avatar
🌴
On vacation

jxramos

🌴
On vacation
  • Zoox
View GitHub Profile
@jxramos
jxramos / TransitionToRemote.md
Created August 26, 2020 17:28
A list of companies that went full time remote
@jxramos
jxramos / order_files.py
Last active February 24, 2020 08:41
python script for organizing files by date subfolders
#region imports
# BASE PYTHON
import argparse
import os
import glob
import shutil
from datetime import datetime
# THIRD PARTY
import pandas
@jxramos
jxramos / semantic_notes.md
Created November 5, 2019 22:18
Notes for tools in the semantic space
@jxramos
jxramos / bazel_notes.md
Last active March 8, 2022 19:11
Documenting any cool bazel stuff found along the way

https://github.com/bazelbuild/starlark/

which links to

https://github.com/bazelbuild/starlark/blob/master/spec.md

This document was derived from the [description of the Go implementation](description of the Go implementation) of Starlark.

Which explains why all the buildifier and buildozer stuff is expressed in Go. It was a fallacy to think that the starlark interperter would be in python like the language representation itself.

Searching for starlark imports in the buildtools go files lands upon this very promising beauty...

@jxramos
jxramos / .bash_profile
Last active August 13, 2020 19:03
bash_profile
# MACOS VS LINUX CONFIG
if [[ $OSTYPE == *"darwin"* ]]; then
echo LAUNCHED MACOS BASH PROFILE
VS_CODE_PATH="/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
USER=`id -un`
IS_MAC=1
alias pidof="ps -A | grep $1 | awk '{print $1}'"
copy_suffix=" copy"
sed_no_backup="''"
pip3Path="/Users/$USER/anaconda3/bin/pip"