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
| W, [2014-06-18T10:09:04.897542 #1838] WARN -- : wat | |
| => true | |
| 2.0.0-p247 :005 > l.info("wat") | |
| I, [2014-06-18T10:09:37.896198 #1838] INFO -- : wat | |
| => true | |
| 2.0.0-p247 :006 > l.info(["foo", "bar", "wat"]) | |
| I, [2014-06-18T10:10:21.495064 #1838] INFO -- : ["foo", "bar", "wat"] | |
| => true |
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
| [3] pry(main)> parser.file | |
| => #<File:/tmp/st.log.gz> | |
| [4] pry(main)> parser.raw_logs.count | |
| => 13772 | |
| [5] pry(main)> parser.logs_with_dates.count | |
| => 495 |
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
| vagrant@developer:~/src/acumenbrands/dataops/failthru_parser(master*)$ ls -alh /tmp/st.log.gz | |
| -rw-rw-r-- 1 vagrant vagrant 2.8M Aug 21 09:06 /tmp/st.log.gz | |
| vagrant@developer:~/src/acumenbrands/dataops/failthru_parser(master*)$ ls -alh /tmp/raw_logs.out | |
| -rw-rw-r-- 1 vagrant vagrant 24M Aug 21 13:28 /tmp/raw_logs.out | |
| vagrant@developer:~/src/acumenbrands/dataops/failthru_parser(master*)$ ls -alh /tmp/dated_logs.out | |
| -rw-rw-r-- 1 vagrant vagrant 877K Aug 21 13:27 /tmp/dated_logs.out |
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
| core: &core | |
| adapter: postgis | |
| encoding: unicode | |
| host: 127.0.0.1 | |
| username: postgres | |
| database: magnum<%= ENV['CI_BUILD_NUMBER'] %> | |
| development: | |
| <<: *core | |
| test: |
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
| christopher@dissentio:~/src/madetomeasure/madetomeasure$ lein test | |
| Exception in thread "main" java.sql.SQLException: No suitable driver found for jdbc:postgresql://dev, compiling:(subscribers.clj:10:10) | |
| at clojure.lang.Compiler$InvokeExpr.eval(Compiler.java:3558) | |
| at clojure.lang.Compiler$InvokeExpr.eval(Compiler.java:3552) | |
| at clojure.lang.Compiler$DefExpr.eval(Compiler.java:417) | |
| at clojure.lang.Compiler.eval(Compiler.java:6708) | |
| at clojure.lang.Compiler.load(Compiler.java:7130) | |
| at clojure.lang.RT.loadResourceScript(RT.java:370) | |
| at clojure.lang.RT.loadResourceScript(RT.java:361) | |
| at clojure.lang.RT.load(RT.java:440) |
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
| Name | CMC | Type | Power | Toughness | Set | Notes | |
|---|---|---|---|---|---|---|---|
| Veteran's Sidearm | 2 | Artifact - Equipment | ORI | ||||
| Bonded Construct | 1 | Artifact Creature - Construct | 2 | 1 | ORI | ||
| Guardian Automaton | 4 | Artifact Creature - Construct | 3 | 3 | ORI |
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
| #!/usr/bin/env perl | |
| # rtqc.pl - RT quick ticket idiot box | |
| use Tk; | |
| $RT_PATH = "FIXPATH"; | |
| $topWin = MainWindow -> new(); | |
| $topWin -> configure(-title => 'GENERAL QUEUE QUICK COMMIT'); |
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
| <p><b>account: <%= @client.acct %></b></p> | |
| <form action="/update/<%= @client.acct %>" method="post" id="client" enctype="multipart/form-data"> | |
| <p> | |
| <label>Client Name:</label></br /> | |
| <input type="text" name="client[name]" id="name" value="<%= @client.name %>"/> | |
| </p> | |
| <p> | |
| <label>Company Name:</label><br /> |
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
| get '/edit/:acct' do | |
| @title = "Edit Client Data" | |
| @client = HE_Backend.get(params[:acct]) | |
| erb :edit | |
| end | |
| post '/update/:acct' do | |
| client = HE_Backend.get(params[:acct]) | |
| client.attributes = { |
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
| filetype plugin on | |
| filetype indent on | |
| set t_Co=256 | |
| syntax on | |
| colorscheme obsidian | |
| source ~/.vim/plugin/bufferlist.vim | |
| map <silent> <F3> :call BufferList()<CR> | |
| set number |
OlderNewer