User Portlet User Portlet

Jesse Friedman
Discussions
![An animation of the relative positions over time of the Sun, the three inner planets, and the Parker Solar Probe][1] &[Wolfram Notebook][2] [1]:...
I'm trying to open a Serial device connection, specifying both the port name and connection options (baud rate, handshake method, etc.). Here's a screenshot from the Serial documentation: ![Serial DeviceOpen documentation][1] This suggests that...
While most humor has continually eluded the grasp of computers, some jokes can be reduced to simple linguistic formula. I focus on two in this post: # Joke Type 1: The Comparison > I like my ` ` like I like my ` `: ` ` Example: > I like...
In the FirstPosition function documentation, this: > **FirstPosition[list,pattern,{1},Heads->False]** finds positions only of objects that appear as complete elements of list. should read something like >...
Here's a fun Manipulate for exploring Moiré patterns: Manipulate[ Overlay[{graphic, Rotate[graphic, r Degree]}, Alignment -> offset], {{dimension, 10, "Dimension"}, 5, 200, 1}, {{r, 5, "Rotation"}, 0, 200},...
I posted a reply to [this thread][1] about 40 minutes ago. When I checked on it later, I discovered the username of my response was changed to "Updating Name": ![screenshot of response with my name as "Updating Name"][2] I haven't the slightest...
Here's a fun table showing which languages LanguageIdentify recognizes correctly from the UN Human Rights example text: Grid[Join[{{"Actual language", "Recognized language"}}, {StringTrim[#[[2]], "UNHumanRights"], ...
![enter image description here][1] Inspired by the [recent Wolfram Blog post][2], I created a program that automatically generates timelines based on mentions of notable events in Wikipedia articles. Try it out below: ...
This started as a quest to produce a vector SVG export of an ArrayPlot of a cellular automaton. However, it quickly became apparent that this would be more complicated than `Export["vectorca.svg",ArrayPlot[CellularAutomaton[30,{{1},0},20]]]`, because...
Here's a rather fun snippet of code from my increasingly large notebook of interesting CA programs: init= {{1,1,1,1,1,0,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1}, {0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0}, ...