leadSource | Count |
---|---|
"" | 892 |
Direct | 4939 |
Directory | 1063 |
Friends and Family | 1 |
Google Ad Words | 2 |
Google PPC | 7233 |
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
// Overly complicated search form which uses custom state management 👎 | |
function SearchBox() { | |
const [queryParams, setQueryParams] = useState({ showAllResults: false }); | |
const handleSearchChange = (ev) => { | |
const eventValue = ev.target.value; | |
setQueryParams({ ...queryParams, q: eventValue }); | |
} | |
On all of the FF websites, we currently have a pixel installed with this code:
<script src="https://cdn.flooringstores.com/js/floorforce-analytics.min.js"></script>
It needs to be replaced with this new code, so it points to the new home of the pixel:
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
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'tty-markdown' | |
end | |
print TTY::Markdown.parse <<~MSG | |
```ruby | |
def 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
# frozen_string_literal: true | |
source "https://rubygems.org" | |
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } | |
# gem "rails" | |
gem "puma", "~> 3.12" | |
gem "guard-puma", "~> 0.5.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
--- | |
version: '3.6' | |
services: | |
pubsub: | |
image: adhawk/google-pubsub-emulator | |
ports: | |
- 8085:8085 |
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
CREATE EXTENSION IF NOT EXISTS "unaccent"; | |
CREATE OR REPLACE FUNCTION slugify("value" TEXT) | |
RETURNS TEXT AS $$ | |
-- removes accents (diacritic signs) from a given string -- | |
WITH "unaccented" AS ( | |
SELECT unaccent("value") AS "value" | |
), | |
-- lowercases the string | |
"lowercase" AS ( |
I hereby claim:
- I am ianks on github.
- I am ianks (https://keybase.io/ianks) on keybase.
- I have a public key whose fingerprint is 7E9D 6E06 C304 B6F3 9E18 C44B 5973 1153 87DF BE93
To claim this, I am signing this object:
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
source 'https://rubygems.org' | |
gem 'curb' |
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
source 'https://rubygems.org' | |
gem 'curb' |