(Developer of Primitive here.) Love seeing people use my software in different ways! If this looks interesting to you, try it out: https://primitive.lol/ https://github.com/fogleman/primitive Also, I made a Twitter bot that posts samples every 30 minutes based on "interesting" Flickr photos using randomized Primitive settings: https://twitter.com/PrimitivePic
This looks great! I would definitely pay the $10 for an iOS version. I can see myself playing around with this on an iPad Pro for hours, especially with drawing mode.
Using SVG as image placeholders
91–100 of 139 posts
Re: Using SVG as image placeholders
#92Earlier quoted context omitted.
And all the code pens are also slow. Between clicking the "run" button and the actual script running there's somewhat of a 3 second gap. Which kind of puts the opening paragraph into question: > I’m passionate about image performance optimisation and making images load fast on the web. Like, ok, why aren't you using a simpler blog engine to post? As a plus, if you were in control of everything on the page, you wouldn…
Perhaps they don't want to worry about deploying a simpler blog engine ?
I've noticed the word "passionate" gets thrown around a lot cheaply.
It's seriously starting to lose all meaning.
Re: Using SVG as image placeholders
#93Earlier quoted context omitted.
Your twitter bot sometimes produces images that look like unintentional art. Awesome job!
Well, that's the idea!
Re: Using SVG as image placeholders
#94[1] https://code.facebook.com/posts/991252547593574/the-technolo...
Re: Using SVG as image placeholders
#95(Developer of Primitive here.) Love seeing people use my software in different ways! If this looks interesting to you, try it out: https://primitive.lol/ https://github.com/fogleman/primitive Also, I made a Twitter bot that posts samples every 30 minutes based on "interesting" Flickr photos using randomized Primitive settings: https://twitter.com/PrimitivePic
Re: Using SVG as image placeholders
#96(Developer of Primitive here.) Love seeing people use my software in different ways! If this looks interesting to you, try it out: https://primitive.lol/ https://github.com/fogleman/primitive Also, I made a Twitter bot that posts samples every 30 minutes based on "interesting" Flickr photos using randomized Primitive settings: https://twitter.com/PrimitivePic
Re: Using SVG as image placeholders
#97Am I the only person who finds it ironic that a web page about keeping web pages small comes with multiple megabytes of Javascript? It doesn't need it, folks. It's a static blog page.
It's a Medium article. The author didn't write the platform.
Re: Using SVG as image placeholders
#98(Developer of Primitive here.) Love seeing people use my software in different ways! If this looks interesting to you, try it out: https://primitive.lol/ https://github.com/fogleman/primitive Also, I made a Twitter bot that posts samples every 30 minutes based on "interesting" Flickr photos using randomized Primitive settings: https://twitter.com/PrimitivePic
Re: Using SVG as image placeholders
#99Earlier quoted context omitted.
I agree with GP. Personally, I hate websites that show a blurry version of an image before the final one loads. It plays with my eyes. I have to look away and peek to see if it's done before I can read on. I wish there was a way to disable this functionality.
I didn't mean to refer to blurred images, but the unblurred outline SVGs in this article. I think the blurred ones are somewhat pointless too. The unblurred versions give you actual information as to what the image is. For instance, the sneakers image; if I didn't care about sneakers, I'd be likely to just scroll past it. In the blurred version, I might not be able to tell that they're sneakers.
Re: Using SVG as image placeholders
#100Am I the only person who finds it ironic that a web page about keeping web pages small comes with multiple megabytes of Javascript? It doesn't need it, folks. It's a static blog page.
Couldn't agree more. If you look at what's happening in the network tab of the developer tools, you'll see it's doing a lot more than providing just a static blog page. Instead, every x seconds it executes another POST request with pretty much all the details they can gather (scroll from top, scrollable height, referrer etc.). As soon as you start moving your cursor, the new requests start adding up very quickly, wit…