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
josiah@josiah-VirtualBox:~/Development/miracle-tracking-rails$ rake neo4j:install[community-2.0.0] | |
rake aborted! | |
Don't know how to build task 'neo4j:install' | |
/home/josiah/.rvm/gems/ruby-2.1.0/bin/ruby_executable_hooks:15:in `eval' | |
/home/josiah/.rvm/gems/ruby-2.1.0/bin/ruby_executable_hooks:15:in `<main>' | |
(See full trace by running task with --trace) |
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
josiah@josiah-VirtualBox:~/Development/miracle-tracking-rails$ rake neo4j:install[community-2.0.0] --trace | |
rake aborted! | |
Don't know how to build task 'neo4j:install' | |
/home/josiah/.rvm/gems/ruby-2.1.0/gems/rake-10.1.1/lib/rake/task_manager.rb:49:in `[]' | |
/home/josiah/.rvm/gems/ruby-2.1.0/gems/rake-10.1.1/lib/rake/application.rb:148:in `invoke_task' | |
/home/josiah/.rvm/gems/ruby-2.1.0/gems/rake-10.1.1/lib/rake/application.rb:106:in `block (2 levels) in top_level' | |
/home/josiah/.rvm/gems/ruby-2.1.0/gems/rake-10.1.1/lib/rake/application.rb:106:in `each' | |
/home/josiah/.rvm/gems/ruby-2.1.0/gems/rake-10.1.1/lib/rake/application.rb:106:in `block in top_level' | |
/home/josiah/.rvm/gems/ruby-2.1.0/gems/rake-10.1.1/lib/rake/application.rb:115:in `run_with_threads' | |
/home/josiah/.rvm/gems/ruby-2.1.0/gems/rake-10.1.1/lib/rake/application.rb:100:in `top_level' |
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
josiah@josiah-VirtualBox:~/Development/miracle-tracking-rails$ rails c | |
NameError: uninitialized constant Rails::Railtie | |
const_missing at org/jruby/RubyModule.java:2689 | |
Neo4j at /home/josiah/.rvm/gems/jruby-1.7.9/gems/neo4j-3.0.0.alpha.3/lib/neo4j/railtie.rb:2 | |
(root) at /home/josiah/.rvm/gems/jruby-1.7.9/gems/neo4j-3.0.0.alpha.3/lib/neo4j/railtie.rb:1 | |
require at org/jruby/RubyKernel.java:1083 | |
(root) at /home/josiah/Development/miracle-tracking-rails/config/application.rb:1 | |
each at org/jruby/RubyArray.java:1613 | |
(root) at /home/josiah/Development/miracle-tracking-rails/config/application.rb:11 | |
require at org/jruby/RubyKernel.java:1083 |
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
package com.cerner.pophealth.appservices.caremanagement.candidates.pipeline.data | |
import com.cerner.pophealth.appservices.caremanagement.candidates.models.pipeline.intermediate.{ | |
PersonnelOrgIds, | |
OrgAdminPersonnels | |
} | |
import com.cerner.pophealth.appinfra.pipeline.utilities.SerializableAvro; | |
import java.util.{ Collections, UUID, Arrays => JArrays, List => JList, ArrayList => JArrayList } | |
import java.lang.{ String => JString } |
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
public class PersonnelETL extends BaseCommand { | |
@Override | |
protected final int run(CommandLine line) throws Exception { | |
return runETLProcess( | |
line, | |
ObjectGraph.create( | |
new PersonnelModule( | |
getConf(), | |
line.getOptionValue(OPTION_CLIENT), | |
line.getOptionValue(OPTION_POPULATION), |
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
return otherCareManager.getId().equals(getId()) && | |
otherCareManager.getCareManagerId().equals(getCareManagerId()) && | |
otherCareManager.getClientId().equals(getClientId()) && | |
otherCareManager.getName().equals(getName()) && | |
otherCareManager.getVersion().equals(getVersion()); |
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
fibs :: [Integer] | |
fibs = 0 : 1 : zipWith (+) fibs (tail fibs) | |
-- print the first 100 fibonacci numbers | |
main :: IO () | |
main = print $ take 100 fibs |
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
imageSignal : Signal Element | |
imageSignal = sampleOn (every second) (constant (image 400 400 imageURL)) |
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
-- apply a style function to a shell prompt functor | |
-- e.g. | |
-- bold & fgColor red `style` gitCurrentBranch | |
style :: (String -> ShellPromptType -> String) -> ShellPromptSegment String | |
-> ShellPromptType -> ShellPromptSegment String | |
style f segment = \shType -> (flip f) shType <$> segment | |
-- this is fine | |
style' :: (String -> ShellPromptType -> String) | |
-> (ShellPromptType -> ShellPromptSegment String) |
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
mvn archetype:generate -DgroupId=group.id -DartifactId=artifact-id -DarchetypeArtifactId=maven-archetype-quickstart |
OlderNewer