A Pen by Jezen Thomas on CodePen.
This file contains hidden or 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
| // choose the characters based on the fingers you want to practice | |
| var chars = "12qwaszx90opl;..c,dk'-=[]!@()_+{}\">?QWASZXOPL>".split(""); | |
| function rand(a) { | |
| return a[Math.floor(Math.random() * a.length)] | |
| } | |
| var str = ""; | |
| for (var i=0; i<600;i++) { | |
| str += rand(chars); |
This file contains hidden or 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
| DEVICE SHELL COMMAND: pm uninstall io.authme.alterapp | |
| DEVICE SHELL COMMAND: pm install -r "/data/local/tmp/io.authme.alterapp" |
This file contains hidden or 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
| jetty-http-9.0.3.v20130506.jar | |
| jetty-io-9.0.3.v20130506.jar | |
| jetty-security-9.0.3.v20130506.jar | |
| jetty-server-9.0.3.v20130506.jar | |
| jetty-servlet-9.0.3.v20130506.jar | |
| jetty-util-9.0.3.v20130506.jar |
This file contains hidden or 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
| import java.io.BufferedWriter; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.OutputStreamWriter; | |
| import java.io.UnsupportedEncodingException; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| import java.util.HashMap; | |
| import java.util.Map; |
- Coupon day data improves the MSE
- MSE for lower/upper uncertainity interval improves if we reduce the interval width (to 0.5 vs 0.8 default)
- Need a lot more data for using 'logistic' growth (with current data, predictions are much higher)
- The predictions MSE improves in general with more data
- The lower/upper MSE are not deterministic (they keep changing slightly with every run, with no change in anything else)
- lower/upper CAP doesnt affect any predictions yet (since we are using high limits)
TODO
- Channel/stream API - End point which consumes the time series points -
- convert all m4a files in a directory to mp3
for foo in *.m4a; do ffmpeg -i "$foo" -acodec libmp3lame -aq 2 "${foo%.m4a}.mp3"; doneOlderNewer