User Portlet User Portlet

Christopher Carlson
Discussions
Oh, darn. I thought I was on to something. It's misleading, then, that the posts are not constructing the word clouds in the same way. The first thing people are going to do is compare the Democratic and Republican clouds, and draw wrong...
Very cool idea! And it works for topics you might not expect it to be useful for: ![frog timeline screenshot][1] [1]: /c/portal/getImageAttachment?filename=ScreenShot2015-08-21at1.06.16PM.png&userId=32882
That URL should be: http://cs.nyu.edu/~ajsecord/npar2002/npar2002_ajsecord_preprint.pdf
Beautiful explanations. You should write a book!
Glad to help. If you turn that surface into something architecturally interesting, I'd love to see it. Chris
It's quite easy. Here is a 3D structure: graphics = Graphics3D[{ Cuboid[], Cone[{{.5, .5, 1}, {.5, .5, 1.5}}, .5], Sphere[{.5, .5, 1.75}, .25] }, Boxed -> False] ![3D structure][1] This exports the...
Not perfect, but darned good! Thanks, Vitaliy! Chris
Try it out on yourself with CurrentImage[]: [mcode]Mirror[image_] := Block[{width = First[ImageDimensions[image]]}, Manipulate[ With[{leftHalf = ImageTake[image, All, {1, x}], rightHalf = ImageTake[image, All, {x, -1}]}, Style[Row[{ ...
Nice!  Here's a related post I wrote based on Matthew Szudzik's generator:     http://blog.wolfram.com/2011/12/28/two-hundred-thousand-snowflake-greetings-to-you-and-yours/ Chris
Using uncapitalized user-defined functions is a common practice and not a bad convention for the reasons you note.  When I develop code, it is often with the aim of incorporating the functions into a package, where capitalized function names are the...