User Portlet User Portlet

Joel Klein
Discussions
I'd be happy to lend my assistance for collaborating. I'm familiar with the Wolfram functionality around making HTTP requests, including the HTTPRequest and HTTPResponse expressions. I haven't used Shopify, but I have used WooCommerce and gotten my...
1. Yes, it is locked for editing by the first user who opens it. 2. No, other readers won't see updates in real-time, as of the current release anyway.
> Can you tell me why Wolfram Research doesn't support a compiler as widely used as gcc ? Original developer of CCompilerDriver here. Szabolcs is right (as usual), it's not a question of gcc, which we've supported on Unix from the beginning, but...
Try using "Get" instead of "Needs". Also, add a backtick to the end of the filename, or use the .m extension explicitly. As the messages suggests, Needs expects the package file to do a little more than just contain code. Needs expects the package...
Right, as the docs say, `FullForm` is a printing construct, so you can see it (a) in an output cell in a notebook (b) in an output of the command-line kernel, (c) when you pass it to `ToString` which uses OutputForm by default. To fix the above so...
Making usernames in the subdomain (e.g. b3m2a1.wolframcloud.com) is good, but somewhat involved to develop, and from what I can tell there's very little demand for it. We have our own reasons for wanting to do it, but it really is at least a year...
I think the quoting is messing it up, resulting in the resource not being found. Try `?x=Meteorite+Landings` instead.
`PutAppend` supports cloud objects, by the way. You can try that, it should be better performing than having to check for the object existing prior to every write. But yes, a `CloudPut` of a tiny expression is probably the fastest way to create a...
`Append` takes the list (or expression) as its first argument, and the thing to append as the second. So when you showed `Append[{" "},array1]`, I wonder if you meant `Append[array1, " "]`. Also, what format of table were you hoping to get?...
> In CloudExport[nbexpr, "NB"] What is nbexpr in this case? It's an expression with a `Notebook` head, in the form `Notebook[{cell1, cell2, ...}]` as outlined in the documentation: http://reference.wolfram.com/language/ref/Notebook.html