Search
Understanding flex-grow, flex-shrink, and flex-basis
11.11.2020
When you apply a CSS property to an element, there’s lots of things going on under the hood. For example, let’s say we have some HTML like this:
<div class="parent"<div class="child"Child</div<div class="child"Child</div<div class="child"Child</div</div
And...
Data encryption a threat to fighting child sexual abuse, says DOJ
11.10.2020
The department, along with other international agencies, alleged end-to-end encryption can create “severe risks to public safety.”
Earning with DeFi yield farming: Rocket science or child’s play?
19.9.2020
There are several ways DeFi users can earn via yield farming. However, it isn’t so simple, as the technology is still young, say pundits
Presidential Candidate Brock Pierce Served With Lawsuit for Alleged ICO Fraud
16.9.2020
Former Disney child actor and U.S. Presidential candidate, Brock Pierce, was served with a lawsuit during a political campaign event held on Monday. The class-action lawsuit was filed in May and it claims the defendants, including Pierce, sold unregistered securities during the EOS initial coin...
Startup Helps Reduce Child Labor in Africa & Aspires to Work with Tesla
11.7.2020
A blockchain startup helps car manufacturers ascertain that the raw materials they use are not produced by children
Bitcoin Entrepreneur Brock Pierce Joins the 2020 US Presidential Election
6.7.2020
Blockchain entrepreneur and former Disney child actor, Brock Pierce, is running for President of the United States this election. Pierce announced he was running during America’s Independence Day celebration on July 4, the same day Kanye West revealed his candidacy. Pierce is an advocate...
Court Likens Coinbase to a ‘Traditional Bank’ in Child Porn Appeal Case
2.7.2020
A court has likened Coinbase to a “traditional bank” in rejecting an appeal from a convicted child porn purchaser who appealed using the Fourth Amendment
International Authorities Work Together to Take Down Crypto-Funded Child Porn Ring
29.6.2020
The Spanish authorities arrested several individuals related to ongoing investigations against crypto-driven child porn sites in the dark web
Crypto Subreddit Mods Remove Post That Connects Kik to Child Porn
23.6.2020
Kik and Solana may be trying to keep damaging allegations hidden from the public
Just another +1 for subgrid
19.6.2020
I’d say 85% of my grid usage is in one of these two categories…
I just need some pretty basic (probably equal width) columns that ends up being something like like grid-template-columns: repeat(3, minmax(0, 1fr)); to be safe.
Actually doing some real layout where five minutes in...
Learn Z-Index Using a Visualization Tool
12.6.2020
There are some neat interactive demos in here from Thiru Manikandan. There are a couple of very tricky things with z-index that never fail to confuse. In addition to things like requiring positioning and source order, the trickiest are the stacking contexts and parent/child relationships. z-index...
Roger Ver Donates $10K in Bitcoin Cash to Casa de Amparo Children’s Shelter
4.6.2020
Just recently Bitcoin.com’s Roger Ver donated $10,000 worth of bitcoin cash to the charitable organization Casa de Amparo, a 501(c)(3) charity that helps children escape child abuse and neglect. Since 1978, Casa de Amparo has offered a myriad of programs that help those affected by and...
South Korean Prosecutors Freeze Crypto Wallets of Suspected Child Porn Ring Chief
2.6.2020
A Seoul court granted the petition demanded by the prosecutors to freeze crypto wallets owned by the head of the Nth Room case
Analyst Who Helped Topple Crypto Child Exploitation Site Honored
28.5.2020
Kim Reece is now a finalist for the Samuel J. Heyman Service to America Medal
Chromium lands Flexbox gap
9.5.2020
I mentioned this the other day via Michelle Barker’s coverage, but here I’ll link to the official announcement. The main thing is that we’ll be getting gap with flexbox, which means:
.flex-parent {
display: flex;
gap: 1rem;
}
.flex-child {
flex: 1;
}
That’s excellent...
Anonymous Crypto Payments Cause Problems for South Korean Child Porn Case
6.5.2020
IT experts believe that South Korean authorities could not track the crypto payments made from overseas exchanges
South Korean Police Trace 40 People Behind Crypto Payments In Child Porn Ring
27.4.2020
40 people involved in crypto payments on the “Nth Room” case were identified by the South Korean authorities
Crypto Payments for Child Porn Grew 32% in 2019: Report
21.4.2020
Nearly $1 million in bitcoin and ethereum flowed into child sexual abuse material-linked wallet addresses in 2019
Over $900K in Bitcoin Went to Child Sexual Abuse Material Providers in 2019, Says Chainalysis
21.4.2020
$930,000 in Bitcoin represents a 32% increase over 2018, which had in turn presented a 212% increase over the previous year
Pseudo-Randomly Adding Illustrations with CSS
17.4.2020
Between each post of Eric Meyer’s blog there’s this rather lovely illustration that can randomly be one of these five options:
Eric made each illustration into a separate background image then switches out that image with the nth-of-type CSS property, like this:
.entry:nth-of-type(2n+1)::before...