ldnclj

Find us on #clojure-uk
thomas 2016-01-18T09:40:14.001144Z

Morning

thomas 2016-01-18T09:40:20.001145Z

welcome to a new week

mccraigmccraig 2016-01-18T10:01:46.001146Z

good moaning!

agile_geek 2016-01-18T10:03:10.001147Z

Bore da

agile_geek 2016-01-18T12:04:07.001148Z

@thomas had a long argument the other day over whether a week starts on Monday or Sunday so not sure I accept your assertion 😉

mccraigmccraig 2016-01-18T12:34:12.001149Z

@agile_geek: if you accept the assertions that each day of the week is in exactly one of the three sets [beginning, middle, end], and that sunday is a day of the week-end, then the week must begin on monday ?

xlevus 2016-01-18T12:35:22.001150Z

@agile_geek: I had the same argument with the wife, who puts sunday first on her calendar (wtf?!)

xlevus 2016-01-18T12:35:54.001151Z

pointed out ISO standards and told her she was wrong.

xlevus 2016-01-18T12:36:01.001152Z

did not go down well 😆

thomas 2016-01-18T12:43:21.001154Z

I thought it was a US/European thing.

xlevus 2016-01-18T12:44:04.001155Z

It's a religion thing

thomas 2016-01-18T12:44:47.001156Z

yes.... 7th day being a rest day... therefore it is the end of the week.

xlevus 2016-01-18T12:45:10.001157Z

Nope.

xlevus 2016-01-18T12:45:56.001158Z

well, yes. but nope

xlevus 2016-01-18T12:48:03.001159Z

either way, it's all irrelevant. ISO 8601 says the first day of the week is Monday. and without ISO dates would be (even more) MADNESS.

mccraigmccraig 2016-01-18T12:55:15.001161Z

@xlevus: did you try the unique set membership approach on your wife ?

xlevus 2016-01-18T12:55:22.001162Z

@thomas: I believe that in Judaism, the sabbath is 'Saturday'. But then the Romans were like "Day of rest is now SUNDAY. Sux2bjew."

mccraigmccraig 2016-01-18T12:56:13.001163Z

@xlevus: my wife is jewish. she says the first day of the week is monday

mccraigmccraig 2016-01-18T12:56:37.001164Z

she obviously bought the roman kool-aid

xlevus 2016-01-18T12:56:59.001165Z

@mccraigmccraig: Possibly because that's when people go to work. afaik (very little) they go to work on Sunday in Israel.

xlevus 2016-01-18T12:57:33.001166Z

and there's enough different versions of Christianity, they can't make their mind up when the week starts.

mccraigmccraig 2016-01-18T12:58:48.001167Z

bloody judean people's front

thomas 2016-01-18T12:59:00.001168Z

:simple_smile:

xlevus 2016-01-18T12:59:27.001169Z

@mccraigmccraig: You mean, the peoples front of Judea?

thomas 2016-01-18T12:59:47.001170Z

thinking about it... most I care about is when the weekend starts...

mccraigmccraig 2016-01-18T12:59:53.001171Z

@xlevus: i get so confused

agile_geek 2016-01-18T13:11:44.001172Z

The're all splitters

mccraigmccraig 2016-01-18T14:12:43.001173Z

thoughts requested - i've got 4 repos, model, api, eventproc & ui. the api, eventproc and ui all depend on the model. when i make a change to the model and update its version, all of the others need a new version. how to maintain/update version numbers ?

minimal 2016-01-18T14:17:08.001174Z

did you try lein unison?

mccraigmccraig 2016-01-18T14:19:10.001175Z

not yet - thought i'd ask what others are doing before trying out a particular solution

agile_geek 2016-01-18T14:56:00.001176Z

no idea but I'd be interested in what people are doing around this.

mccraigmccraig 2016-01-18T14:59:58.001177Z

here's what onyx does - https://github.com/onyx-platform/onyx/blob/0.8.x/doc/developers-guide/deployment-process.md

tcrayford 2016-01-18T22:23:20.001179Z

@mccraigmccraig: put them all in the same repo and lein project, porblem solved

mccraigmccraig 2016-01-18T23:14:22.001180Z

there are separate artefacts for api, eventproc & ui... one repo could work, but multiple projects are required...