Search
wpaudit.site
24.2.2020
A big checklist of things you could/should be doing to make your website the best it can be. 80% of which is a good idea for any website, not just a WordPress website.
I'm linking to it because I like how plain language it is, and because it's a good example of how giving something away helps more...
Cryptocurrency Explained on the Latest Episode of The Simpsons
23.2.2020
Could this be a sign that the mainstream media is warming up to bitcoin again like they did before the 2017 rally? The Simpsons featured an almost two-minute segment explaining how cryptocurrency and blockchain work with the actor who played Sheldon Cooper on The Big Bang Theory. Also Read: 12.6M...
Brave Challenges Google’s Advertising Power Before the UK Competition Watchdog
22.2.2020
The company behind the privacy-oriented browser Brave has set out to convince regulators in the U.K. to end Google’s advertising monopoly in the digital space. In a filing with the country’s Competition and Markets Authority (CMA), Brave puts forward recommendations on how...
Chinese Government-Backed Institute Releases New Ranking of 37 Crypto Projects
22.2.2020
China’s Center for Information and Industry Development has published its latest crypto project ranking — the first this year. A total of 37 crypto projects, two more than in the previous ranking, were evaluated and ranked overall this month as well as in three separate categories. Also...
Fixed Headers and Jump Links? The Solution is scroll-margin-top
21.2.2020
The problem: you click a jump link like <a href="#header-3">Jump</a> which links to something like <h3 id="header-3">Header</h3>. That's totally fine, until you have a position: fixed; header at the top of the page obscuring the header you're trying to link to!
Fixed...
Inspiring high school students with HTML and CSS
21.2.2020
Here’s a heartwarming post from Stephanie Stimac on her experience teaching kids the very basics of web development:
[...] the response from that class of high school students delighted me and grounded me in a way I haven't experienced before. What I view as a simple code was absolute magic...
A Guide to Console Commands
21.2.2020
The developer’s debugging console has been available in one form or another in web browsers for many years. Starting out as a means for errors to be reported to the developer, its capabilities have increased in many ways; such as automatically logging information like network requests, network...
iOS 13 Design Guidelines, Templates, and Downloads
21.2.2020
Erik Kennedy wrote up a bunch of design advice for designing for the iPhone. Like Apple's Human Interface Guidelines, only illustrated and readable, says Erik.
This is mostly for native iOS apps kinda stuff, but it makes me wonder how much of this is expected when doing a mobile Progressive...
Bitcoin Cash House Ghana Finds Liquidity Provider, Seeks to Partner With Mobile Money Services
21.2.2020
Bitcoin Cash House Ghana has announced they’ve found a liquidity provider for converting between BCH and Ghanaian cedi, and are now preparing to furnish their building and move in, preparing for official launch on March 1. A new read.cash post from organizer Kousha detailed the status of...
BCH Funding Debate: Developers Plan to Launch IFP-Free Version of Bitcoin ABC
20.2.2020
On February 19, a group of well known software developers announced the launch of a new Bitcoin Cash full node with the Infrastructure Funding Plan (IFP) removed from the codebase. The news was announced on the read.cash platform by the developer Freetrader who told the public that strong demand...
Animate SVG Path Changes in CSS
20.2.2020
Every once in a while I'm motivated to attempt to draw some shapes with <path>, the all-powerful drawing syntax of SVG. I only understand a fragment of what it all can do, but I know enough to be dangerous. All the straight-line syntax commands (like L) are pretty straightforward and I find...
Add Background Colors to SVGs Using the “rect” Element
20.2.2020
The advantages of using SVGs in web development are well known. SVGs are small in size, can be made quite accessible, are scalable while maintaining their quality, and can be animated. Still, there is a learning curve. Things, like the syntax of SVG, can be a little tricky and having to hand-alter...
Seen by Indeed
20.2.2020
(This is a sponsored post.)
Are you looking for a tech job where you clock in, or for a career where you’ll be seen?
Seen by Indeed is a matching service for software engineers, product managers and other tech pros that sorts through thousands of companies -- like Twilio, Overstock, VRBO,...
Bitcoin Superstar and Bitcoin Era – The Latest Two Faces of the Same Scam
20.2.2020
With the rising price and popularity of bitcoin come numerous scams. Bitcoin Superstar and Bitcoin Era are two investment schemes that have recently gained much attention. News.Bitcoin.com took a look at them, and it did not take much to spot how similar they are to each other and several other...
Footnote Characters
20.2.2020
They are special superset numbers that are sometimes perfect for footnotes. Here they are:
¹ ² ³ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹
I generally prefer to superscript the number myself, like:
<pThis next word<sup1</suphas a footnote.</p
You'd probably add an anchor link around that as well to link to an...
Do This to Improve Image Loading on Your Website
20.2.2020
Jen Simmons explains how to improve image loading by simply using width and height attributes. The issue is that there’s a lot of jank when an image is first loaded because an img will naturally have a height of 0 before the image asset has been successfully downloaded by the browser. Then it needs...
monica.css
20.2.2020
Monica Dinculescu:
I don’t want every possible padding and margin and colour and flexbox configuration in the world. I just want the ones that I know I end up using in every project. So here is monica.css: my very own CSS framework, which I copy paste at the beginning of every CSS file and take...
Defi for Bitcoin: Collateral Peg Platform Provides Noncustodial BTC Lending on Ethereum
19.2.2020
During the second week of February, a new project called tBTC was unveiled that is similar to the Wrapped Bitcoin (WBTC) created with the Ethereum network. However, the tBTC effort claims to be a noncustodial application that allows users to deposit BTC, mint tBTC, and lend it with interest. Also...
Understanding Web Accessibility Color Contrast Guidelines and Ratios
19.2.2020
What should you do when you get a complaint about the color contrast in your web design? It might seem perfectly fine to you because you’re able to read content throughout the site, but to someone else, it might be a totally different experience. How can put yourself in that person’s shoes...
Same HTML, Different CSS
19.2.2020
Ahmad Shadeed covers the idea of a card component that has a fixed set of semantic HTML with some BEMy classes on it. There is a title, author, image, and tags. Then he redesigns the card into five totally different designs without touching any of the HTML just the CSS.
If this is an ah-ha moment...