This guide is unmaintained and was created for a specific workshop in 2017. It remains as a legacy reference. Use at your own risk.
Workshop Instructor:
- Lilly Ryan @attacus_au
This workshop is distributed under a CC BY-SA 4.0 license.
| #!/bin/bash | |
| ### | |
| ### my-script — does one thing well | |
| ### | |
| ### Usage: | |
| ### my-script <input> <output> | |
| ### | |
| ### Options: | |
| ### <input> Input file to read. | |
| ### <output> Output file to write. Use '-' for stdout. |
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| defmodule Boydm.Utilities.Map do | |
| #============================================================================ | |
| # similar to List.meyers_difference, the below code compares two maps | |
| # and generates a list of actions that can be applied to the first map | |
| # to transform it into the second map. | |
| #-------------------------------------------------------- | |
| def difference(map_1, map_2) when is_map(map_1) and is_map(map_2) do | |
| # remove any keys from map_1 that are simply not present (at all) in map_2 |
This guide is unmaintained and was created for a specific workshop in 2017. It remains as a legacy reference. Use at your own risk.
Workshop Instructor:
This workshop is distributed under a CC BY-SA 4.0 license.
| /* Hacker News Search Script | |
| * | |
| * Original Script by Kristopolous: | |
| * https://gist.github.com/kristopolous/19260ae54967c2219da8 | |
| * | |
| * Usage: | |
| * First, copy the script into your browser's console whilst on the Hacker News | |
| * jobs page. Then, you can use the query function to filter the results. | |
| * | |
| * For example, |
| git fetch --all | |
| git reset --hard origin/master | |
| git pull origin master |
| This playbook has been removed as it is now very outdated. |