- She gave me a back-handed compliment saying people of my age usually look older
- I was a real bag of bones up until I started eating at McDonalds
- I'd like to join a Halloween bash in some cool place of my neighbourhood, it shouldn't be a bear garden though
- One of our site pages was a real copycat of the "37signals", and they asked for public apologies
- I'll buy you this sweater, don't be a cry-baby please
- Right now we're in a crying need of a better site UX overall because our users don't understand how to integrate
This file contains 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
#1 I'm sure I'm biased from my position | |
#2 I really want to get a core toolbox of flexible features we offer | |
and then shut the doors to a customer by customer basis of customization | |
#3 PC - FTW | |
#4 LOL~~~ had me cracking up! | |
====== | |
#1 It feels like this might be because they themselves are crunching to get the site out | |
the door with minimal hiccups. |
This file contains 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
All people are different. Look at this man for example. He looks like an ordinary Indian does. The area where he lives is not known for its variety of different looks on the street, people mostly wear the same clothes their entire life giving reverence to their culture. Probably the suit is the only clothes that makes him stand out from others. | |
This man, as all others, has a long bird and curly mustaches. He is wearing a yellow turban that perfectly sits on his head covering his ears. You can't guess his age by his look since everyone wears the same clothes, but from his white bird, big bulbous nose and wrinkles on his face I may think he is around 60. But maybe he henna-dyed his bird to look older :) | |
Eyes can say a lot about people. This man's eyes show him cheerful, honest, and happy family man. Such wide-open eyes can't lie. Also, he is quite taller than average, which is a little bonus for those who work in sales, there is a theory that people believe them more. | |
Suit and the patent leathers tell us he |
This file contains 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
[BliVakker.no] Talkable integration error detected | |
The reason was because: | |
The request to create a new origin received: {"email":"[email protected]","order_number":"9698245","subtotal":448.0}. | |
Talkable has existing origin: {"email":"[email protected]","order_number":"9698245","subtotal":419.0}. | |
ip: 84.48.236.85 | |
time: 05:30:22 | |
request: /public/blivakker/purchases/create.js?campaign_tags[]=desk | |
v=0.4 |
This file contains 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
ip: 84.48.236.85 | |
time: 05:41:45 | |
request: /public/blivakker/purchases/create.js?campaign_tags[]=desk | |
v=0.4 | |
p[order_number]=9698245 | |
p[order_date]=28.10.2014+12%3a30%3a20 | |
p[email]=sr36083%40gmail.com | |
p[subtotal]=448.00 | |
p[customer_id]=3696467 | |
p[i][1][product_id]=3012976 |
This file contains 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
// Pop-up and its toggle | |
$('[data-toggle]').click(function(e) { | |
var element = $(this).attr('data-toggle'); | |
var $popup = $('[data-popup="' + element + '"]'); | |
$popup.hasClass('is-shown') ? $popup.hide().removeClass('is-shown') : $popup.show().addClass('is-shown'); | |
e.preventDefault(); | |
}); |
This file contains 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
$(".js-countdown").countdown({ | |
until: "{{ friend_offer.valid_until_including_offset | format_date: "%s" }}", | |
labels: ["year", "month", "week", "days", "hours", "minutes", "seconds"], | |
layout: "Deal expires in {d<}{dn} {dl}, {d>} {hnn} {hl}, {mnn} {ml}, {snn} {sl}.", | |
onExpiry: hideCountdown | |
}); |
This file contains 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 an example of a code snippet that you can | |
// share with anyone publicly, or secretly by pressing "Create secret gist" |
This file contains 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
{% comment %} | |
subtotal check (>= 1499) is hardcoded on back-end | |
{% endcomment %} | |
{% if tiered.advocate_referrals.approved_count == 1 %} | |
true | |
{% else %} | |
Advocate's referrals count should equal 1 | |
{% endif %} |
This file contains 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
set nocompatible " be iMproved | |
set nocompatible | filetype indent plugin on | syn on | |
filetype off " required! | |
call plug#begin('~/.vim/plugged') | |
"Plug 'rstacruz/vim-hyperstyle' | |
Plug 'tpope/vim-fugitive' | |
Plug 'kchmck/vim-coffee-script' | |
Plug 'mileszs/ack.vim' | |
Plug 'rking/ag.vim' |