Search
A Complete Guide to CSS Functions
4.5.2020
Like any other programming language, CSS has functions. They can be inserted where you’d place a value, or in some cases, accompanying another value declaration.
The post A Complete Guide to CSS Functions appeared first on CSS-Tricks
A Book Apart Turning 10
30.4.2020
Early congratulations, A Book Apart! That’s a hell of a milestone. I’m quite sure I’ve read more A Book Apart books than any other tech book publisher.
Katel LeDu runs the ship over there, and she’s given me very special pack of discount codes that will get you my book...
Blockchain Technology: Government Use Cases
29.4.2020
A lot has been said about the possibilities of blockchain technology helping governments and people, but are there any realContinue Reading
The post Blockchain Technology: Government Use Cases appeared first on CoinMarketCap Blog
Growth at Any Cost: It’s Time for the Current VC Model to Change
25.4.2020
The winds of change are finally coming to the venture capital business model. What exactly has to adapt?
Anyone Can Host a Crypto Exchange – Tim Draper Backed Startup Launches New WordPress Plugin
22.4.2020
There’s a new plugin available that gives people the ability to launch a cryptocurrency exchange on any WordPress-based website. The project called Wpcryptoexchange is a product created by the Tim Draper-backed startup Draper Goren Holm. With the plugin, anyone can launch a digital currency...
How to Add Lunr Search to your Gatsby Website
22.4.2020
The Jamstack way of thinking and building websites is becoming more and more popular.
Have you already tried Gatsby, Nuxt, or Gridsome (to cite only a few)? Chances are that your first contact was a “Wow!” moment — so many things are automatically set up and ready to use. 
There are some...
Can JavaScript Detect the Browser’s Zoom Level?
21.4.2020
No, not really.
My first guess was that this was intentionally not exposed in browsers because browsers intentionally don’t want us fighting it — or making well-intentioned but bad-outcome decisions based on that info. But I don’t see any evidence of that.
StackOverflow answers paint...
$2,000 a Month: US Lawmakers Propose Basic Income for Americans to Cope With Covid-19 Economy
16.4.2020
Democrats from the House of Representatives have introduced legislation that would pay eligible Americans $2,000 a month until U.S. unemployment numbers return to pre-covid-19 levels. Under the proposal, any American citizen 16-years or older making less than $130K per year would receive monthly...
Anyhedge to Launch Blockchain-Enforced Synthetic Derivatives for Bitcoin Cash
2.4.2020
Developers from the organization General Protocols have announced the launch of a synthetic derivatives platform built on Bitcoin Cash. The project Anyhedge aims to be the first decentralized finance (defi) protocol on any branch of Bitcoin and the platform will launch in cooperation with...
An Annotated Docker Config for Front-End Web Development
2.4.2020
Andrew Welch sings the praises of using Docker containers for local dev environments:
Here are the advantages of Docker for me:
• Each application has exactly the environment it needs to run, including specific versions of any of the plumbing needed to get it to work (PHP, MySQL...
Max Stoiber’s Strong Opinion About Margins
31.3.2020
Going with that title instead of the classic developer clickbait version Max used. ;)
We should ban margin from our components.
Don’t use margin?! This thing I’ve been doing my entire career and don’t have any particular problems with?!
Well, that’s not exactly Max’s...
SEC Claims Telegram Injunction Applies to ‘Any Person or Entity’
31.3.2020
The SEC describes Telegram’s request as “legally meritless,” arguing that the ruling unambiguously applies to “any person or entity”
Bitcoin Rallied 80% Without Any Gov’t Bailout: Time to Get Bullish?
29.3.2020
Bitcoin rallied 80% without any government intervention so shouldn’t we be bullish on BTC price right now?
$15 Million Bounty on Maduro: US Charges Venezuelan President With Narco-Terrorism, Corruption, Drug Trafficking
27.3.2020
The U.S. has charged 14 high-ranking officials of the Venezuelan government, including President Nicolas Maduro, with “narco-terrorism, corruption, drug trafficking and other criminal charges.” The U.S. government is offering rewards of up to $15 million for any information leading...
Auto-Growing Inputs & Textareas
25.3.2020
By default, <input> and <textarea> elements don't change size based on the content they contain. In fact, there isn't any simple HTML or CSS way to make them do that. Kinda funny, as that seems like a reasonable use-case. But of course, there are ways, my friend. There are always...
Emojis as Favicons
24.3.2020
Lea Verou had a dang genius idea to use an emoji as a favicon. The idea only recently possible as browsers have started supporting SVG for favicons. Chuck an emoji inside an SVG <text element and use that as the favicon.
Now that all modern browsers support SVG favicons, here's how...
Coronavirus Bailouts: US Banking Watchdogs Waive Hundreds of Regulations, Red Tape, Financial Oversight
23.3.2020
In 2019, cryptocurrency and blockchain businesses saw more regulation than any year prior. G20 finance ministers, central bank governors, and regulators cracked down hard on the bitcoin industry. However, during the covid-19 scare, U.S. authorities have been dropping regulations on a whim, making...
Auto-Archival
20.3.2020
I'm sure most of us have used the ol' Wayback Machine to access some site that's gone offline. I don't actually know how it decides what sites to archive and when, but you can tell it to save pages. There is UI for it right on its homepage.
Also, there is a little trick...
Typing...
12 Platforms Allowing You to Trade Gift Cards With Cryptocurrencies
19.3.2020
In an emergency situation like the current coronavirus pandemic, anything can turn into currency as the fiat system may experience cash shortages and devaluation. Cryptocurrency users have options to trade bitcoin beyond traditional money. A number of platforms will let you exchange...
Flexbox and absolute positioning
18.3.2020
Chen Hui Jing notes that when you absolutely position a flex item, it's no longer part of the flex layout. Except... it kinda is a little bit. If you make the child position: absolute; but don't apply any top/right/bottom/left properties, then flexbox alignment will still apply to it.
It's odd...