Skip to content

Instantly share code, notes, and snippets.

View conan's full-sized avatar

Conan conan

View GitHub Profile
@conan
conan / vbox.log
Created March 11, 2014 12:00
VirtualBox log for error: ssh_exchange_identification: Connection closed by remote host
VirtualBox VM 4.3.8 r92456 darwin.amd64 (Feb 25 2014 18:04:29) release log
00:00:00.059204 Log opened 2014-03-11T11:48:13.508019000Z
00:00:00.059206 Build Type: release
00:00:00.059219 OS Product: Darwin
00:00:00.059225 OS Release: 13.1.0
00:00:00.059232 OS Version: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
00:00:00.059384 DMI Product Name: MacBookPro11,1
00:00:00.059479 DMI Product Version: 1.0
00:00:00.059488 Host RAM: 8192MB total, 3775MB available
00:00:00.059490 Executable: /Applications/VirtualBox.app/Contents/MacOS/VBoxHeadless
@conan
conan / gist:7ba76a938e482f437d25
Created January 6, 2015 09:23
Intellij log looking for cursive REPL error
2015-01-05 11:01:15,758 [4930335] ERROR - impl.file.impl.FileManagerImpl - IntelliJ IDEA 14.0.2 Build #IU-139.659.2
2015-01-05 11:01:15,758 [4930335] ERROR - impl.file.impl.FileManagerImpl - JDK: 1.6.0_65
2015-01-05 11:01:15,758 [4930335] ERROR - impl.file.impl.FileManagerImpl - VM: Java HotSpot(TM) 64-Bit Server VM
2015-01-05 11:01:15,758 [4930335] ERROR - impl.file.impl.FileManagerImpl - Vendor: Apple Inc.
2015-01-05 11:01:15,758 [4930335] ERROR - impl.file.impl.FileManagerImpl - OS: Mac OS X
2015-01-05 11:01:15,758 [4930335] ERROR - impl.file.impl.FileManagerImpl - Last Action: FindUsages
2015-01-05 11:03:35,518 [5070095] ERROR - impl.file.impl.FileManagerImpl - Invalid file: file:///Users/conan/dev/convolo-workers/src/convolo_workers/common.clj
java.lang.Throwable
at com.intellij.openapi.diagnostic.Logger.error(Logger.java:115)
at com.intellij.psi.impl.file.impl.FileManagerImpl.findFile(FileManagerImpl.java:360)

Ship-to Territories

Style.com will ship to 25 countries*:

  • US
  • UK
  • All countries that are included both in the European Union and in the Schengen Zone (23 states)

Currencies

The Tech

We're building Style.com to be the most sophisticated ecommerce platform in the world. We use the latest technology, not just because it's fun (although it is!), but because the best tools help us put together the best team and deliver a great experience for our customers worldwide.

Here's a taste of the tech you'll be working with:

  • Single-page frontend applications based on a ClojureScript/Reagent/React stack
  • Neural net-driven recommendation and search systems in Clojure
  • Automatic curation tools using extensive tag hierarchies in Datomic
  • Containerised deployments on AWS/Docker/Kubernetes

The Tech

We're building Style.com to be the most sophisticated ecommerce platform in the world. We use the latest technology, not just because it's fun (although it is!), but because the best tools help us put together the best team and deliver a great experience for our customers worldwide.

Here's a taste of the tech you'll be working with:

  • Single-page frontend applications based on a ClojureScript/Reagent/React stack
  • Neural net-driven recommendation and search systems in Clojure
  • Automatic curation tools using tag hierarchies in Datomic
  • Containerised deployments on AWS/Docker/Kubernetes

The Tech

We're building Style.com to be the most sophisticated ecommerce platform in the world. We use the latest technology, not just because it's fun (although it is!), but because the best tools help us put together the best team and deliver a great experience for our customers worldwide.

Here's a taste of the tech you'll be working with:

  • Single-page frontend applications based on a ClojureScript/Reagent/React stack
  • Neural net-driven recommendation and search systems in Clojure
  • Automatic curation tools using tag hierarchies in Datomic
  • Containerised deployments on AWS/Docker/Kubernetes
@conan
conan / url-gen.clj
Created October 4, 2017 14:13
Clojure.spec URL and email specs with generators
(require '[cemerick.url :as url]
'[clojure.spec.alpha :as s]
'[clojure.spec.gen.alpha :as gen]
'[clojure.string :as string])
(def non-empty-string-alphanumeric
"Generator for non-empty alphanumeric strings"
(gen/such-that #(not= "" %)
(gen/string-alphanumeric)))
@conan
conan / url-spec.clj
Last active December 30, 2019 16:32
(require
'[cemerick.url :as url]
'[clojure.spec.alpha :as s]
'[clojure.spec.gen.alpha :as sgen])
(defn non-empty-string-alphanumeric
[]
(sgen/such-that #(not= "" %)
(sgen/string-alphanumeric)))
2018-04-16 18:14:13,063 [ 0] INFO - #com.intellij.idea.Main - ------------------------------------------------------ IDE STARTED ------------------------------------------------------
2018-04-16 18:14:13,090 [ 27] INFO - #com.intellij.util.ui.JBUI - User scale factor: 1.5
2018-04-16 18:14:13,090 [ 27] INFO - #com.intellij.util.ui.JBUI - System scale factor: 1.5 (IDE-managed HiDPI)
2018-04-16 18:14:13,113 [ 50] INFO - #com.intellij.idea.Main - IDE: IntelliJ IDEA (build #IU-172.3968.16, 21 Aug 2017 22:13)
2018-04-16 18:14:13,113 [ 50] INFO - #com.intellij.idea.Main - OS: Windows 10 (10.0, amd64)
2018-04-16 18:14:13,113 [ 50] INFO - #com.intellij.idea.Main - JRE: 1.8.0_152-release-915-b11 (JetBrains s.r.o)
2018-04-16 18:14:13,114 [ 51] INFO - #com.intellij.idea.Main - JVM: 25.152-b11 (OpenJDK 64-Bit Server VM)
2018-04-16 18:14:13,122 [ 59] INFO - #com.intellij.idea.Main - JVM Args: -Xms128m -Xmx750m -XX:Rese
Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkState(ZLjava/lang/String;Ljava/lang/Object;)V, compiling:(figwheel_sidecar/repl.clj:1:1)
at clojure.lang.Compiler.load(Compiler.java:7526)
at clojure.lang.RT.loadResourceScript(RT.java:379)
at clojure.lang.RT.loadResourceScript(RT.java:370)
at clojure.lang.RT.load(RT.java:460)
at clojure.lang.RT.load(RT.java:426)
at clojure.core$load$fn__6548.invoke(core.clj:6046)
at clojure.core$load.invokeStatic(core.clj:6045)
at clojure.core$load.doInvoke(core.clj:6029)
at clojure.lang.RestFn.invoke(RestFn.java:408)