All code is available in example app - https://github.com/maxivak/webpacker-rails-example-app
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
// found here http://forums.shopify.com/categories/2/posts/29259 | |
var getOrdinal = function(n) { | |
var s=["th","st","nd","rd"], | |
v=n%100; | |
return n+(s[(v-20)%10]||s[v]||s[0]); | |
} |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
I hereby claim:
- I am yetti on github.
- I am yetti (https://keybase.io/yetti) on keybase.
- I have a public key ASADm2na3C-1FjRZaeol_mB7fc_3A94rUlUgDOdwrg7zAgo
To claim this, I am signing this object:
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
https://www.javacodegeeks.com/2015/07/understanding-callable-and-spring-deferredresult.html | |
suppyAsync() - supply task pool executor as 2nd param | |
whenAsyncComplete() - set result of promise | |
thenCompose() - to add new tasks | |
poolsize: Runtime.getRuntime().availableProcessors() + 1 |
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
status = error | |
name = PropertiesConfig | |
#filter.threshold.type = ThresholdFilter | |
#filter.threshold.level = debug | |
appender.console.type = Console | |
appender.console.name = STDOUT | |
appender.console.layout.type = PatternLayout | |
appender.console.layout.pattern = %d{yyyy-MMM-dd HH:mm:ss a} [%t] %-5p %c{36} - %m%n |
I hereby claim:
- I am yetti on github.
- I am yetti (https://keybase.io/yetti) on keybase.
- I have a public key ASBfNHRwciEKe_wTVYxDVZ0AXjMBSIQIhXvvafjwY3FuKgo
To claim this, I am signing this object:
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
#!/bin/bash | |
path=$1 | |
if [[ -n "$path" ]]; then | |
git fetch origin refs/svn/map:refs/notes/commits | |
cat $path | git notes copy --stdin | |
cat $path | cut -d' ' -f 1 | git notes remove --stdin | |
git notes prune | |
git update-ref refs/notes/commits $(git commit-tree refs/notes/commits^{tree} -m "notes squashed") |
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
#!/bin/bash | |
echo -e "\033[0;32mDeploying updates to GitHub...\033[0m" | |
# Add changes to git. | |
git add -A | |
# Commit changes. | |
msg="deploying updates `date`" | |
if [ $# -eq 1 ] |
NewerOlder