This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-10-31
Channels
- # aws-lambda (4)
- # beginners (152)
- # boot (19)
- # cider (45)
- # cljs-dev (14)
- # clojure (54)
- # clojure-dev (33)
- # clojure-greece (11)
- # clojure-italy (4)
- # clojure-nl (8)
- # clojure-norway (2)
- # clojure-russia (6)
- # clojure-sg (1)
- # clojure-spec (1)
- # clojure-uk (40)
- # clojure-ukraine (5)
- # clojurescript (40)
- # community-development (13)
- # component (8)
- # core-async (3)
- # cursive (25)
- # data-science (11)
- # datomic (13)
- # duct (1)
- # emacs (2)
- # events (16)
- # figwheel (3)
- # fulcro (53)
- # graphql (2)
- # jobs (5)
- # jobs-rus (1)
- # juxt (10)
- # leiningen (4)
- # off-topic (82)
- # other-languages (5)
- # portkey (3)
- # protorepl (13)
- # re-frame (22)
- # reagent (15)
- # ring-swagger (4)
- # shadow-cljs (69)
- # spacemacs (7)
- # specter (16)
- # sql (13)
- # vim (5)
- # yada (2)
hey @U050SC7SV atreus is very similar. I’m searching for keyboard layouts (not .emacs)
my layout is here fyi: https://github.com/mpenet/tmk_keyboard/blob/mpenet/keyboard/atreus/keymap_mpenet.c
I don’t have anything too interesting going on with my ergodox layout, but my left hand lower thumb keys (from left to right) go space, alt, backspace. And my right lower thumb keys (also left to right) are page down, enter, spacebar. (I don’t really use page down).
I haven’t been keeping up with firmwares, but https://jakemccrary.com/blog/2014/09/07/ergodox-turn-on-led-when-not-on-the-main-layer/ is probably my more interesting change, which turns on an LED when not on the main layer.
Here are my overall changes https://github.com/benblazak/ergodox-firmware/compare/master...jakemcc:jake
cool thanks a lot @U06SWJ2RH!
i also got good ideas from here: https://www.youtube.com/watch?v=SiOILU6HdbA u might find it interesting
i particularly liked the idea of having the modifier keys in the home row. after a day i’m really happy 🙂 (finally)
Hello! I am looking for a managed database with the following properties, could anyone point me in a direction? It should be: - decently scalable (not google-scale, but it should handle middle-range load well) - pay as you go - managed - can be sql or nosql, I don’t care too much - doesn’t have to provide incredible persistence guarantees, just something good enough
the pay as you go bit is important, as it should be cheap to operate under small load
I’ve really come to love embedded databases like sqlite
it’s not managed, but it’s very manageable
in some cases it’s easier to manage than “managed” databases
otherwise, it probably just depends on what hosting you’re using
if you’re on aws, then you can use rds
if you’re on google cloud, they have a few options
@schmee DynamoDB was the only option I could think of. RDS as suggested by @smith.adriane isn’t very granular in its billing; you pay per instance
I don’t see how I would use Sqlite if I am running more than one instance of the application
sqlite is not a good option if you have more than one server
I would love Google Cloud (which is what is taking me away of DynamoDB a bit) but none of their offers seem to fit the bill except cloud datastore
I think aws aurora on rds is more of a pay as you go model
>Storage consumed by your Amazon Aurora database is billed in per GB-month increments and IOs consumed are billed in per million request increments. You pay only for the storage and IOs your Amazon Aurora database consumes and do not need to provision in advance.
@schmee those seem to be priced per instance at start at a very high cost. I am trying to build a cheap architecture for a non-profit educational app. I was thinking of using Cloud Functions to scale on that side, but the database is problematic (I can’t afford upward of 100$ costs per month for no traffic)
you sure? I can’t find any per instance costs for BigQuery: https://cloud.google.com/bigquery/pricing
for cheap options, I’ve used the $5/mo instance on digital ocean using server+sqlite
@schmee I am not familiar with BigQuery; it seems to be aimed at big data but it might be suitable for my use-case too
i’ve also used heroku in conjuction with the free tier offerings for their plugins
specifically, clojure + redis
which I’ve had a website running for years
it’s limited to 25MB of data
but it’s been running for free
@smith.adriane that’s what I did last year (with digitalocean), but it doesn’t offer a nice path to scaling to multiple instances without managing it myself. I could set up a kubernetes cluster on digitalocean or google cloud and manage my own database though… but it has an upfront cost
just looked at my account. it looks like I was using https://elements.heroku.com/addons/rediscloud
yeah actually no way I can use Heroku’s redis offering as a database; it’s prohibitively expensive storage-wise
yea, i’m not sure what kind of load/pricing you’re targetting
could use their postgres though, but that would have the same issue as RDS / google cloud sql
@schmee yes I was actually just looking at this right now (but with Google Cloud Storage instead of S3)
@schmee basically, to give you an idea, I am writing an education application for a course at my universitity, which we would like to open up to other universities
we need to be able to onboard new universities for free (to encourage adoption), and so the costs for us should be low, and smoothly increase (thus pay-as-you-go)
the course we will be using it on at our university has 400 students, but we would be storing a lot of exercise data and student solutions
I am not sure what the latency of S3 is if I query it internally (within AWS’s network)
I just checked and google cloud storage supports optimistic locking, which is good too
have you heard of people using S3 as a database before? just to be sure it’s not something completely stupid to do 😄
just stumbled over this too: https://aws.amazon.com/simpledb/