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
| [ERROR] /Volumes/Vault/Projekty/tunemates.com/website/src/main/scala/com/tunemates/snippet/Auth.scala:25: error: missing parameter type for expanded function ((x$1) => "username".$minus$greater(SHtml.text("", username = x$1))) | |
| [INFO] "username" -> SHtml.text("", username = _), | |
| [INFO] ^ | |
| [ERROR] two errors found | |
| [ |
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
| /opt/ruby/lib/ruby/gems/1.8/gems/hpricot-0.8.3/lib/hpricot/parse.rb:33: [BUG] Segmentation fault | |
| ruby 1.8.7 (2010-04-19 patchlevel 253) [x86_64-linux], MBARI 0x6770, Ruby Enterprise Edition 2010.02 |
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
| $ irb | |
| irb(main):001:0> "zażółć gęślą jaźń" | |
| => "za\305\274\303\263\305\202\304\207 g\304\231\305\233l\304\205 ja\305\272\305\204" |
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
| fiend ~ # chown dmilith:staff .zsh_history | |
| fiend ~ # ls -la .zsh_history | |
| -rw------- 1 dmilith staff 26991 Nov 25 12:38 .zsh_history |
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
| /opt/ruby/lib/ruby/gems/1.8/gems/hpricot-0.8.3/lib/hpricot/parse.rb:33: [BUG] Segmentation fault | |
| ruby 1.8.7 (2010-04-19 patchlevel 253) [x86_64-linux], MBARI 0x6770, Ruby Enterprise Edition 2010.02 | |
| /opt/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.0/bin/passenger-stress-test:244:in `note_progress': undefined method `[]' for nil:NilClass (NoMethodError) | |
| from /opt/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.0/bin/passenger-stress-test:242:in `each' | |
| from /opt/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.0/bin/passenger-stress-test:242:in `note_progress' | |
| from /opt/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.0/bin/passenger-stress-test:223:in `run_crawlers' | |
| from /opt/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.0/bin/passenger-stress-test:103:in `start' | |
| from /opt/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.0/bin/passenger-stress-test:345 | |
| from /opt/ruby/bin/passenger-stress-test:19:in `load' |
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
| [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2:java (default-cli) on project svd.kqueue: An exception occured while executing the Java class. nul\ | |
| l: NullPointerException -> [Help 1] | |
| org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2:java (default-cli) on project svd.kqueue: An excep\ | |
| tion occured while executing the Java class. null | |
| at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:203) | |
| at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:148) | |
| at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:140) | |
| at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84) | |
| at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.bui |
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
| fiend ~/ekg2 % scons UNICODE=1 | |
| scons: Reading SConscript files ... | |
| scons: warning: The Options class is deprecated; use the Variables class instead. | |
| File "/usr/home/dmilith/ekg2/SConstruct", line 214, in <module> | |
| scons: warning: The ListOption() function is deprecated; use the ListVariable() function instead. | |
| File "/usr/home/dmilith/ekg2/SConstruct", line 219, in <module> | |
| scons: warning: The BoolOption() function is deprecated; use the BoolVariable() function instead. |
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
| #!/bin/bash | |
| # This Software is a close code project. You may not redistribute this code without permission of author. | |
| . bin/OPTS | |
| $COMMAND scala:doc | |
| exit 0 |
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
| #!/bin/bash | |
| sed -e 's/Tests run: \([^,]*\), Failures: \([^,]*\), Errors: \([^,]*\), Skipped: \([^,]*\)/[1;32mTests run: \1[0m, Failures: [1;31m\2[0m, Errors: [1;33m\3[0m, Skipped: [1;34m\4[0m/g' \ | |
| -e 's/\(\[WARNING\].*\)/[1;33m\1[0m/g' \ | |
| -e 's/\(\[INFO\].*\)/[1;37m\1[0m/g' \ | |
| -e 's/\(\[ERROR\].*\)/[1;31m\1[0m/g' \ | |
| -e 's/\(BUILD\ SUCCESS.*\)/[1;32m\1[0m/g' \ | |
| -e 's/\(BUILD\ FAILURE.*\)/[1;35m\1[0m/g' \ | |
| -e 's/\(FAILURE.*\)/[1;35m\1[0m/g' \ | |
| -e 's/\(SKIPPED.*\)/[1;33m\1[0m/g' \ |
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
| ;============================================================= | |
| ; Script Name: BadManiac's Automagic Looting 2 | |
| ; Author: BadManiac | |
| ; Version: 2.70 FINAL | |
| ; Client Tested with: 5.0.9.1 | |
| ; EUO version tested with: 1.5 Test Version 110 | |
| ; Shard OSI / FS: OSI / works on FS with correct item types | |
| ; Revision Date: 29/03/2007 | |
| ; Public Release: 05/12/2004 | |
| ; Global Variables Used: |