Search
Yap
13.12.2019
Interesting idea for a "chat room" from Postlight:
Create a Yap chat room.
Invite others to join and talk.
Share a URL of just about anything.
Everyone gathering can comment on what you’ve shared.
If you think your conversation deserves an audience, share the URL of your chat publicly.
Only...
Techniques for Rendering Text with WebGL
6.12.2019
As is the rule in WebGL, anything that seems like it should be simple is actually quite complicated. Drawing lines, debugging shaders, text rendering… they are all damn hard to do well in WebGL.
Isn’t that weird? WebGL doesn't have a built-in function for rendering text. Although text seems like...
The Rising Complexity of JAMstack Sites and How to Manage Them
5.12.2019
When you add anything with user-generated content or dynamic data to a static site, the complexity of the build process can become comparable to launching a monolithic CMS. How can we add rich content to static sites without stitching together multiple third-party services?
For people in...
Masking GIFs with other GIFs
3.12.2019
The other day, Cassie Evans tweeted a really neat trick that I’ve never seen before: using SVG to mask one GIF on top of another. The effect is quite lovely, especially if you happen to grab a colorful GIF and place it on top of a monochrome one:
See the Pen
Masking gifs with other gifs......
Is Plustoken to Blame for Bitcoin’s Sell-Off?
29.11.2019
Armchair theorists love postulating the reasons behind bitcoin’s latest price rise or sell-off. From China FUD to exchange hacks, anything and everything is fair game for blame. Plustoken is the latest bitcoin bear-maker that’s being credited with the last three months of downward price...
The Popeye Moment
25.11.2019
Frank Chimero is redesigning "in the open" and we should pay attention to it because (1) we should listen to anything Frank has to say because he's a great designer and writer and (2) working in public is awesome.
But the gut punch for me in this opening article is the way Frank pulls zero punches...
Variations on Theme: Reinventing Type on the Web
20.11.2019
If anyone knows anything about me, it’s usually one of two things: that I have two outrageously fluffy dogs, or that I like fonts and typography. Like, really really like them. So while I am super excited about how well Tristan is doing with his hydrotherapy —we’re walking 50% further than he...
How to Start With Bitcoin at No Cost
10.11.2019
Getting into the Bitcoin world is by default easy and it doesn’t have to cost you anything. All you need to do to get started is to install a cryptocurrency wallet and load it with some digital cash. The growing crypto community, always enthusiastic about accepting new members, has done a...
Video: Bitcoin Cash Lets You Buy Equity Over the Counter at a Bar
6.11.2019
With all the talk about investing in digital assets new people to the scene might not know that cryptocurrency is still used being used as peer-to-peer electronic cash as it was intended. The latest video from Bitcoin.com shows how BCH is used to buy anything from drinks at the bar to equity in...
Central Bank Blockchains and Corporate Ledgers Are Still Vaporware
4.11.2019
There’s been a resurgence of blockchain discussion this year, especially after China’s President Xi Jinping lauded blockchain and told Chinese citizens the country needs to accelerate distributed ledger technology development. Despite the lack of producing anything worthwhile, for some...
“I’m not buying anything,” says Tron CEO Amid Reports of Poloniex Acquisition
19.10.2019
“I’m not buying anything,” says Tron founder and CEO Justin Sun amid recent reports suggesting that he acquired crypto exchange Poloniex
Justin Sun on Poloniex Investment Rumors: 'I'm Not Buying Anything'
19.10.2019
Justin Sun. Source: a video screenshot, Youtube, Tron
Tron (TRX) founder, Justin Sun, said he's 'not buying anything', in a response to a report that he's involved in the Poloniex's spin-off from Circle.
"Just invest some and help out my friends. Actually I have a huge bag of $BNB, $HT, $OKB...
Smart Contract Blockchains Are Struggling to Scale
17.10.2019
Second generation blockchains were presented as being faster, cheaper, and more scalable than Bitcoin. Third generation chains (basically anything that came after Ethereum) promised even greater optimizations. In the event, these networks have run into the same difficulties as Bitcoin, with...
Jeremy Keith – Building the Web
23.8.2019
I really enjoyed this interview with Jeremy Keith on the state of the web, how things have changed in recent years and why he’s a mix of optimistic and nervous for the future.
One thing that caught my attention during the interview more than anything was where Jeremy started discussing how folks...
Can you view print stylesheets applied directly in the browser?
19.8.2019
Yep.
Let's take a look at how to do it in different browsers. Although note the date of this blog post. This stuff tends to change over time, so if anything here is wrong, let us know and we can update it.
In Firefox...
It's a little button in DevTools. So easy!
Open DevTools...
Contextual Utility Classes for Color with Custom Properties
14.8.2019
In CSS, we have the ability to access currentColor which is tremendously useful. Sadly, we do not have access to anything like currentBackgroundColor, and the color-mod() function is still a ways away.
With that said, I am sure I am not alone when I say I'd like to style some links based on...
The Differing Perspectives on CSS-in-JS
14.8.2019
Some people outright hate the idea of CSS-in-JS. Just that name is offensive. Hard no. Styling doesn't belong in CSS, it belongs in CSS, a thing that already exists and that browsers are optimized to use. Separation of concerns. Anything else is a laughable misstep, a sign of not learning from...
How to Become a Blockchain Developer
7.8.2019
Skilled blockchain developers are a scarce commodity, as precious as the bitcoins that reside on the distributed ledgers they maintain. Teach yourself one of the major blockchain programming languages and you’ll be set for life, though like anything worth having, this achievement won’t...
Pseudo Code
23.7.2019
Yonatan Doron wrote a post on Medium not long ago called "Art of Code — Why you should write more Pseudo Code." Love that title, as a fan of pseudo code myself. That is, writing "code" that describes something you want to do or communicate, but that isn't of any particular language and doesn't...
Using Percy to add visual testing to a Jekyll site
27.6.2019
Visual testing is the automated process of reviewing software from a purely visual standpoint. Instead of testing the code underneath, visual testing is all about what end users actually see and interact with.
Similar to functional testing, however, visual testing fits directly into your stack...