Markus Bertheau
Markus Bertheau
This code honors `:keywords? true`: ```clojure (POST url {:headers {:X-CSRFToken csrf-token} :params data :response-format :json :keywords? true :handler on-success :error-handler on-error}) ``` In order to support transit responses, I removed...
What do you think about showing the CSS color not as the background color but as the text color if it's a `color:` rule?
`boot auto-test` says `Ran 0 tests containing 0 assertions.` Full log: ``` ~/src/boot-cljs-example $ boot auto-test Downloading https://github.com/boot-clj/boot/releases/download/2.5.5/boot.jar...done. Retrieving pod-2.5.5.jar from https://clojars.org/repo/ Retrieving core-2.5.5.jar from https://clojars.org/repo/ Retrieving aether-2.5.5.jar from https://clojars.org/repo/...
My uses of `Count(.., only=..)` all look like this: ``` python q_not_expired = Q(...) products_not_expired = Product.objects.filter(q_not_expired) qs.annotate(num_published_orders=Count('partner__stockrecords__product', only=Q(partner__stockrecords__product__in=products_not_expired))) qs.annotate(registered_participants=Count( 'participant', only=Q(participant__status=Participant.REGISTERED))) ``` So I'm wondering whether it'd make sense...
When generating weekly occurrences that cross a dst change boundary for an aware base datetime, the time in the normalized datetimes doesn't stay the same. For example, for `2014-10-22 10:30...
## Symptom When running rootless Podman containers on Ubuntu with the `unix-chkpwd` AppArmor profile enabled, `sudo` fails inside containers with: ``` sudo: PAM account management error: Authentication service cannot retrieve...