, on a more | |
professional note I am a dedicated DevOps/SysAdmin specialist and am the | |
single point of contact for all things operations. Whether its a permanent | |
hire or on a project based contract basis I have the network, passion and tools | |
in place to provide you with an unparalleled level of service. My passion is |
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(main):004:0> def persisted?=(val); val; end | |
SyntaxError: (irb):4: syntax error, unexpected '?', expecting ';' or '\n' | |
def persisted?=(val); val; end | |
^ | |
(irb):4: syntax error, unexpected keyword_end, expecting end-of-input | |
from /Users/benlovell/.rbenv/versions/2.2.2/bin/irb:11:in `<main>' |
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
class Wut | |
def initialize | |
@proc = Proc.new | |
end | |
def call_it | |
@proc.call | |
end | |
end |
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
{ | |
"registered_name": "Money Bags Finance", | |
"postcode_searchable": true, | |
"advisers": [ | |
{ | |
"_id": 1, | |
"name": "Ben Lovell", | |
"location": { | |
"type": "circle", |
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
This is not a typical job post… We are casting a large net looking for the one. | |
We are a very early stage startup looking for a technical co-founder… We | |
started out thinking (against what turned out to be great advice) that we could | |
hire a cheap consultant from (insert -STAN country) to build our product for | |
£50… | |
Boy were we wrong, in fact we could not have been more wrong. As it turns out, | |
if you want to be a software company, you need someone who understands software | |
as a founding partner… go figure… (tongue placed firmly in cheek) |
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
Hey there, | |
Welcome! I’m Mark, the founder of WorkingOn. I love coffee (especially this coffee) | |
and long walks on the beach (or something like it). | |
More than that, I’m passionate about improving the way people work and communicate. | |
You’d help me a ton if you’d share a bit about yourself and how you’re thinking about | |
using WorkingOn. | |
We really want WorkingOn to be a tool you love using. Your input would mean a lot to |
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
herpderp~/Desktop % stackprof stackprof-cpu-wamo.dump --text --limit 20 | |
================================== | |
Mode: cpu(1000) | |
Samples: 71 (1.39% miss rate) | |
GC: 14 (19.72%) | |
================================== | |
TOTAL (pct) SAMPLES (pct) FRAME | |
56 (78.9%) 50 (70.4%) SqlLexer::Lexer#process_array | |
3 (4.2%) 3 (4.2%) SqlLexer::Lexer#process_tokens | |
3 (4.2%) 3 (4.2%) SqlLexer::Lexer#process_end |
- Twitter: @benlovell
- Website or Blog: http://github.com/benlovell
- Lanyrd: http://lanyrd.com/profile/benlovell/
- Slide decks: http://speakerdeck.com/benlovell/>
- Company: 1minus1 Ltd. http://1minus1.com
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
[25] pry(#<API::V1::RecommendedListsController>)> self.class.to_s.split("::").last.gsub(/Controller/,"").underscore | |
=> "recommended_lists" |