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
#Types.Interface | |
#Types.Interface builds a type that checks a value responds to given methods. | |
# | |
#Contact = Types.Interface(:name, :phone) | |
# https://dry-rb.org/gems/dry-types/1.7/custom-types/#code-types-interface-code | |
require 'dry-types' | |
require 'dry-struct' | |
module DryStructalBuilder |
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
# Kernel === BasicObject #=> true | |
# Kernel === BasicObject.new #=> false | |
# Kernel === Object.new #=> true | |
# rubocop:disable Style/YodaCondition | |
# can't rely on an unknown object to respond | |
# to the right messages | |
def self.is_a_basic_object?(entity) | |
BasicObject != entity && (!Kernel === entity) | |
end | |
# rubocop:enable Style/YodaCondition |
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 | |
set -Eeuo pipefail | |
COMMIT_SHA="${1:-}" | |
printerr() { printf "\033[0;31m%s\033[0m\n" "$@" >&2; } | |
usage() { | |
# shellcheck disable=SC2016 |
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 | |
# Display UTC in the menubar, and one or more additional zones in the drop down. | |
# The current format (HH:MM:SS) works best with a one second refresh, or alter | |
# the format and refresh rate to taste. | |
# | |
# <swiftbar.title>World Clocks</swiftbar.title> | |
# <swiftbar.version>v1.0</swiftbar.version> | |
# <swiftbar.author>Adam Snodgrass, jtzero</swiftbar.author> | |
# <swiftbar.author.github>jtzero</swiftbar.author.github> |
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 | |
set -Eeuo pipefail | |
sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/datadog-archive-keyring.gpg] https://apt.datadoghq.com/ stable 7' > /etc/apt/sources.list.d/datadog.list" | |
sudo touch /usr/share/keyrings/datadog-archive-keyring.gpg | |
sudo chmod a+r /usr/share/keyrings/datadog-archive-keyring.gpg | |
# Adding the Datadog GPG Key on each ubuntu system | |
curl https://keys.datadoghq.com/DATADOG_APT_KEY_CURRENT.public | sudo gpg --no-default-keyring --keyring /usr/share/keyrings/datadog-archive-keyring.gpg --import --batch |
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
1. Set terminal to rosetta | |
If Rosetta 2 is not installed by default in your M1 Mac, then open the pre-installed Terminal app and run the following command: `/usr/sbin/softwareupdate --install-rosetta --agree-to-license` | |
Rosetta allows us to use apps built for Mac with intel chip. | |
Several CLI tools do not have native versions built for the new M1 architecture. | |
Enabling them on your native M1 Mac terminal can be frustrating. | |
Follow these steps to enable Rosetta: | |
- Select the app(Terminal) in the Finder. | |
- Right click on the app(Terminal) and select Get Info. | |
- In General, check the Open using Rosetta check-box. |
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 jtzero on github. | |
* I am jtzero (https://keybase.io/jtzero) on keybase. | |
* I have a public key ASCj7tmuy-kpBaObL7J8_-EjqUGyVL4wZVdU9OVOyayaIAo | |
To claim this, I am signing this object: |
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 jtzero on github. | |
* I am behrensrkyle (https://keybase.io/behrensrkyle) on keybase. | |
* I have a public key ASDqn5MwgQE_HtMfs9-SOkFMq5PEdr621S30b73pVBQJ_Ao | |
To claim this, I am signing this object: |
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
``` | |
(email_ml) jtzero:~/Documents/ml$ PYSPARK_DRIVER_PYTHON=jupyter PYSPARK_DRIVER_PYTHON_OPTS='notebook' pyspark | |
Traceback (most recent call last): | |
File "/home/jtzero/.local/share/virtualenvs/ml-PBkX3P8r/bin/jupyter", line 8, in <module> | |
sys.exit(main()) | |
File "/home/jtzero/.local/share/virtualenvs/ml-PBkX3P8r/lib/python3.7/site-packages/jupyter_core/command.py", line 247, in main | |
command = _jupyter_abspath(subcommand) | |
File "/home/jtzero/.local/share/virtualenvs/ml-PBkX3P8r/lib/python3.7/site-packages/jupyter_core/command.py", line 134, in _jupyter_abspath | |
'Jupyter command `{}` not found.'.format(jupyter_subcommand) | |
Exception: Jupyter command `jupyter-/home/jtzero/.local/share/virtualenvs/ml-PBkX3P8r/bin/find_spark_home.py` not found. |
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
# asdf | |
#=> nil | |
# [3] pry(main)> 'asdf' >> pipeto(:puts, 'asdff') | |
# asdf | |
# asdff | |
#=> nil | |
# [4] pry(main)> 'asdf' >> | |
# -> x { x + 'q' } >> | |
# -> x { x + 'w' } | |
# asdfqw |
NewerOlder