Search
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...
Let a website be a worry stone
1.4.2020
Ethan Marcotte just redesigned his website and wrote about how the process was a distraction from the difficult things that are going on right now. Adding new features to your blog or your portfolio, tidying up performance issues, and improving things bit by bit can certainly relieve a lot...
Sledování polohy vozidel PID, kde je moje letadlo
1.4.2020
Aktuální situace, v době epidemie koronaviru, není pro dopravu vůbec příznivá, přesto v oblasti letectví přichází pozitivní zpráva. Dobrá zpráva Operátor ITC spolu s Letištěm Praha, ŘLP a ROPIDem přišel s překvapivou novinkou. Tou je poloha letadel letících na Letiště Václava Havla na webu MPVnet
Toilet Paper Token Wipe Paper
31.3.2020
A roll call for all true believers! An Introduction to Toilet Paper The evolution of modern day toilet paper hasContinue Reading
The post Toilet Paper Token Wipe Paper appeared first on CoinMarketCap Blog
Wide Gamut Color in CSS with Display-P3
31.3.2020
Here’s something I’d never heard of before: Display-P3 support in CSS Color Module Level 4 spec. This is a new color profile supported by certain displays and it introduces a much wider range of colors that we can choose from.
Right now the syntax looks something like this in CSS:
header...
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...
“What You Said” (Mar. 30), a Weekly Round-Up of Sentiments From the Community
30.3.2020
It’s been a minute, CoinMarketCap-ers! Glad to see you back here again for another week’s edition of “What You Said“!Continue Reading
The post “What You Said” (Mar. 30), a Weekly Round-Up of Sentiments From the Community appeared first on CoinMarketCap Blog
Creating a Pencil Effect in SVG
28.3.2020
Scott Turner, who has an entire blog "Exploring procedural generation and display of fantasy maps", gets into why vector graphics seems on these surface why it would be bad for the look of a pencil stroke:
Something like this pencil stroke would require many tens of thousands of different...
How to use CSS Scroll Snap
27.3.2020
Nada Rifki demonstrates the scroll-snap-type and scroll-snap-alignCSS properties. I like that the demo shows that the items in the scrolling container can be different sizes. It is the edges of those children that matter, not some fixed snapping distance.
I like Max Kohler's coverage...
Emergency Website Kit
27.3.2020
Here’s an outstanding idea from Max Böck. He’s created a boilerplate project for building websites that fit within a single HTTP request. This is extremely important for websites that contain critical information for public safety. As Max writes:
In cases of emergency, many organizations need...
The Impact of Blockchain on AB Testing and CRMs
27.3.2020
Companies who have deployed blockchain technology to optimize their business operations could have a distinct advantage over those reliant on traditionalContinue Reading
The post The Impact of Blockchain on AB Testing and CRMs appeared first on CoinMarketCap Blog
Top 3 Crypto Mining Pool Founder Speaks on the ‘Wins’ of Working in Hardware
27.3.2020
“Crypto Titans” is a series of personal interviews conducted by CoinMarketCap with prominent and forward-thinking minds tinkering on and behindContinue Reading
The post Top 3 Crypto Mining Pool Founder Speaks on the ‘Wins’ of Working in Hardware appeared first on CoinMarketCap Blog
5 Essential git Commands and Utilities
26.3.2020
For many of us, git and GitHub play a huge role in our development workflows. Whenever we have a tool that we need to use often, the more fine-tuned we can make that tool, the faster we can get things done. The following are five git commands or helpers that can make your developer life...
Sledování pohybu osob v mapách.cz
25.3.2020
Seznam integroval do své mobilní aplikace mapy.cz funkci pro sledování polohy nazvanou ZASTAV COVID, která má pomáhat uživatelům v těchto „nebezpečných“ virových dnech. Popravě úplně nerozumím, jak by mohla komukoli pomoct notifikace, že prošel okolo nakažené osoby, protože bez indikace...
Top 3 Mistakes Crypto Derivatives Traders Make
25.3.2020
Derivatives trading has taken the crypto world by storm. As a matter of fact, the open interest of Bitcoin futuresContinue Reading
The post Top 3 Mistakes Crypto Derivatives Traders Make appeared first on CoinMarketCap Blog
Performance Links
24.3.2020
I've had a number of browser tabs open to articles all related to web performance and gosh darn it if blogging them is a way for me get some closure. They are all good!
Manuel Matuzovic, Why 543 KB keep me up at night:
Yes, I know, it depends. 543 KB aren't always bad, but on that specific page...
Čekáme na plochou křivku
24.3.2020
Zaslechl jsem zprávu, že cílem karantény a dalších opatření je oploštit křivku. Co tedy dělat, když máme domácí úkoly hotové, látkové roušky ušité a internet pod náporem nadšených homeofficáků kolabuje? Můžeme si kreslit. Tahle pandemie je skvělá v tom, jak máme takřka real-time data. Nebudu tady...
"What You Said" (Mar. 23), a Weekly Round-Up of Sentiments From the Community
24.3.2020
Hey CoinMarketCap fam! Welcome back to another week’s edition of “What You Said”! Here you will see fun polls conductedContinue Reading
The post "What You Said" (Mar. 23), a Weekly Round-Up of Sentiments From the Community appeared first on CoinMarketCap Blog
Teamstack: Easy Automation of Identity Management (Sponsored)
23.3.2020
Access management can be a bit of a nightmare, especially when we realize that we rely on a number of different, independent services that power our organizations. Many businesses use Gmail for email, Google Docs for documents, Slack for communication, GitHub for their codebase, etc. Yet each...
CSS Can Influence Screenreaders
23.3.2020
Ben Myers covers some clear examples of where CSS totally changes what some screen readers announce. For example, some screenreader will see text-transform: uppercase; on a button label that says "Add" and read it like an abbreviation, "A.D.D."
These cases of CSS messing with our screenreader...