Search
Printing Money from Thin Air – How the Fed Reduces Purchasing Power and Makes You Poorer
26.3.2020
Unless you have your head in the sand, you’ve probably realized that governments and central banks can print money out of thin air and in unlimited amounts. The United States and the Federal Reserve have been creating money from nothing for years because they had exhausted all their monetary...
Major South Korean Crypto Exchanges Help Police In Child Porn Investigation
26.3.2020
South Korean police are reportedly working jointly with local crypto exchanges in the “nth rooms” child porn case
CSS :nth-of-class selector
23.3.2020
That's not a thing.
But it kinda is!
Bram covers how frustrating .bar:nth-child(2) is. It's not "select the second element of class .bar." It's "select the second element if it also has the class .bar." The good news? There is a real selector that does the former:
:nth-child(2 of .bar) { }
Safari...
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...
“weeds of specificity”
13.3.2020
Lara Schenck:
[...] with WordPress child themes, you are all but guaranteed to get into the weeds of specificity, hunting around theme stylesheets that you didn’t author, trying to figure out what existing declaration is preventing you from applying a new style, and then figuring out the least...
Blockchain Analysis Helps Bust ‘Mr Dark’s’ Rape and Child Porn Site
13.3.2020
Blockchain analysis helped bring ‘Mr Dark’ — the alleged ringleader of a child porn and rape darknet site — to justice
US Charges Dutch National With Running Crypto-Funded Child Porn Site
12.3.2020
U.S. officials allege a Dutch national referred to as “Michael R.M.” made $1.6 billion in bitcoin by operating a rape and child pornography website for the last eight years
Selectors Explained
2.3.2020
Have you ever found yourself either writing a CSS selector that winds up looking confusing as heck, or seen one while reading through someone's code? That happened to me the other day.
Here's what I wrote:
.site-footer__nav a:hover svg ellipse:first-child { }
At the end of it, I honestly couldn't...
US Politicians Want to Ban End-to-End Encryption on Messaging Services like Telegram and Whatsapp
2.2.2020
Under the guise of fighting against online child pornography, American politicians are trying to effectively ban end-to-end encryption on all communication technology platforms for everyone. Newly proposed legislation could force companies like Apple, Google and Facebook to create back doors...
A Use Case for a Parent Selector
31.12.2019
Having a "parent selector" in CSS is mentioned regularly as something CSS could really use. I feel like I've had that thought plenty of times myself, but then when I ask my brain for a use case, I find it hard to think of one. Well, I just had one so I thought I'd document it here.
A classic...
Two Lessons I Learned From Making React Components
19.12.2019
Here’s a couple of lessons I’ve learned about how not to build React components. These are things I've come across over the past couple of months and thought they might be of interest to you if you’re working on a design system, especially one with a bunch of legacy technical decisions and a lot...
The Thought Process Behind a Flexbox Layout
27.11.2019
I just need to put two boxes side-by-side and I hear flexbox is good at stuff like that.
Just adding display: flex; to the parent element lays out the children in a row.
Well, that's cool. I guess I could have floated them, but this is easier.
They should probably take up the full space they have...
What is super() in JavaScript?
6.11.2019
What's happening when you see some JavaScript that calls super()?.In a child class, you use super() to call its parent’s constructor and super.<methodName> to access its parent’s methods. This article will assume at least a little familiarity with the concepts of constructors and child...
Lyn Ulbricht Speaks Out Against Unfair Silk Road Sentencing, Facebook and Government Hypocrisy
25.10.2019
U.S. representative Ann Wagner noted at a recent hearing that child pornographic material has been reported on Facebook more than any other site. Lyn Ulbricht, mother of currently imprisoned Silk Road founder Ross Ulbricht, spoke out in a video livestream Wednesday against her son’s unfair...
US Authorities Analyze Bitcoin Transactions to Shut Down Child Porn Ring
16.10.2019
U.S. law enforcement agencies mapped out the server of the largest child porn site by tracing Bitcoin transactions
US Law Enforcement Traces Bitcoin Transactions to Nab ‘Largest’ Child Porn Site
16.10.2019
A U.S. federal grand jury indicted a South Korean citizen for operating a child porn site, funded by millions dollars worth of bitcoin
UN Official: Crypto Makes Policing Child Trafficking ‘Exceptionally Difficult’
30.8.2019
Cryptocurrencies provide a "new layer of secrecy that favors the criminals," said a top-ranking staffer of the UN's Office on Drugs and Crime
Cryptocurrencies Help Criminals of Child Sexual-Abuse Hide: UN Cybercrime Chief
29.8.2019
Even today, cryptocurrencies are generally perceived as just high-risk investments for millennials and Silicon Valley insiders. However, amid all the hype and speculation, what many are failing to notice is that most decentralized digital currencies like Bitcoin were created to “do something,” with...
Staggered CSS Transitions
14.8.2019
Let's say you wanted to move an element on :hover for a fun visual effect.
@media (hover: hover) {
.list--item {
transition: 0.1s;
transform: translateY(10px);
}
.list--item:hover,
.list--item:focus {
transform: translateY(0);
}
}
Cool cool. But what if you had several list...
How They Will Attack Bitcoin: The Hypocritical Shock Campaign of US Monetary Policy
17.7.2019
On July 16, U.S. Department of the Treasury Secretary Steven Mnuchin gave a short press briefing discussing cryptocurrencies and the pressing need for regulation. A 28-minute slodge of alphabet agency soup, studded with calculated mentions of “terrorism” nearly every minute, casual...