home.social

Search

43 results for “Dazzatron”

  1. #History #Archeology #knobs #Egypt flip.it/u3Q.hz Egyptian Tomb Carving May Be Earliest Depiction Of Circumcision… Or Something Far More Painful

  2. #Medieval #manuscripts #Fartjokes flip.it/RaGQyW 37 Dirty Medieval Manuscripts That Prove People In The Middle Ages Weren’t So Prudish After All

  3. @davatron5000 [CEO on a plane]

    #riseAndGrind y'all, I GUARANTEE you can be a 100B company just like us, and live the life—

    [panel falls off; gusts of wind, engine sounds]

    —YOU ALWAYS DREAMED OF. JUST SIGN UP FOR OUR—

    [engine smokes and sputters, tailspin starts, CEO plastered on ceiling]

    —TEN WEEK, "ZERO TO HERO: CRUSHING COMPLIANCE AND SAFTEY" COURSE

  4. @davatron5000 [CEO on a plane]

    #riseAndGrind y'all, I GUARANTEE you can be a 100B company just like us, and live the life—

    [panel falls off; gusts of wind, engine sounds]

    —YOU ALWAYS DREAMED OF. JUST SIGN UP FOR OUR—

    [engine smokes and sputters, tailspin starts, CEO plastered on ceiling]

    —TEN WEEK, "ZERO TO HERO: CRUSHING COMPLIANCE AND SAFTEY" COURSE

  5. @davatron5000 [CEO on a plane]

    #riseAndGrind y'all, I GUARANTEE you can be a 100B company just like us, and live the life—

    [panel falls off; gusts of wind, engine sounds]

    —YOU ALWAYS DREAMED OF. JUST SIGN UP FOR OUR—

    [engine smokes and sputters, tailspin starts, CEO plastered on ceiling]

    —TEN WEEK, "ZERO TO HERO: CRUSHING COMPLIANCE AND SAFTEY" COURSE

  6. @davatron5000 [CEO on a plane]

    #riseAndGrind y'all, I GUARANTEE you can be a 100B company just like us, and live the life—

    [panel falls off; gusts of wind, engine sounds]

    —YOU ALWAYS DREAMED OF. JUST SIGN UP FOR OUR—

    [engine smokes and sputters, tailspin starts, CEO plastered on ceiling]

    —TEN WEEK, "ZERO TO HERO: CRUSHING COMPLIANCE AND SAFTEY" COURSE

  7. @davatron5000 [CEO on a plane]

    #riseAndGrind y'all, I GUARANTEE you can be a 100B company just like us, and live the life—

    [panel falls off; gusts of wind, engine sounds]

    —YOU ALWAYS DREAMED OF. JUST SIGN UP FOR OUR—

    [engine smokes and sputters, tailspin starts, CEO plastered on ceiling]

    —TEN WEEK, "ZERO TO HERO: CRUSHING COMPLIANCE AND SAFTEY" COURSE

  8. @davatron5000 Is it too late to call this your "Bing Ban Theory"? #bazinga

  9. @westbrook @davatron5000 @stubbornella I suspect this might overlap with existing #HtmlModules work.

    Also one more idea similar to 1.:

    5. Could we use this format to do the initial render of a component? By which I mean that #Angular compiles components to #JavaScript which looks like:

    ```
    function renderComponent() {
    if (initialRender) {
    createComponentDom();
    } else {
    updateExistingDom();
    }
    }
    ```

    This always bugged me as inefficient, because the first branch is only ever executed once per component instance. If we compiled components to this SFC format, could we just do the first render at compile time, generate the HTML directly and drop that `createComponentDom` function?

    I'm not knowledgeable enough to say that definitely makes sense, but I think it's an interesting idea at least.

    Not sure if other frameworks could benefit from similar optimizations, I suspect #React would not, but I'm less clear on non-#VDom frameworks.