Fork me on GitHub
#clojure-europe
<
2020-11-04
>
dharrigan06:11:48

Good morning!

synthomat06:11:16

Good morning

orestis09:11:04

Καλημέρα

orestis09:11:12

I’ve been hosting some random websites on webfaction for years now (like 15 years) and now they’re merging with another host and it’s a headache for me. Is there a turn-key migrate-wordpress paid service I could use? I really don’t want to spend time digging around wordpress.

pez10:11:12

Many static site builders have some kind of WordPress import process.

orestis10:11:51

I need the Wordpress admin etc. though - my definitely non tech parents are updating the site :)

borkdude10:11:58

@orestis My wife just has an account at http://wordpress.com for her blog

orestis10:11:17

Does it support plugins etc? It’s the first one I thought of

borkdude10:11:52

It does, but she didn't enable it because you need to pay extra

orestis11:11:21

Ah right. I’ll need to take a close look.

ordnungswidrig13:11:45

Same hosting for my wife but she’s using only basic functions. I helped her setting it up with template etc. and I found it not pleasant. That might be more because wordpress than the hoster

otfrom16:11:23

this isn't quite there yet, but I'm pleased to be using a transducer on a vector of a vector of maps and an eduction that returns maps the same shape

(def historical-transitions-file "workpackages/001-baseline/validation/transitions.csv")

  (def historical-data
    (t/->data historical-transitions-file
              (comp
               (t/base-transitions-xf historical-transitions-file)
               (map #(assoc % :transition-count 1)))))

  ;; We need joiners per ncy
  (def ay-report
    (transduce
     (comp
      cat
      (filter t/joiner?)
      oay/academic-years-xf)
     xfs/histogram-summary-rf
     [historical-data
      (eduction
       (map #(io/file %))
       stio/thaw-file-xf
       (map #(-> %
                 (update :need-1 name)
                 (update :setting-1 name)
                 (update :need-2 name)
                 (update :setting-2 name)))
       [sim-1001])]))

otfrom16:11:53

cat is very handy

😹 3
otfrom17:11:17

(into []
        cat
        [[1 2 3] [:a :b :c]])
  [1 2 3 :a :b :c]