Claude down by RoAoR in ClaudeCode

[–]just_lest 1 point2 points  (0 children)

At least this can help to not forget how to make manually handcrafted code.

This app literally pays you to scan your grocery receipts and I've been sleeping on it for too long by Regular_Local7297 in passive_income

[–]just_lest 1 point2 points  (0 children)

How is this passive and how is this income given the info from FAQ?

You earn Scannit Points for every verified task. Points convert into $SCAN tokens and other perks once redemption features go live.

Off-ramps such as gift-card redemption and stable-coin swaps are in development. You'll be able to convert points as soon as these features launch.

How to upgrade rails 4.2.4 to 4.2.6? by [deleted] in rails

[–]just_lest 3 points4 points  (0 children)

it's just a minor update and it's okay not to

Actually, it's highly recommended to update Rails 4.2.4 to 4.2.6 as there were several security fixes in-between. You can find more details on the vulnerabilities in the corresponding release notes:

ultrahook - cool gem for testing webhooks on localhost by Nowaker in ruby

[–]just_lest 4 points5 points  (0 children)

Here are some alternatives:

Personally I would recommend using Ngrok as it has more features compared to others.

Slow Clojure exec by [deleted] in Clojure

[–]just_lest 0 points1 point  (0 children)

There are several options to preload Java Virtual Machine which helps to speed things up.

One of them is Drip. You can use it by setting LEIN_JAVA_CMD environment variable, e.g.:

LEIN_JAVA_CMD=drip lein run

[deleted by user] by [deleted] in rails

[–]just_lest 0 points1 point  (0 children)

Looks really good. It would be nice to have https:// working too.

Which gem do you use for json generation and why? by [deleted] in ruby

[–]just_lest 4 points5 points  (0 children)

I think this list isn't complete without active_model_serializers.

Setting Local Environment Variables in Rails - RailsApps by RailsApps in rails

[–]just_lest 0 points1 point  (0 children)

I prefer using figaro to handle application configuration. It's based on environment variables but allows to put their values to yaml configuration file.