User Portlet User Portlet

Discussions
I'm thinking myself stupid but I cannot grasp how the `GroupBy` function works, so... I have a `Databin` which consists of timestamped step values (timestamp using the Data Drop's built-in `Timestamp`, and then a numeric value for number of steps...
This is more for the Wolfram personnel reading the forums (Already submitted to support): The `FlightData[]` function is returning inaccurate information by returning ICAO flight numbers as tail numbers instead for several ICAO carrier codes. The...
The Twitter, LinkedIn, and Facebook connectors are all dead in the water due to changes made by each company. Are there any plans to update these (LinkedIn needs to be upgraded to 2.0, I'm aware of the privacy issues with Twitter and Facebook, but...
Solved my own problem with the following after a bunch of trial and error. As much as love Wolfram some of the ways it does things are strange to me. :-) ``` "Your Location" -> True, "Interpreter" -> "GeoCoordinates", "Input" :> ...
The actual application is as follows (the token obscured for obvious reasons): ``` nb = CreateDocument[]; data = {}; offset = 0; checkins = Import["https://api.foursquare.com/v2/users/self/checkins?limit=250&\ ...
Or, quicker: ``` ExternalEvaluate["Python","import datetime; datetime.datetime.strptime('20220811123456","%Y%m%d%H%M%S")"] ```
When submitting a Data Drop Databin for processing with WolframAlpha, I am only getting an ad for Data Drop rather than an analysis of the data (see screenshot). Broken? ![Screenshot of WolframAlpha showing an ad link for Data Drop instead of an...
Created the following API Function and trying to test it before deployment: ``` APIFunction[ { "checkin"->"RawJSON", "user"->"RawJSON", "secret"->"String" }, DatabinAdd[Databin["xxxxxxx"], FromUnixTime[#checkin[["createdAt"]]], ...
I'm attempting to set up a `Databin` and want to specify the `Interpretation` property, but the objects that will be posted have nested properties and I can't figure out how to structure the `Interpretation` value to ensure things import as desired. ...
Oops, my bad; the script I'm implementing this in uses `j` as the raw query text while `k` is the `Interpreter` value. Forgot I had copied this from my testbed. :-)