Skip to content
This repository has been archived by the owner on Dec 1, 2019. It is now read-only.

Commit

Permalink
Configured git-lfs to track .github/demo.gif
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Xie committed Nov 29, 2018
1 parent 4a0cd6f commit 1f4deb5
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.github/demo.gif filter=lfs diff=lfs merge=lfs -text
3 changes: 3 additions & 0 deletions .githooks/post-checkout
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.\n"; exit 2; }
git lfs post-checkout "$@"
3 changes: 3 additions & 0 deletions .githooks/post-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-commit.\n"; exit 2; }
git lfs post-commit "$@"
3 changes: 3 additions & 0 deletions .githooks/post-merge
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.\n"; exit 2; }
git lfs post-merge "$@"
3 changes: 3 additions & 0 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.\n"; exit 2; }
git lfs pre-push "$@"
Binary file modified .github/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ Messenger client. And, like all my CLI programs, written in
</p>

## Features
* `begone emojify` – send streams of emojis, en masse
* `begone repeat` – keep repeating a message
* `begone file` – send a file one line at a time
* `begone image` – continually send an image

- `begone emojify` – send streams of emojis, en masse
- `begone repeat` – keep repeating a message
- `begone file` – send a file one line at a time
- `begone image` – continually send an image

## Usage

Expand Down Expand Up @@ -75,6 +76,7 @@ $ begone help <command> # i.e. begone help emojify
## Advanced Usage

### Piping to `begone`

As of `v1.5.0`, it is possible to pipe from an external source to `begone`. This
notably allows for integration with [`dgen`](https://github.com/stevenxie/dgen),
resulting in one of the most destructive command pipelines I have ever seen:
Expand All @@ -84,8 +86,8 @@ dgen "👅" fb | begone repeat --stdin <conversation ID>
```

_Reserve this pipeline for extremely rare occasions. I am not responsible for
the extreme amount of damage this might cause if used regularly._
the extreme amount of damage this might cause if used regularly._

### Making from source

> This requires the [Go](https://golang.org) language and associated toolchain
Expand All @@ -107,18 +109,20 @@ $ make install # (or go install)
## FAQ

### Will this steal my password?

No. Your password is sent directly to Facebook's servers, as if you were logging
in from [messenger.com](https://www.messenger.com) or from Facebook itself.

_But don't take my word for it!_
[See the code for yourself](https://github.com/stevenxie/fbmsgr/blob/27295a7d480147bdf80f88f01ac9d0fc4b4dffba/auth.go#L76).

### Will I get banned for using this?

Uhhhh I mean, don't use this too often (and don't leave it running for too long)
and you should be fine.

Just... play it safe-ish. Don't abuse this tool too much.
[_The Zucc_](https://www.urbandictionary.com/define.php?term=The%20Zucc) is
Just... play it safe-ish. Don't abuse this tool too much. The
[_Zucc_](https://www.urbandictionary.com/define.php?term=The%20Zucc) is
always watching 👀.

## TODOs
Expand Down

0 comments on commit 1f4deb5

Please sign in to comment.