One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
This is a set up for projects which want to check in only their source files, but have their gh-pages branch automatically updated with some compiled output every time they push.
A file below this one contains the steps for doing this with Travis CI. However, these days I recommend GitHub Actions, for the following reasons:
| // Log Angular exceptions to Sentry | |
| $provide.decorator('$exceptionHandler', function($delegate) { | |
| return function(exception, cause) { | |
| $delegate(exception, cause); | |
| Raven.captureException(exception, { | |
| extra: { | |
| cause: cause, | |
| member_email: member.email | |
| } | |
| }); |
| #!/bin/bash | |
| set -e | |
| if [ $# -eq 0 ]; then | |
| echo "USAGE: $0 plugin1 plugin2 ..." | |
| exit 1 | |
| fi | |
| plugin_dir=/var/lib/jenkins/plugins |
| /** | |
| * http://fabricjs.com/js/kitchensink/controller.js | |
| * http://fabricjs.com/js/kitchensink/utils.js | |
| * http://fabricjs.com/js/kitchensink/app_config.js | |
| * http://fabricjs.com/events/ | |
| * view-source:http://fabricjs.com/kitchensink/ | |
| */ | |
| (function() { |
| function table() { | |
| case "$1" in | |
| flip) | |
| echo "(╯°□°)╯︵ ┻━┻ " | |
| ;; | |
| set) | |
| echo "┬─┬ ノ( ゜-゜ノ)" | |
| ;; | |
| man) | |
| echo "(╯°Д°)╯︵ /(.□ . \)" |
| check host appsrv1 with address 127.0.0.1 | |
| start program = "/sbin/start myapp" | |
| stop program = "/sbin/stop myapp" | |
| alert alerts@example.com on {timeout,connection} | |
| if failed port 9009 protocol HTTP | |
| request / | |
| with timeout 3 seconds | |
| then restart | |
| if 10 restarts within 10 cycles then timeout | |
| if 10 restarts within 10 cycles then exec "/usr/bin/monit start aws-dns-healthcheck" |
| import android.accessibilityservice.AccessibilityService; | |
| import android.accessibilityservice.AccessibilityServiceInfo; | |
| import android.util.Log; | |
| import android.view.accessibility.AccessibilityEvent; | |
| public class RecorderService extends AccessibilityService { | |
| static final String TAG = "RecorderService"; | |
| private String getEventType(AccessibilityEvent event) { |