Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by ∑ XahLee (xahlee@noagendasocial.com), page 62

  1. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 22:09:38 EST ∑ XahLee ∑ XahLee
    • Justin Cody

    @PakkonenCT hum, i don't know anything about hardware...

    blackphone
    https://en.wikipedia.org/wiki/Blackphone
    i thought it failed and closed down for lack of funding?

    In conversation Thursday, 21-Dec-2017 22:09:38 EST from noagendasocial.com permalink
  2. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 22:06:47 EST ∑ XahLee ∑ XahLee
    • Sir Chris Wilson 3️⃣3️⃣
    • Justin Cody
    • SpookyR
    • irritable ☑️

    @SpookyR @ChrisWilson @PakkonenCT @irritable
    what a load of bullshit u all

    In conversation Thursday, 21-Dec-2017 22:06:47 EST from noagendasocial.com permalink
  3. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 21:38:39 EST ∑ XahLee ∑ XahLee

    #JavaScript API design question.
    should it be
    drawRect (svgEle :SVGElement, φposition ... )
    or
    drawRect ( φposition ... )
    that is, without the “svg ele to attached to”, as 1st arg.
    See pic.

    In conversation Thursday, 21-Dec-2017 21:38:39 EST from noagendasocial.com permalink
  4. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 19:35:41 EST ∑ XahLee ∑ XahLee

    lol. star wars with a new English. Behold https://youtu.be/XziLNeFm1ok?t=43m13s

    In conversation Thursday, 21-Dec-2017 19:35:41 EST from noagendasocial.com permalink

    Attachments

    1. Invalid filename.
      Star War The Third Gathers: Backstroke of the West HD (Dubbed)
      By GratefulDeadpool from YouTube
  5. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 16:06:08 EST ∑ XahLee ∑ XahLee
    in reply to

    The imperative approach, where we “hard code” each shape (2d or 3d)'s position/orientation for each frame. Is actually simpler to do when the animation is complex.

    In conversation Thursday, 21-Dec-2017 16:06:08 EST from noagendasocial.com permalink
  6. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 16:03:28 EST ∑ XahLee ∑ XahLee
    in reply to

    so, when the animation becomes complex, the declarative approach breaks down. Cuz it is impossible to nice math describe the change of shapes/orientation/path especially when they change in a pace that's not simply linear or simple function.

    In conversation Thursday, 21-Dec-2017 16:03:28 EST from noagendasocial.com permalink
  7. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:57:13 EST ∑ XahLee ∑ XahLee
    in reply to

    Now, imagine you want to do animation of swarm of birds. You might have seen 3d boids. (web search it) Or, in 2d, a bunch of dots moving about in a particular pattern. (lets stick with 2D) Or, imagine, the flight of 5 jet planes in a air show. Or, many of the screen saver patterns.

    In conversation Thursday, 21-Dec-2017 15:57:13 EST from noagendasocial.com permalink
  8. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:51:43 EST ∑ XahLee ∑ XahLee
    in reply to

    also, as far as i know, in svg/css/web animation tech, there's no way to create a “leave a trace” effect, as needed in this animation (for the line). So the declarative approach is either impossible by itself, or far more complex to create.

    In conversation Thursday, 21-Dec-2017 15:51:43 EST from noagendasocial.com permalink
  9. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:49:11 EST ∑ XahLee ∑ XahLee
    in reply to

    the declarative approach, in fact you may break it down into 4 animation sequences. Using mirror (transform) of the 1st part to produce the other 3 animation sequences. It is actually much more complex than the imperative approach.

    In conversation Thursday, 21-Dec-2017 15:49:11 EST from noagendasocial.com permalink
  10. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:47:29 EST ∑ XahLee ∑ XahLee
    in reply to

    now, look at this animation. The imperative approach, you just draw the thing for each loop, easy. In declarative approach, you draw line segment, then specify a path, and corresponding rotation (of the line), for the animation. Actually slightly more complex.

    In conversation Thursday, 21-Dec-2017 15:47:29 EST from noagendasocial.com permalink
  11. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:35:40 EST ∑ XahLee ∑ XahLee
    in reply to

    Now, suppose there are 2 billiard balls. 1 hits the other, stops, and the other moves. So, now you kinda have 2 animations, one starts after the other stops. So, now in declarative way, you need to have a spec of when animations starts or connect.

    In conversation Thursday, 21-Dec-2017 15:35:40 EST from noagendasocial.com permalink
  12. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:34:06 EST ∑ XahLee ∑ XahLee
    in reply to

    the declarative approach seems simple. But actually, not quite. There are lots intrinsic complexity. Imagine the billiard ball again. Now, as your ball moves, it needs to slow down. So the timing, isn't “linear”

    So, now you need a spec of what's called “calcMode” in svg, that controls the pace of animation. possible values are • linear • discrete • paced • spline. In css animation, you have similar called “animation-timing-function”.

    In conversation Thursday, 21-Dec-2017 15:34:06 EST from noagendasocial.com permalink
  13. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:32:43 EST ∑ XahLee ∑ XahLee
    in reply to

    but there's a declarative approach. That is, instead of a timed loop, you specify the drawings of the start frame, and end frame, and give a path. The ball, will move thru the path, in linear time. That's declarative approach, and is what svg/css/web animation is about.

    note that in this declarative approach, the compiler, still actually need to figure out at what frame/time the ball is, and draw it. So, it's like function programing, the compiler, generate things for you.

    In conversation Thursday, 21-Dec-2017 15:32:43 EST from noagendasocial.com permalink
  14. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:31:59 EST ∑ XahLee ∑ XahLee
    in reply to

    imagine, you have a rectangle, and a small circle inside. The circle is a billiard ball, you want to bounce it around the rect, as a pool table animation.

    normally, you do animation by drawing each frame. Basically, write a timed loop, and in each, say the position of the circle. This, we might call the imperative approach, as in imperative programing, where you say exactly what to do in each step.

    In conversation Thursday, 21-Dec-2017 15:31:59 EST from noagendasocial.com permalink
  15. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 15:31:26 EST ∑ XahLee ∑ XahLee

    now, Xah's Edu Corner Extempore! episode №20171221120845, on the math intrinsics of animation or what i've learned!

    so, in the past weeks, i've been studying svg animation or web animation tech. Basically read the whole svg 1.1 v2 spec on animation. It turns out, there's something intrinsically complex about 2D animation, and quite interesting.

    In conversation Thursday, 21-Dec-2017 15:31:26 EST from noagendasocial.com permalink
  16. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 12:50:00 EST ∑ XahLee ∑ XahLee

    here's a list of Ergonomic / Vertical Mouses, for you Repetitive Strain Injury sufferers
    http://xahlee.info/kbd/ergonomic_mouse.html

    In conversation Thursday, 21-Dec-2017 12:50:00 EST from noagendasocial.com permalink
  17. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 12:34:57 EST ∑ XahLee ∑ XahLee

    OrthoMouse. saw this beast on amazon http://amzn.to/2BtOBnU Not sure what's what. the reviews seem to be slightly negative.

    In conversation Thursday, 21-Dec-2017 12:34:57 EST from noagendasocial.com permalink
  18. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 11:46:43 EST ∑ XahLee ∑ XahLee
    • IndyHavoc

    @IndyHavoc not sure where it's from. it's from twitter account, of a riche china man, who likes young boys fuck his wife. and he tweets daily, sometimes with other pics.

    In conversation Thursday, 21-Dec-2017 11:46:43 EST from noagendasocial.com permalink
  19. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 11:44:55 EST ∑ XahLee ∑ XahLee

    Japan Remington No 9 Typewriter
    http://xahlee.info/kbd/japan_remington_no_9_typewriter.html

    In conversation Thursday, 21-Dec-2017 11:44:55 EST from noagendasocial.com permalink
  20. ∑ XahLee (xahlee@noagendasocial.com)'s status on Thursday, 21-Dec-2017 11:29:46 EST ∑ XahLee ∑ XahLee

    not sure what's the character of Ivanka. She seem to be good hearted. On IQ level, maybe slightly above average. I in general don't believe in anyone silver spooned.

    https://twitter.com/FoxNews/status/943842164974542848

    In conversation Thursday, 21-Dec-2017 11:29:46 EST from noagendasocial.com permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.