off-topic

https://github.com/clojurians/community-development/blob/master/Code-of-Conduct.md Clojurians Slack Community Code of Conduct. Searchable message archives are at https://clojurians-log.clojureverse.org/
theVastSilence 2021-02-06T03:25:07.104Z

Greetings! new member here...just saying hi

👋 14
2021-02-06T07:51:45.104900Z

''1 evaluates to the '1 symbol

Grzegorz Smajdor 2021-02-06T13:48:45.106500Z

moin moin folks, I’m starting my project and I’m looking for best strategry for it. The idea is that I’m planning to have the mobile clients and the Web interface. What would be the best approach to that? 1) Build pure backend service with API, 2) Build frontend service, 3) Build mobile clients? Would having a separate services for fontend and backend be good approach? Or would it be better to build backend + frontend in one service? I would appricate advice.

2021-02-06T15:48:46.109100Z

A few people in my building have cars with stupid loud exhausts. Just backing out of their parking space at slow speed is obnoxiously loud. We really need to get the rollout of electric cars going much faster!

2021-02-06T15:51:50.109800Z

Or these cars should have things like a city mode. If you are doing under 20mph the exhaust basic shuts as much of itself off as possible and makes itself quiet

emccue 2021-02-06T16:56:32.110700Z

@grzegorz.smajdor when you say "build mobile clients"

emccue 2021-02-06T16:56:40.111Z

do you mean a website that works well on phones

emccue 2021-02-06T16:56:42.111200Z

or apps

Grzegorz Smajdor 2021-02-06T17:05:39.111900Z

@emccue I’m planning to have the native mobile apps for that

emccue 2021-02-06T17:06:40.113Z

well, the go to way to do a website and an app while sharing a chunk of code is react and react native

emccue 2021-02-06T17:07:33.113500Z

at which point you can use anything that compiles to JS

emccue 2021-02-06T17:08:15.114300Z

if you don't care about sharing logic between the two then you can pick differently

emccue 2021-02-06T17:08:20.114500Z

maybe using flutter or something

caumond 2021-02-06T18:41:05.115900Z

My toyota prius is exactly there. Most of the time, the car is moved by its Electricity under 30 kmh.

Grzegorz Smajdor 2021-02-06T19:39:04.118200Z

@emccue thx for the idea, I was mostly curious about how to split the code within the clj & cljs, what I meant by that, should that be a pure backend service in clj (rest api) and then build separate web client (using cljs) and keep them separated?