Fork me on GitHub
#clojurescript
<
2018-09-15
>
xfyre17:09:35

this is probably some issue with dependencies or React Native version:

::ffff:127.0.0.1 - - [15/Sep/2018:17:36:37 +0000] "GET /target/ios/goog/base.js HTTP/1.1" 404 162 "-" "DcnetApp/1 CFNetwork/901.1 Darwin/17.7.0"
how to fix it? cleaned up the project and re-initialized it a couple of times to no avail

xfyre17:09:20

I’m using the latest version of re-natal. I can’t understand at which point it became broken.

polymeris19:09:58

Can anyone recommend a DynamoDB client? I found https://github.com/nervous-systems/hildebrand, but the repo is archived. Or I might just use the official Node SDK.

lispyclouds06:09:44

@U0FTV149X I use https://github.com/mcohen01/amazonica for AWS related stuff. Pretty much supports most of the AWS features including DynamoDB

lloydshark06:09:32

I have tended to simply use the official Node or Java SDK.

polymeris15:09:15

Thanks, @U7ERLH6JX but amazonica seems to be Clojure-only? (no cljs)

lispyclouds15:09:06

Ah yes. Clojure only. 😔

Ramzi20:09:44

I am trying to do $( "#result" ).load( "ajax/test.html" ); I tried (.load ($ "#myGrid") "js/my-grid.js") I get the error that $ is an undefined var.

Ramzi20:09:17

@john the load code you gave me is rendering the grid i want, but it's replacing the rest of the page. there's gotta be a way to load into a specific dom element.

Ramzi20:09:23

the jquery api shows that you can

Ramzi20:09:42

I dont know why $ would be undefined when I am importing jquery at the top

polymeris20:09:22

I have never tried to interop with jquery, but maybe js/$ works?

Ramzi20:09:07

That certainly did something. Now the undeclared variable error went away, and I got the script loaded as text into a div.

Ramzi20:09:30

I have a div called app that gets populated, and a div called myGrid that gets populated. I dont get why when I do the load to load the grid, the app div doesnt load. Like calling the second load cancels the operations of the first.