Search
South Korean Central Bank Accelerates Digital Currency Pilot to Keep Up With Other Nations
6.4.2020
The Bank of Korea has historically been skeptical about CBDCs, but now it's having to keep up
Top 5 Cryptos Other Than Bitcoin This Week (Mar 29): XMR, BNB, HT, CRO, BSV
5.4.2020
After a strong week, the majority of the top performing cryptos could correct or consolidate in the next few days, possibly providing a buying opportunity for traders
Where to Buy Bitcoin in India: Cryptocurrency Exchanges Lower Their Fees
5.4.2020
Since the supreme court lifted the RBI ban, more people have been looking to buy bitcoin and other cryptocurrencies in India. Responding to community feedback, a number of cryptocurrency exchanges have lowered their fees as the Indian crypto sector continues to grow. Also read: IMF Declares Global...
Freebitco.in Gaming Site Launches Covid-19 Relief Fund – Donating 20% House Edge to Healthcare Efforts
4.4.2020
The owners of the website Freebitco.in have announced a coronavirus relief fund following the myriad of other crypto companies donating funds to help fight the covid-19 pandemic. Freebitco.in is an extremely popular gaming website that saw more than 40 million visitors last month in web traffic...
Gold Investors Are Terrified Central Banks Might Dump Bullion During the Economic Crisis
3.4.2020
Despite what gold bug Peter Schiff says, economists are uncertain that gold will shine during the current coronavirus crisis. While gold and other precious metals have seen decent gains in the last few weeks, a few investors are terrified that central banks will use their flight-to-safety assets...
Detect git Directory with Bash
2.4.2020
One interesting aspect of working at Mozilla is that Firefox lives in a mercurial repository while several other projects live on GitHub in a git repository. While most focus on either Firefox or another project, I switch between both, leaving me running git commands inside the mercurial repository...
Web Performance Checklist
2.4.2020
The other day, I realized that web performance is an enormous topic covering so very much — from minimizing assets to using certain file formats, it can be an awful lot to keep in mind while building a website. It’s certainly far too much for me to remember!
So I made a web performance checklist....
Cloudinary Studio
2.4.2020
I knew that Cloudinary worked with video as well as images but, the other day, I was curious if Cloudinary offered a video player embed just like other video hosts do (e.g. YouTube, Vimeo, etc). Like an <iframe> that comes with a special player.
I was curious because, as much as...
Stablecoin Market Caps Swell Over $7 Billion – Volumes Surpass Most Trading Pairs
31.3.2020
While most digital assets have been suffering, stablecoins have been surging since the market downturn in mid-March and tether (USDT) is capturing more than 70% of BTC trades today. Besides tether, a wide range of other dollar-pegged cryptocurrencies have also benefited this month, as the market...
How They Fit Together: Transform, Translate, Rotate, Scale, and Offset
30.3.2020
Firefox 72 was first out of the gate with "independent transforms." That is, instead of having to combine transforms together, like:
.el {
transform: rotate(10deg) scale(0.95) translate(10px, 10px);
}
...we can do:
.el {
rotate: 10deg;
scale: 0.95;
translate: 10px 10px;
}
That's extremely...
$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...
4 Virtual Crypto Conferences You Can Attend From Home
26.3.2020
The crypto industry has had to quickly adapt to the escalating coronavirus pandemic, with major conferences postponed, canceled or hastily reformatted for the virtual realm. Due to its disproportionately high number of remote workers, though, the industry is more geared up for this new paradigm...
How to Animate Text with SVG and CSS
26.3.2020
The other day I was helping my pal Jez work Dept. of Enthusiasm, the site for his newsletter, and I had a thought. What if we made the word “enthusiasm” in the title animate a little bit? Like, what if each of the letters in the word bopped up and down enthusiastically?
Like this:
CodePen Embed...
CSS Viewport Units
26.3.2020
Deep dive from Ahmad. I like the coverage of vmin and vmax, which I think I don't reach for as often as I should.
I'm thinking that if you are doing something highly directional (e.g. a full bleed trick), then directly using vw is necessary. On the other hand, if you're doing a calculation where...
Did You Know the Ordered List Element Has Start and Reversed Attributes?
24.3.2020
I sure didn't! Tomek Sułkowsi shows how we can reverse the numbering of ordered lists with a simple HTML attribute:
<ol reversed<liApple</li<liBanana</li<liPear</li</ol
CodePen Embed Fallback
And the start attribute can be added to begin the list at a number other...
Tether Launches Stablecoin Token on Bitcoin Cash via Simple Ledger Protocol
19.3.2020
Tether, the world’s most popular stablecoin, will be using the Simple Ledger Protocol built upon the Bitcoin Cash network for issuing its tokens. Among other things, this means that millions of Bitcoin.com Wallet users will now be able to send and receive USDT via SLP tokens right within...
You Can Now Trade CS:GO Game Items Safely for BCH Through Blind Escrow on Bitcoin.com Local
19.3.2020
Are you looking for a cool way to earn bitcoin cash privately instead of buying it directly? You can now connect your Steam account to the peer-to-peer marketplace Bitcoin.com Local and trade CS:GO game items for BCH via blind escrow. This is a great improvement for players who were previously...
What Does `playsinline` Mean in Web Video?
18.3.2020
I got myself confused about this the other day, went around searching for an answer and came up empty on finding something clear. The answer actually is quite clear and I feel a little silly for not knowing it.
With it in place, like this:
<video src="..." controls playsinline</video
Mobile...
How to Create a “Skip to Content” Link
17.3.2020
Skip links are little internal navigation links that help users move around a page. It’s possible you’ve never actually seen one before because they’re often hidden from view and used as an accessibility enhancement that lets keyboard users and screen readers jump from the top of the page to...
How to Simulate Long HTTP Requests
17.3.2020
It happens less frequently these days but there are times when we need to accommodate for a HTTP request timing out. The service could be down, under heavy traffic, or just poorly coded, or any host of other issues. Whenever I need to simulate a long HTTP request, I use a bit of PHP...