Jump to content

felix

Members
  • Posts

    214
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by felix

  1. RT @bhalp1: Sometimes when I'm writing Javascript I want to throw up my hands and say "this is bullshit!" but I can never remember what "th…

  2. RT @neuwaerts_de: Opening 4/15: TRANSFORMATIONSWERK by @neuwaerts_de | Workshop-/Event Location | http://t.co/Wd6MYNmcPm http://t.co/np73GJ…

  3. RT @flamingowurst: Rülpsen, nicht schulzen und dann rumheulen, weil man abklatscht. Kinder, ich hab die Regeln nicht gemacht!

  4. RT @niggi: Wie Fernsehsender ihre "Luftfahrt-Experten" rekrutieren: http://t.co/izZ14u34VK

  5. RT @RedditWebdev: Any reason I can't find anything about ProcessWire on the secunia site? http://t.co/2uDSYKwxQV #WebDev

  6. RT @davatron5000: "Should we build into the collective knowledge of the entire world or make a native app for a gold phone?""APP!""Great …

  7. As I did a lot of performance optimization stuff for a client's website recently I thought I'll share some of my findings: - optimizing for "time to first byte": Apart from fixing performance issues with your php code there is an easy way to "get things started":Chunk your Output! Doing an ob_flush (or {% flush %} if you're using twig) here and there is an easy way to split your page into chunks that are instantly (and in parallel) served to the client instead of rendering the whole page at once. This is especially handy if you're using the next technique: - Inlining "above the fold" content I must admit that I'm not a big fan of inlining things. In my opinion it's against anything I've learned about keeping things "dry, clean and separated". That's why i refused to do it until now. But if you're using grunt/gulp (and especially criticalcss) you're not doubling anything and the inlining is just another task in your gruntfile. There is a pretty easy step by step guide by Jeremy Keith at https://adactio.com where he explains why inlining css on the first visit will gain your site a massive (perceived) performance boost on the first load (this is especially handy on mobile devices). I'll post a recipe to processwire-recipes.com how to achieve this with processwire in the next days - Avoid loading Webfonts directly but do it asynchronous as "Progressive Enhancement" (+ Store them in localstorage to load them super fast afterwards) to avoid blank pages: http://bdadam.com/blog/loading-webfonts-with-high-performance.html Just implementing these 3 (pretty easy) things made the pagespeed score climb up by 15 points and lowered the perceived loading time by at least 2 seconds below the "critical hurdle" of 1-2 seconds.
  8. RT @iamdevloper: Schrödinger's cat applied to web development: If I don't look at it in Internet Explorer then there's a chance it looks fi…

  9. RT @Grantscheam: Superkleber ist wie jeder andere Kleber, aber er trägt einen Umhang und kann fliegen.

  10. Wow. This looks like a lot of work has gone into it. I can't wait to hear more details.
  11. i like to render static js/css files with twig inline. is there a command that says: "just include this shit, no syntax check!" anyone?

  12. Noticed this label on my jacket (4 months old) for the first time. Seems like destiny made me buy it :)http://t.co/5GQdQxhuUH

  13. Just discovered that optimizing #ttfb is as easy as doing a {% flush %} in twig here and there #betterlatethannever #webperf #processwire

  14. RT @owzim: Woohoo, @processwire featured in big German computer magazine @ctmagazin http://t.co/gYVeEiXtbh #cms #webdev

  15. RT @cburgdorf: Next @hannoverjs will be rad! @JanPantel goes into SOLID and I'll be talking about the best Angular yet! http://t.co/G4lyps6…

  16. Spricht mir aus der seele: "@stagzta: #javascript the #php of today. Nice read: http://t.co/j4Hfnf0vS7"

  17. RT @daemsche: "Wer will alles Eis?""Ich will alles Eis!"

  18. RT @sadserver: Statistically speaking it's more likely for you to be mauled by a bear than for you to properly secure WordPress.

  19. RT @snikchnz: The future we were promised is here!!!!!!!And it takes 30 minutes to update a lightbulb :(http://t.co/fQ9kPkHnKM

  20. RT @derStadtpirat: Looks like @processwire is going to be discussed in the next @ctmagazin. http://t.co/Yegw8PiAjU

×
×
  • Create New...