Fork me on GitHub
#clojure
<
2022-05-08
>
Intelo08:05:51

Where to find developers with less living costs (thus cheaper). I guess Asian countries like India/Pakistan do not have much clojure(script) developers. Any thoughts?

seancorfield17:05:37

Since this question and thread are inappropriate for #clojure and the thread got started in two other channels as well, I'm deleting all of this here and in #remote-jobs where it is also inappropriate. /admin

pinkfrog13:05:34

A general question on how to serialize clojure data structures. Basically two approaches, json and transit. However, each has its problems. 1. Json: when serialize to json, keyword values are not properly serialized. For example, given {:a :b}, :b will be serialized as “b”. So it loses the information that originally it is a keyword and not a string. 2. Transit. If serialized as transit, the output is not human friendly and cannot be logically parsed. Specifically, I use Postgres as data store (which has a json storage support). It becomes impossible to instruct PG to select json fields and other stuff. Question is, what’s your practice?

p-himik14:05:37

Sounds like you're trying to make an apple taste like an orange. If you have a specific need for one of those, just use it. If you can get away with creating a new PG type, go with that option.

p-himik14:05:50

Note also that conceptually, Transit is not for storage. And while you can disable its keyword caching, making it somewhat human readable, you still wouldn't be able to reasonably use PG's JSON querying facilities. Because Transit is not JSON, even though it wraps it.

p-himik14:05:55

And to answer your final question about the practice: 1. Come up with a list of requirements, where each requirement has a weight 2. Come up with a list of possibilities that I'd be willing to use 3. See which possibility fits the list of requirements the best There are many options, not just JSON or Transit.

Alex Miller (Clojure team)14:05:20

Transit has a json encoding that will preserve types

pinkfrog14:05:17

> Transit has a json encoding that will preserve types It becomes impossible to instruct PG to select json fields and other stuff.

Alex Miller (Clojure team)14:05:23

Conceptually Transit is just fine for storage, not sure why you'd say that

Alex Miller (Clojure team)14:05:36

Json is fundamentally lacking in the ability to preserve information

Alex Miller (Clojure team)14:05:11

If your constraint is that you need json for querying in pg then the question is how you work around that

p-himik14:05:52

> Conceptually Transit is just fine for storage, not sure why you'd say that Right, I should've added that doing that imposes extra constraints on the developer that the developer must be aware about.

pinkfrog14:05:56

@U2FRKM4TW I’d like something that is possible to convert clj map where values are keywords into a json, and then 100% convert it back to clj maps. Also, in the meantime, the PG Json support can work on the serialized data. Sounds impossible to achieve though.

p-himik14:05:09

If all your keys are keywords, then just convert string keys to keywords when reading the JSON from PG. If not all your keys are keywords, you have other options: • Invent your own encoding • Invent your own type • Add a spec/schema to the data and use it to keywordize the right keys

pinkfrog14:05:51

> • Add a spec/schema to the data and use it to keywordize the right keys Well. I was also thinking on the ability of coercing values with malli. I will have a check.

dgb2314:05:53

The problem I see here is that you will have a bit of a mismatch between how you use EDN in your application code vs the serialised version in PG. If you want to leverage PGs json capabilities then you probably want to use a subset of EDN, coerced to JSON and back with specific rules. Meaning you want to make a whole bunch of assumptions about how your EDN will look so you don't get lost in generality and can leverage PG more easily. clojure.data.json can do that for you. write/write-str and read/read-str have arguments where you can pass in functions for both key and value translation.

thanks3 1
Ben Sless15:05:39

Even with malli, you'll still suffer from slight impedance mismatch if you query the json from pg as it doesn't have any notion of keywords

didibus02:05:35

Wouldn't Transit with JSON-Verbose work?

didibus02:05:27

The biggest limitation of JSON to get around is that keys must be strings. There's no easy way around that. Where for values you can just wrap them in a map with a "type" and "value" key that describes the real type, to do the same for the keys in JSON you need a string encoding. That's what transit does basically. And it also handles all the edge cases, like how there's a limit to how big a number can be in JSON, so it switches to a string with a special encoding again if you try to serialize a bigger number for example.

didibus02:05:26

But, since you want to use PG's support for JSON, my guess is you'd want to coerce all types to some JSON type instead, and when you read it back, I'd coerce it back based on some known schema. You can't make it self-describing in JSON inside PG without breaking PG's abilities to query it, since it can't query custom types and those don't even exist in the JSON standard.

didibus02:05:25

This will have limits similar to static types. For example, you can't have keys of different types since you won't know what to coerce those back into if that's the case.

pinkfrog06:05:19

transit makes things unreadable.

p-himik06:05:36

Even if you use :json-verbose?

pinkfrog06:05:10

Transit is too locked in. I would go with json + malli. and nippy for compression if needed.

didibus07:05:49

Nippy is a binary serialization, how would that work with PG?

didibus07:05:59

My guess is you don't really need perfect type preservation, if you do, then Transit is hard to beat. But probably you can get away with just stringifying keys and keywordizing them back. And generally making sets into JSON lists and such things, and probably you don't need to support numbers bigger than JSON does and all that. Basically, you need to relax your requirement of "it loses the information that originally it is a keyword and not a string.", if you allow for a lossy conversation from Clojure to JSON and back, you can just rely on JSON.

pinkfrog07:05:42

> Nippy is a binary serialization, how would that work with PG? Yup. Nippy is irrelevant here.

pinkfrog07:05:43

> if you allow for a lossy conversation from Clojure to JSON and back, you can just rely on JSON. Yes. That’s the direction I am going. Transit is designed, and as a consequence, restricted in Clojure space.

didibus07:05:31

Transit isn't restricted to Clojure, it can apply generally to any language, see: https://github.com/cognitect/transit-format , but if you mean that it doesn't have a lot of support outside of Clojure, yes, you won't find very many serialization schemes that have broad reach beyond JSON and CSV, and maybe Protobuf

pinkfrog07:05:50

> Transit isn’t restricted to Clojure, it can apply generally to any language, see: This kind of description is often misleading to new comers. As an wire format, like you said, it does not gain much attraction outside of the Clojure world. Similar things could be core.async, it is even not preemptive but is marked as a selling point that could be compared with golang csp. (Though I still use it, better have than nothing)

didibus07:05:45

I mean, nothing is false about the statement, what's the alternative, just not say anything about what it does?

didibus07:05:53

There's an official implementation, for Java, Python, Ruby, JS, Clojure and Clojurescript of Transit, but ya, none of those outside Clojure are probably widely in-use. But then Clojure itself isn't very much widely used either. It's a chicken and egg though, Transit isn't going to see more adoption if everyone looking for a serialization scheme to adopt use "most commonly used" as their criteria.

didibus08:05:10

Also, just an FYI, Go-lang did not support preemtive either back when core.async released, it used to be only cooperative. They added that in later versions.

pinkfrog08:05:41

Fair enough.

didibus08:05:49

I understand where you're coming from though, but it just seems silly to add warnings like: "Warning, Clojure is a niche language, not many people use it, proceed at your own risk." when at the same time, you want more people to use it 😛 Also, for core.async, I recommend this reading: https://clojure.org/news/2013/06/28/clojure-clore-async-channels I think sometimes people get mislead but it's not from the official docs, I found the http://clojure.org content is always the best.

didibus08:05:44

What's fun about this read, is it mentions that it's actually taken a similar approach to C#'s async, while providing CSP constructs. And that's a very accurate description. The way Go implements CSP is very different, it uses real fibers, aka, lightweight threads, but core.async uses a state machine like C#. Clojure is also stackless like C#, and unlike GO, which is stackful.

pinkfrog08:05:02

I understand your points and I did hope the community and ecosystem become better. To that end, attracting more users is a necessary step. Also, what I want to say is some wording might be more objective. Not specially about your part on transit, it’s just a general feeling about the articles in the community.

didibus08:05:25

That's possible, it's hard to quality control what people are going to write about, but that's why I try to direct people to the official doc, http://clojure.org and http://ask.clojure.org, there's really good objective descriptions and explanations on those.

arielalexi15:05:06

I'm curious about something, I found it - https://nakkaya.com/2016/06/10/ferret-a-hard-real-time-clojure-for-lisp-machines/ and I was wondering if it is possible to run Clojure and compile it for embedded (to be more accurate for robots :robot_face: ). I did not find something online about that, so is it possible :woman-shrugging::skin-tone-2:? I want to say no, but I preferred to consult with you before

1
Ben Sless15:05:34

Iirc there's a company which uses clojure for robots

👀 1
practicalli-johnny15:05:16

Presentation from Clojure Conj 2019 https://youtu.be/HXJaJTJe0Hg

arielalexi11:05:29

thank you !!

👍 1
Stel Abrego21:05:14

Hey y'all, I have a general question to people who use static site generators. I'm building a static site generator in Clojure and I've integrated some fancy Markdown features into it (shortcodes, code-block highlighting) with the help of the excellent https://github.com/kiranshila/cybermonday library. Now I'm torn about adding support for other markup syntaxes (org, asciidoc, etc) because if I just stick to Markdown/HTML the overall API will be much simpler. *Would a Markdown/HTML only static site generator be a non-starter for you?* If there were cybermondays for every markup syntax I would add them in a heartbeat, but having a different API for each markup syntax (with some buggier than others) is going to be more complex to use and document.

👍 2
jaju02:05:19

I’ve been looking for a orgmode supporting generator personally (and depending on hugo which has native support) Don’t know how useful/helpful this is - but https://github.com/200ok-ch/org-parser seems like a useful attempt.

🙏 1
Stel Abrego04:05:33

@U06KGH6LB Oh wow I didn't know about org-parser. This is exactly what I'm looking for because it has a good intermediate representation as well as typical html hiccup, just like cybermonday. The idea I have is letting the user create mapping functions at both levels. That's what I already have for markdown. I'm feeling inspired to add org support now.

🎉 1
👍 1
jaju04:05:20

If you ever open it up, would be eager to try! (Not sure if I’ll be capable - but also to contribute)

Stel Abrego04:05:20

I'm deliberately avoiding boosting it too much because it's in alpha right now, but it is open! You can poke around at https://github.com/stelcodes/nuzzle. It's definitely in the "API breaking every weekend" stage right now but it's really coming along and I hope to give it a 1.0.0 tag by June. I would love issues and PRs but I will say there is a strong focus on simplicity and API design. I'm trying to keep things very obvious and consistent. The vision is basically a static site generator you can bolt onto an existing project because it's so lightweight.

👍 2
Stel Abrego05:05:08

@U06KGH6LB dang I actually spoke too soon about org-parser having hiccup support. It actually doesn't but I just opened an issue and asked if anyone knows about efforts related to making one. That is absolutely essential to including org-mode in Nuzzle so if you want to try to write that, that would be huge. It could be an amazing little library by itself or it could be included in Nuzzle or even org-parser if they want it (I just asked). https://github.com/200ok-ch/org-parser/issues/64

👍 2
practicalli-johnny08:05:08

To answer the initial question, I don't see markdown only as huge problem as the vast majority of content is written that way. All the content for http://practical.li is written in markdown, although the books use a generator that adds a lot of extra features that markdown does not support Asciidoc support is more prevalent in technical documentation and is arguably a better format for generating richer output as its output can be customised far more I believe (for example I hope to use asciidoc with cryogen to generate html with CSS tags for a CSS framework, automatically providing a more engaging website experience) Org-mode is also an amazing format for generating a wide variety of output formats, with many converters and generators. Org is quite Emacs centric though, so unsure how easy it would be to integrate or how widespread. I assume there is a higher proportion of Clojurians using org mode than the general developer audience

👍 2
Stel Abrego19:05:24

@U05254DQM Hey thanks for the thoughtful response. I'm glad to see some Markdown love. I like how simple it is, but it's definitely not "super-user" powerful. And since my library is going to be most accessible to Clojure devs so I would love to support org-mode for all the emacs dwellers. And I would love to support Asciidoc as well but I haven't seen a library that can do Hiccup-esque intermediate representation and also transform to Hiccup. I'm realizing that's a requirement I want to have for all markup support in my SSG. That way there can be a uniform API and no "second-class" markup syntax. It would be kinda magical to have my code-block syntax highlighting (for example) work the same way on all supported markup types. That's where a good intermediate representation really comes in handy.

👍 1