- ???
- Bidsketch
- Proposable
| $ = jQuery; | |
| /* | |
| * jQuery BBQ: Back Button & Query Library - v1.3pre - 8/26/2010 | |
| * http://benalman.com/projects/jquery-bbq-plugin/ | |
| * | |
| * Copyright (c) 2010 "Cowboy" Ben Alman | |
| * Dual licensed under the MIT and GPL licenses. | |
| * http://benalman.com/about/license/ | |
| */ |
| Brennan, | |
| Hey! So I’m excited to share with you that on Monday I’ll be hosting a Rate Setting Workshop, the first live & free event I’ve done in over a year. I’d love for you to join (and I think you’ll get a lot out of it.) At the end of this email I have all the details you need to RSVP. | |
| But first, a few thoughts on pricing — which is much more than just the amount you charge clients. | |
| Over the last few years, I’ve built this list of thousands of freelancers. And along the way, I’ve collected a ton of data. | |
| The most interesting data point — and the one that’s easiest to plot and run calculations on — are people’s rates. |
| [Sep 9 2014, 3:25 PM] buxx: Will the presentation be available afterwards? | |
| [Sep 9 2014, 3:26 PM] buxx: There will be anothe presentation this night, some kind of tech company is telling what they are going to sell around the world, stuff like that. | |
| [Sep 9 2014, 3:46 PM] moreaulouisp: in a past email they wrote this : "don't worry — we'll send you the recording! (Though we encourage you to join for the live Q&A)" | |
| [Sep 9 2014, 4:01 PM] buxx: Ooooh great, thank you. | |
| [Sep 9 2014, 4:02 PM] moreaulouisp: no problem. | |
| [Sep 9 2014, 4:58 PM] brennandunn: Hey everyone! | |
| [Sep 9 2014, 4:58 PM] brennandunn: Officially tailgating this event by watching the Apple event :-) | |
| [Sep 9 2014, 4:59 PM] guivarq: Greetings from Belo Horizonte, Brasil! | |
| [Sep 9 2014, 5:05 PM] pcrepairsdublin: Hi |
| require 'sinatra' | |
| require 'infusionsoft' | |
| require 'logger' | |
| Infusionsoft.configure do |config| | |
| config.api_url = 'XXXX.infusionsoft.com' | |
| config.api_key = 'XXXXXXXXXXXXXXX' | |
| config.api_logger = Logger.new("./infusionsoft_api.log") | |
| end |
| apply_name = (source, prefix) -> | |
| for name, obj of source | |
| if typeof obj is 'object' | |
| apply_name(obj, "#{prefix}.#{name}") | |
| else | |
| obj.__name__ = "#{prefix}.#{obj.name}" | |
| apply_name Planscope, 'Planscope' |
| def cancel(account, message) | |
| @account = account | |
| @message = message | |
| mail to: '[email protected]', subject: "Cancel: #{account.owner.email}" | |
| end |
| _kmq.push(['trackClick', 'header_logo', 'Clicked Marketing Site CTA', { 'link': 'logo' }]); | |
| _kmq.push(['trackClick', 'header_cta_link', 'Clicked Marketing Site CTA', { 'link': 'learn_more' }]); | |
| _kmq.push(['trackClick', 'sidebar_ad', 'Clicked Marketing Site CTA', { 'link': 'sidebar_ad' }]); | |
| jQuery('.entry-content').on('click', 'a', function(e) { | |
| url = jQuery(e.target).attr('href'); | |
| if (url.indexOf("https://planscope.io") == 0 && url.indexOf("blog") == -1) { | |
| var article_name = jQuery(e.target).closest('.post').find('h1').text(); | |
| _kmq.push(['record', 'Clicked Marketing Site CTA', { 'link': 'content_click', 'article': article_name }]); |
| Hi there, | |
| Oh man, we're so sorry to see you go. Low use and getting site visitors to engage is the #1 issue to address when beginning to provide live chat on your site. We have a number of strategies to help with this: | |
| Have you tried using our attention grabbers to get more response from your visitors? https://www.olark.com/blog/2011/get-more-attention-from-your-customers/ This and/or the click to chat images might help with getting visitors to notice the live chat option on your site. https://www.olark.com/help/addimage | |
| You can also try adding Targeted Chat rules to proactively start chats with your visitors. It's easy to set up and most people report a huge jump in number of chats when they get proactive about it. https://www.olark.com/extensions/targeting | |
| We also have a best practices in live chat that addresses many small things you do to augment user interactions. Check it out: http://www.olark.com/blog/2012/olark-best-practices-for-getting-started-with-live-chat/ |
| use Rack::Static, | |
| :urls => ["/assets"], | |
| :root => "public" | |
| run lambda { |env| | |
| page = 'index' | |
| case env['REQUEST_URI'] | |
| when /thanks/i | |
| page = 'thanks' | |
| when /build-a-consultancy/i |