-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
567beba
commit f12afc8
Showing
3 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
**WeirdPal** is a web-app that makes writing parody songs easier by putting the old and new lyrics next to eachother and counting their syllables for matching the prosody. | ||
**WeirdPal** is a web app for writing parody songs. | ||
|
||
It shows the original and parody lines right next to each other and counts the syllables, all to make matching the flow and *prosody~* easier for you. | ||
|
||
Made with **[Elm](https://elm-lang.org/)** because Elm is cool. | ||
|
||
# Build | ||
|
||
$ elm make src/Main.elm --output public/index.js | ||
|
||
or just `./make.sh` and open `public/index.html`. | ||
(or just run `make.sh` that has optimizations) | ||
|
||
Open `public/index.html`. | ||
|
||
# License | ||
Under GPL-3.0 license, but that only goes for the software itself. Any song you make with this is all yours, but credit or a link to the website would be appreciated. 🙏 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#!/bin/bash | ||
elm make src/Main.elm --optimize --output public/index.js | ||
uglifyjs public/index.js --compress 'pure_funcs=[F2,F3,F4,F5,F6,F7,F8,F9,A2,A3,A4,A5,A6,A7,A8,A9],pure_getters,keep_fargs=false,unsafe_comps,unsafe' | uglifyjs --mangle --output public/index.js |
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